diff --git a/README.md b/README.md index 7505cfa6bb..313725a322 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,7 @@ The minimal supported version is 17.0 for iOS and Android 13. https://github.com/user-attachments/assets/27ab3406-c7f1-4618-a981-6c86b53547ee We currently host two example apps demonstrating use cases of our library: +- examples/speech-to-text - Whisper and Moonshine models ready for transcription tasks - examples/computer-vision - computer vision related tasks - examples/llama - chat applications showcasing use of LLMs diff --git a/android/src/main/java/com/swmansion/rnexecutorch/SpeechToText.kt b/android/src/main/java/com/swmansion/rnexecutorch/SpeechToText.kt index 649c941d8a..91f31848cd 100644 --- a/android/src/main/java/com/swmansion/rnexecutorch/SpeechToText.kt +++ b/android/src/main/java/com/swmansion/rnexecutorch/SpeechToText.kt @@ -3,29 +3,44 @@ package com.swmansion.rnexecutorch import com.facebook.react.bridge.Promise import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.bridge.ReadableArray -import com.swmansion.rnexecutorch.models.speechToText.WhisperDecoder -import com.swmansion.rnexecutorch.models.speechToText.WhisperEncoder -import com.swmansion.rnexecutorch.models.speechToText.WhisperPreprocessor +import com.swmansion.rnexecutorch.models.speechtotext.BaseS2TModule +import com.swmansion.rnexecutorch.models.speechtotext.Moonshine +import com.swmansion.rnexecutorch.models.speechtotext.MoonshineDecoder +import com.swmansion.rnexecutorch.models.speechtotext.MoonshineEncoder +import com.swmansion.rnexecutorch.models.speechtotext.Whisper +import com.swmansion.rnexecutorch.models.speechtotext.WhisperDecoder +import com.swmansion.rnexecutorch.models.speechtotext.WhisperEncoder import com.swmansion.rnexecutorch.utils.ArrayUtils +import com.swmansion.rnexecutorch.utils.ArrayUtils.Companion.writableArrayToEValue import com.swmansion.rnexecutorch.utils.ETError -class SpeechToText(reactContext: ReactApplicationContext) : - NativeSpeechToTextSpec(reactContext) { - private var whisperPreprocessor = WhisperPreprocessor(reactContext) - private var whisperEncoder = WhisperEncoder(reactContext) - private var whisperDecoder = WhisperDecoder(reactContext) - private var START_TOKEN = 50257 - private var EOS_TOKEN = 50256 +class SpeechToText(reactContext: ReactApplicationContext) : NativeSpeechToTextSpec(reactContext) { + + private lateinit var speechToTextModule: BaseS2TModule; companion object { const val NAME = "SpeechToText" } - override fun loadModule(preprocessorSource: String, encoderSource: String, decoderSource: String, promise: Promise) { + override fun loadModule(modelName: String, modelSources: ReadableArray, promise: Promise): Unit { try { - this.whisperPreprocessor.loadModel(preprocessorSource) - this.whisperEncoder.loadModel(encoderSource) - this.whisperDecoder.loadModel(decoderSource) + if(modelName == "moonshine") { + this.speechToTextModule = Moonshine() + this.speechToTextModule.encoder = MoonshineEncoder(reactApplicationContext) + this.speechToTextModule.decoder = MoonshineDecoder(reactApplicationContext) + } + if(modelName == "whisper") { + this.speechToTextModule = Whisper() + this.speechToTextModule.encoder = WhisperEncoder(reactApplicationContext) + this.speechToTextModule.decoder = WhisperDecoder(reactApplicationContext) + } + } catch(e: Exception){ + promise.reject(e.message!!, ETError.InvalidModelSource.toString()) + return + } + + try { + this.speechToTextModule.loadModel(modelSources.getString(0)!!, modelSources.getString(1)!!) promise.resolve(0) } catch (e: Exception) { promise.reject(e.message!!, ETError.InvalidModelSource.toString()) @@ -33,22 +48,30 @@ class SpeechToText(reactContext: ReactApplicationContext) : } override fun generate(waveform: ReadableArray, promise: Promise) { - val logMel = this.whisperPreprocessor.runModel(waveform) - val encoding = this.whisperEncoder.runModel(logMel) - val generatedTokens = mutableListOf(this.START_TOKEN) + val encoding = writableArrayToEValue(this.speechToTextModule.encode(waveform)) + val generatedTokens = mutableListOf(this.speechToTextModule.START_TOKEN) var lastToken = 0 Thread { - while (lastToken != this.EOS_TOKEN) { - this.whisperDecoder.setGeneratedTokens(generatedTokens) - lastToken = this.whisperDecoder.runModel(encoding) + while (lastToken != this.speechToTextModule.EOS_TOKEN) { + // TODO uncomment, for now + // lastToken = this.speechToTextModule.decode(generatedTokens, encoding) emitOnToken(lastToken.toDouble()) generatedTokens.add(lastToken) } - val generatedTokensReadableArray = ArrayUtils.createReadableArrayFromIntArray(generatedTokens.toIntArray()) + val generatedTokensReadableArray = + ArrayUtils.createReadableArrayFromIntArray(generatedTokens.toIntArray()) promise.resolve(generatedTokensReadableArray) }.start() } + override fun encode(waveform: ReadableArray, promise: Promise) { + promise.resolve(this.speechToTextModule.encode(waveform)) + } + + override fun decode(prevTokens: ReadableArray, encoderOutput: ReadableArray, promise: Promise) { + promise.resolve(this.speechToTextModule.decode(prevTokens, encoderOutput)) + } + override fun getName(): String { return NAME } diff --git a/android/src/main/java/com/swmansion/rnexecutorch/models/BaseModel.kt b/android/src/main/java/com/swmansion/rnexecutorch/models/BaseModel.kt index 764827f542..28e661b14b 100644 --- a/android/src/main/java/com/swmansion/rnexecutorch/models/BaseModel.kt +++ b/android/src/main/java/com/swmansion/rnexecutorch/models/BaseModel.kt @@ -28,11 +28,15 @@ abstract class BaseModel(val context: Context) { } protected fun forward(inputs: Array, shapes: Array) : Array { + return this.execute("forward", inputs, shapes); + } + + protected fun execute(methodName: String, inputs: Array, shapes: Array) : Array { // We want to convert each input to EValue, a data structure accepted by ExecuTorch's // Module. The array below keeps track of that values. try { val executorchInputs = inputs.mapIndexed { index, _ -> EValue.from(Tensor.fromBlob(inputs[index], shapes[index]))} - val forwardResult = module.forward(*executorchInputs.toTypedArray()) + val forwardResult = module.execute(methodName, *executorchInputs.toTypedArray()) return forwardResult } catch (e: IllegalArgumentException) { throw Error(ETError.InvalidArgument.code.toString()) diff --git a/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/BaseS2TDecoder.kt b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/BaseS2TDecoder.kt new file mode 100644 index 0000000000..e8bf225616 --- /dev/null +++ b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/BaseS2TDecoder.kt @@ -0,0 +1,37 @@ +package com.swmansion.rnexecutorch.models.speechtotext + +import com.swmansion.rnexecutorch.models.BaseModel +import org.pytorch.executorch.EValue +import com.facebook.react.bridge.ReactApplicationContext +import com.facebook.react.bridge.ReadableArray +import com.swmansion.rnexecutorch.utils.ArrayUtils.Companion.createFloatArray +import org.pytorch.executorch.Tensor + +abstract class BaseS2TDecoder(reactApplicationContext: ReactApplicationContext): BaseModel(reactApplicationContext) { + protected abstract var methodName: String + + abstract fun setGeneratedTokens(tokens: ReadableArray) + + abstract fun getTokensEValue(): EValue + + override fun runModel(input: ReadableArray): Int { + val tokensEValue = getTokensEValue() + return this.module + .execute(methodName, tokensEValue, this.preprocess(input))[0] + .toTensor() + .dataAsLongArray.last() + .toInt() + } + + abstract fun getInputShape(inputLength: Int): LongArray + + override fun preprocess(input: ReadableArray): EValue { + val inputArray = input.getArray(0)!! + val preprocessorInputShape = this.getInputShape(inputArray.size()) + return EValue.from(Tensor.fromBlob(createFloatArray(inputArray), preprocessorInputShape)) + } + + override fun postprocess(output: Array): Int { + TODO("Not yet implemented") + } +} diff --git a/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/BaseS2TModule.kt b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/BaseS2TModule.kt new file mode 100644 index 0000000000..b1f43d4c60 --- /dev/null +++ b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/BaseS2TModule.kt @@ -0,0 +1,25 @@ +package com.swmansion.rnexecutorch.models.speechtotext + +import com.facebook.react.bridge.ReadableArray +import com.facebook.react.bridge.WritableArray +import com.swmansion.rnexecutorch.models.BaseModel + + +abstract class BaseS2TModule() { + lateinit var encoder: BaseModel + lateinit var decoder: BaseS2TDecoder + abstract var START_TOKEN:Int + abstract var EOS_TOKEN:Int + + fun encode(input: ReadableArray): WritableArray { + return this.encoder.runModel(input) + } + + abstract fun decode(prevTokens: ReadableArray, encoderOutput: ReadableArray): Int + + fun loadModel(encoderSource: String, decoderSource: String) { + this.encoder.loadModel(encoderSource) + this.decoder.loadModel(decoderSource) + } + +} diff --git a/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/Moonshine.kt b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/Moonshine.kt new file mode 100644 index 0000000000..14ba181335 --- /dev/null +++ b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/Moonshine.kt @@ -0,0 +1,13 @@ +package com.swmansion.rnexecutorch.models.speechtotext + +import com.facebook.react.bridge.ReadableArray +import com.swmansion.rnexecutorch.utils.ArrayUtils + +class Moonshine : BaseS2TModule() { + override var START_TOKEN = 1 + override var EOS_TOKEN = 2 + override fun decode(prevTokens: ReadableArray, encoderOutput: ReadableArray): Int { + this.decoder.setGeneratedTokens(prevTokens) + return this.decoder.runModel(encoderOutput) + } +} diff --git a/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/MoonshineDecoder.kt b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/MoonshineDecoder.kt new file mode 100644 index 0000000000..f31d5f4bea --- /dev/null +++ b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/MoonshineDecoder.kt @@ -0,0 +1,28 @@ +package com.swmansion.rnexecutorch.models.speechtotext + +import com.facebook.react.bridge.ReactApplicationContext +import com.facebook.react.bridge.ReadableArray +import com.swmansion.rnexecutorch.utils.ArrayUtils +import org.pytorch.executorch.EValue +import org.pytorch.executorch.Tensor + +class MoonshineDecoder(reactApplicationContext: ReactApplicationContext) : BaseS2TDecoder(reactApplicationContext) { + private lateinit var generatedTokens: LongArray + private var innerDim: Long = 288; + + override var methodName: String + get() = "forward_cached" + set(value) {} + + override fun setGeneratedTokens(tokens: ReadableArray) { + this.generatedTokens = ArrayUtils.createLongArray(tokens) + } + + override fun getTokensEValue(): EValue { + return EValue.from(Tensor.fromBlob(this.generatedTokens, longArrayOf(1, generatedTokens.size.toLong()))) + } + + override fun getInputShape(inputLength: Int): LongArray { + return longArrayOf(1, inputLength.toLong()/innerDim, innerDim) + } +} diff --git a/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/MoonshineEncoder.kt b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/MoonshineEncoder.kt new file mode 100644 index 0000000000..8dc3200670 --- /dev/null +++ b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/MoonshineEncoder.kt @@ -0,0 +1,32 @@ +package com.swmansion.rnexecutorch.models.speechtotext + +import com.facebook.react.bridge.Arguments +import com.facebook.react.bridge.ReactApplicationContext +import com.facebook.react.bridge.ReadableArray +import com.facebook.react.bridge.WritableArray +import com.swmansion.rnexecutorch.models.BaseModel +import com.swmansion.rnexecutorch.utils.ArrayUtils.Companion.createFloatArray +import org.pytorch.executorch.EValue +import org.pytorch.executorch.Tensor + +class MoonshineEncoder(reactApplicationContext: ReactApplicationContext) : + BaseModel(reactApplicationContext) { + + override fun runModel(input: ReadableArray): WritableArray { + return this.postprocess(this.module.forward(this.preprocess(input))) + } + + override fun preprocess(input: ReadableArray): EValue { + val size = input.size() + val preprocessorInputShape = longArrayOf(1, size.toLong()) + return EValue.from(Tensor.fromBlob(createFloatArray(input), preprocessorInputShape)) + } + + public override fun postprocess(output: Array): WritableArray { + val outputWritableArray: WritableArray = Arguments.createArray() + output[0].toTensor().dataAsFloatArray.map {outputWritableArray.pushDouble( + it.toDouble() + )} + return outputWritableArray; + } +} diff --git a/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/Whisper.kt b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/Whisper.kt new file mode 100644 index 0000000000..24cab84962 --- /dev/null +++ b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/Whisper.kt @@ -0,0 +1,13 @@ +package com.swmansion.rnexecutorch.models.speechtotext + +import com.facebook.react.bridge.ReadableArray +import com.swmansion.rnexecutorch.utils.ArrayUtils + +class Whisper : BaseS2TModule() { + override var START_TOKEN = 50257 + override var EOS_TOKEN = 50256 + override fun decode(prevTokens: ReadableArray, encoderOutput: ReadableArray): Int { + this.decoder.setGeneratedTokens(prevTokens) + return this.decoder.runModel(encoderOutput) + } +} diff --git a/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/WhisperDecoder.kt b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/WhisperDecoder.kt index 9ec9b33ed7..e593a97728 100644 --- a/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/WhisperDecoder.kt +++ b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/WhisperDecoder.kt @@ -1,33 +1,27 @@ -package com.swmansion.rnexecutorch.models.speechToText +package com.swmansion.rnexecutorch.models.speechtotext import com.facebook.react.bridge.ReactApplicationContext -import com.swmansion.rnexecutorch.models.BaseModel +import com.facebook.react.bridge.ReadableArray +import com.swmansion.rnexecutorch.utils.ArrayUtils import org.pytorch.executorch.EValue import org.pytorch.executorch.Tensor -class WhisperDecoder( - reactApplicationContext: ReactApplicationContext, -) : BaseModel(reactApplicationContext) { - private var generatedTokens: MutableList = mutableListOf() +class WhisperDecoder(reactApplicationContext: ReactApplicationContext) : BaseS2TDecoder(reactApplicationContext) { + private lateinit var generatedTokens: IntArray + override var methodName: String + get() = "forward" + set(value) {} - fun setGeneratedTokens(tokens: MutableList) { - this.generatedTokens = tokens - } - override fun runModel(input: EValue): Int { - val tokensEValue = EValue.from(Tensor.fromBlob(this.generatedTokens.toIntArray(), longArrayOf(1, generatedTokens.size.toLong()))) - return this.module - .forward(tokensEValue, input)[0] - .toTensor() - .dataAsLongArray[0] - .toInt() + override fun setGeneratedTokens(tokens: ReadableArray) { + this.generatedTokens = ArrayUtils.createIntArray(tokens) } - override fun preprocess(input: EValue): EValue { - TODO("Not yet implemented") + override fun getTokensEValue(): EValue { + return EValue.from(Tensor.fromBlob(this.generatedTokens, longArrayOf(1, generatedTokens.size.toLong()))) } - override fun postprocess(output: Array): Int { - TODO("Not yet implemented") + override fun getInputShape(inputLength: Int): LongArray { + return longArrayOf(1, 1500, 384) } } diff --git a/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/WhisperEncoder.kt b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/WhisperEncoder.kt index 51575c54ab..52f15c0143 100644 --- a/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/WhisperEncoder.kt +++ b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/WhisperEncoder.kt @@ -1,26 +1,46 @@ -package com.swmansion.rnexecutorch.models.speechToText +package com.swmansion.rnexecutorch.models.speechtotext +import android.util.Log +import com.facebook.react.bridge.Arguments import com.facebook.react.bridge.ReactApplicationContext +import com.swmansion.rnexecutorch.utils.ArrayUtils +import com.facebook.react.bridge.ReadableArray +import com.facebook.react.bridge.WritableArray import com.swmansion.rnexecutorch.models.BaseModel +import com.swmansion.rnexecutorch.utils.STFT import org.pytorch.executorch.EValue import org.pytorch.executorch.Tensor class WhisperEncoder(reactApplicationContext: ReactApplicationContext) : - BaseModel(reactApplicationContext) { - private val encoderInputShape = longArrayOf(1L, 80L, 3000L) + BaseModel(reactApplicationContext) { - override fun runModel(input: EValue): EValue { + private val fftSize = 512 + private val hopLength = 160 + private val stftFrameSize = (this.fftSize / 2).toLong() + private val stft = STFT(fftSize, hopLength) + + override fun runModel(input: ReadableArray): WritableArray { val inputEValue = this.preprocess(input) val hiddenState = this.module.forward(inputEValue) - return hiddenState[0] + return this.postprocess(hiddenState) } - override fun preprocess(input: EValue): EValue { - val inputTensor = Tensor.fromBlob(input.toTensor().dataAsFloatArray, this.encoderInputShape) + override fun preprocess(input: ReadableArray): EValue { + val waveformFloatArray = ArrayUtils.createFloatArray(input) + + val stftResult = this.stft.fromWaveform(waveformFloatArray) + val numStftFrames = stftResult.size / this.stftFrameSize + val inputTensor = Tensor.fromBlob(stftResult, longArrayOf(numStftFrames, this.stftFrameSize)) return EValue.from(inputTensor) } - override fun postprocess(output: Array): EValue { - TODO("Not yet implemented") + public override fun postprocess(output: Array): WritableArray { + val outputWritableArray: WritableArray = Arguments.createArray() + + output[0].toTensor().dataAsFloatArray.map { + outputWritableArray.pushDouble( + it.toDouble() + )} + return outputWritableArray } } diff --git a/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/WhisperPreprocessor.kt b/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/WhisperPreprocessor.kt deleted file mode 100644 index 50ae45db31..0000000000 --- a/android/src/main/java/com/swmansion/rnexecutorch/models/speechToText/WhisperPreprocessor.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.swmansion.rnexecutorch.models.speechToText - -import com.facebook.react.bridge.ReactApplicationContext -import com.facebook.react.bridge.ReadableArray -import com.swmansion.rnexecutorch.models.BaseModel -import com.swmansion.rnexecutorch.utils.STFT -import org.pytorch.executorch.EValue -import org.pytorch.executorch.Tensor - -class WhisperPreprocessor(reactApplicationContext: ReactApplicationContext) : - BaseModel(reactApplicationContext) { - private val fftSize = 512 - private val hopLength = 160 - private val stft = STFT(fftSize, hopLength) - - override fun runModel(input: ReadableArray): EValue { - val size = input.size() - val inputFloatArray = FloatArray(size) - for (i in 0 until size) { - inputFloatArray[i] = input.getDouble(i).toFloat() - } - val stftResult = this.stft.fromWaveform(inputFloatArray) - val numStftFrames = stftResult.size / (this.fftSize / 2) - val preprocessorInputShape = longArrayOf(numStftFrames.toLong(), (this.fftSize / 2).toLong()) - val melSpectrogram = this.module.forward(EValue.from(Tensor.fromBlob(stftResult, preprocessorInputShape))) - return melSpectrogram[0] - } - - override fun preprocess(input: ReadableArray): EValue { - TODO("Not yet implemented") - } - - override fun postprocess(output: Array): EValue { - TODO("Not yet implemented") - } -} diff --git a/android/src/main/java/com/swmansion/rnexecutorch/utils/ArrayUtils.kt b/android/src/main/java/com/swmansion/rnexecutorch/utils/ArrayUtils.kt index ef070bcabf..56651523fb 100644 --- a/android/src/main/java/com/swmansion/rnexecutorch/utils/ArrayUtils.kt +++ b/android/src/main/java/com/swmansion/rnexecutorch/utils/ArrayUtils.kt @@ -1,10 +1,10 @@ package com.swmansion.rnexecutorch.utils -import android.util.Log import com.facebook.react.bridge.Arguments import com.facebook.react.bridge.ReadableArray -import com.facebook.react.bridge.ReadableMap +import com.facebook.react.bridge.WritableArray import org.pytorch.executorch.DType +import org.pytorch.executorch.EValue import org.pytorch.executorch.Tensor class ArrayUtils { @@ -91,5 +91,10 @@ class ArrayUtils { return resultArray } + fun writableArrayToEValue(input: WritableArray): EValue { + val size = input.size() + val preprocessorInputShape = longArrayOf(1, size.toLong()) + return EValue.from(Tensor.fromBlob(createFloatArray(input), preprocessorInputShape)) + } } } diff --git a/examples/speech-to-text/.gitignore b/examples/speech-to-text/.gitignore new file mode 100644 index 0000000000..f779c900a7 --- /dev/null +++ b/examples/speech-to-text/.gitignore @@ -0,0 +1,38 @@ +# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files + +# dependencies +node_modules/ + +# Expo +.expo/ +dist/ +web-build/ +expo-env.d.ts + +# Native +*.orig.* +*.jks +*.p8 +*.p12 +*.key +*.mobileprovision + +# Metro +.metro-health-check* + +# debug +npm-debug.* +yarn-debug.* +yarn-error.* + +# macOS +.DS_Store +*.pem + +# local env files +.env*.local + +# typescript +*.tsbuildinfo + +.yarn diff --git a/examples/speech-to-text/App.tsx b/examples/speech-to-text/App.tsx new file mode 100644 index 0000000000..53a7464e0d --- /dev/null +++ b/examples/speech-to-text/App.tsx @@ -0,0 +1,6 @@ +import React from 'react'; +import { SpeechToTextScreen } from './screens/SpeechToTextScreen'; + +export default function App() { + return ; +} diff --git a/examples/speech-to-text/android/.gitignore b/examples/speech-to-text/android/.gitignore new file mode 100644 index 0000000000..8a6be07718 --- /dev/null +++ b/examples/speech-to-text/android/.gitignore @@ -0,0 +1,16 @@ +# OSX +# +.DS_Store + +# Android/IntelliJ +# +build/ +.idea +.gradle +local.properties +*.iml +*.hprof +.cxx/ + +# Bundle artifacts +*.jsbundle diff --git a/examples/speech-to-text/android/app/build.gradle b/examples/speech-to-text/android/app/build.gradle new file mode 100644 index 0000000000..a189debe08 --- /dev/null +++ b/examples/speech-to-text/android/app/build.gradle @@ -0,0 +1,176 @@ +apply plugin: "com.android.application" +apply plugin: "org.jetbrains.kotlin.android" +apply plugin: "com.facebook.react" + +def projectRoot = rootDir.getAbsoluteFile().getParentFile().getAbsolutePath() + +/** + * This is the configuration block to customize your React Native Android app. + * By default you don't need to apply any configuration, just uncomment the lines you need. + */ +react { + entryFile = file(["node", "-e", "require('expo/scripts/resolveAppEntry')", projectRoot, "android", "absolute"].execute(null, rootDir).text.trim()) + reactNativeDir = new File(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim()).getParentFile().getAbsoluteFile() + hermesCommand = new File(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim()).getParentFile().getAbsolutePath() + "/sdks/hermesc/%OS-BIN%/hermesc" + codegenDir = new File(["node", "--print", "require.resolve('@react-native/codegen/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim()).getParentFile().getAbsoluteFile() + + // Use Expo CLI to bundle the app, this ensures the Metro config + // works correctly with Expo projects. + cliFile = new File(["node", "--print", "require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })"].execute(null, rootDir).text.trim()) + bundleCommand = "export:embed" + + /* Folders */ + // The root of your project, i.e. where "package.json" lives. Default is '../..' + // root = file("../../") + // The folder where the react-native NPM package is. Default is ../../node_modules/react-native + // reactNativeDir = file("../../node_modules/react-native") + // The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen + // codegenDir = file("../../node_modules/@react-native/codegen") + + /* Variants */ + // The list of variants to that are debuggable. For those we're going to + // skip the bundling of the JS bundle and the assets. By default is just 'debug'. + // If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants. + // debuggableVariants = ["liteDebug", "prodDebug"] + + /* Bundling */ + // A list containing the node command and its flags. Default is just 'node'. + // nodeExecutableAndArgs = ["node"] + + // + // The path to the CLI configuration file. Default is empty. + // bundleConfig = file(../rn-cli.config.js) + // + // The name of the generated asset file containing your JS bundle + // bundleAssetName = "MyApplication.android.bundle" + // + // The entry file for bundle generation. Default is 'index.android.js' or 'index.js' + // entryFile = file("../js/MyApplication.android.js") + // + // A list of extra flags to pass to the 'bundle' commands. + // See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle + // extraPackagerArgs = [] + + /* Hermes Commands */ + // The hermes compiler command to run. By default it is 'hermesc' + // hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc" + // + // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map" + // hermesFlags = ["-O", "-output-source-map"] + + /* Autolinking */ + autolinkLibrariesWithApp() +} + +/** + * Set this to true to Run Proguard on Release builds to minify the Java bytecode. + */ +def enableProguardInReleaseBuilds = (findProperty('android.enableProguardInReleaseBuilds') ?: false).toBoolean() + +/** + * The preferred build flavor of JavaScriptCore (JSC) + * + * For example, to use the international variant, you can use: + * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` + * + * The international variant includes ICU i18n library and necessary data + * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that + * give correct results when using with locales other than en-US. Note that + * this variant is about 6MiB larger per architecture than default. + */ +def jscFlavor = 'org.webkit:android-jsc:+' + +android { + ndkVersion rootProject.ext.ndkVersion + + buildToolsVersion rootProject.ext.buildToolsVersion + compileSdk rootProject.ext.compileSdkVersion + + namespace 'com.anonymous.speechtotext' + defaultConfig { + applicationId 'com.anonymous.speechtotext' + minSdkVersion rootProject.ext.minSdkVersion + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode 1 + versionName "1.0.0" + } + signingConfigs { + debug { + storeFile file('debug.keystore') + storePassword 'android' + keyAlias 'androiddebugkey' + keyPassword 'android' + } + } + buildTypes { + debug { + signingConfig signingConfigs.debug + } + release { + // Caution! In production, you need to generate your own keystore file. + // see https://reactnative.dev/docs/signed-apk-android. + signingConfig signingConfigs.debug + shrinkResources (findProperty('android.enableShrinkResourcesInReleaseBuilds')?.toBoolean() ?: false) + minifyEnabled enableProguardInReleaseBuilds + proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" + crunchPngs (findProperty('android.enablePngCrunchInReleaseBuilds')?.toBoolean() ?: true) + } + } + packagingOptions { + jniLibs { + useLegacyPackaging (findProperty('expo.useLegacyPackaging')?.toBoolean() ?: false) + } + } + androidResources { + ignoreAssetsPattern '!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~' + } +} + +// Apply static values from `gradle.properties` to the `android.packagingOptions` +// Accepts values in comma delimited lists, example: +// android.packagingOptions.pickFirsts=/LICENSE,**/picasa.ini +["pickFirsts", "excludes", "merges", "doNotStrip"].each { prop -> + // Split option: 'foo,bar' -> ['foo', 'bar'] + def options = (findProperty("android.packagingOptions.$prop") ?: "").split(","); + // Trim all elements in place. + for (i in 0.. 0) { + println "android.packagingOptions.$prop += $options ($options.length)" + // Ex: android.packagingOptions.pickFirsts += '**/SCCS/**' + options.each { + android.packagingOptions[prop] += it + } + } +} + +dependencies { + // The version of react-native is set by the React Native Gradle Plugin + implementation("com.facebook.react:react-android") + + def isGifEnabled = (findProperty('expo.gif.enabled') ?: "") == "true"; + def isWebpEnabled = (findProperty('expo.webp.enabled') ?: "") == "true"; + def isWebpAnimatedEnabled = (findProperty('expo.webp.animated') ?: "") == "true"; + + if (isGifEnabled) { + // For animated gif support + implementation("com.facebook.fresco:animated-gif:${reactAndroidLibs.versions.fresco.get()}") + } + + if (isWebpEnabled) { + // For webp support + implementation("com.facebook.fresco:webpsupport:${reactAndroidLibs.versions.fresco.get()}") + if (isWebpAnimatedEnabled) { + // Animated webp support + implementation("com.facebook.fresco:animated-webp:${reactAndroidLibs.versions.fresco.get()}") + } + } + + if (hermesEnabled.toBoolean()) { + implementation("com.facebook.react:hermes-android") + } else { + implementation jscFlavor + } +} diff --git a/examples/speech-to-text/android/app/debug.keystore b/examples/speech-to-text/android/app/debug.keystore new file mode 100644 index 0000000000..364e105ed3 Binary files /dev/null and b/examples/speech-to-text/android/app/debug.keystore differ diff --git a/examples/speech-to-text/android/app/proguard-rules.pro b/examples/speech-to-text/android/app/proguard-rules.pro new file mode 100644 index 0000000000..551eb41da2 --- /dev/null +++ b/examples/speech-to-text/android/app/proguard-rules.pro @@ -0,0 +1,14 @@ +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the proguardFiles +# directive in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# react-native-reanimated +-keep class com.swmansion.reanimated.** { *; } +-keep class com.facebook.react.turbomodule.** { *; } + +# Add any project specific keep options here: diff --git a/examples/speech-to-text/android/app/src/debug/AndroidManifest.xml b/examples/speech-to-text/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000000..3ec2507bab --- /dev/null +++ b/examples/speech-to-text/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + + + diff --git a/examples/speech-to-text/android/app/src/main/AndroidManifest.xml b/examples/speech-to-text/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000000..7aaa9fd5df --- /dev/null +++ b/examples/speech-to-text/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/speech-to-text/android/app/src/main/java/com/anonymous/speechtotext/MainActivity.kt b/examples/speech-to-text/android/app/src/main/java/com/anonymous/speechtotext/MainActivity.kt new file mode 100644 index 0000000000..a5aaee37b4 --- /dev/null +++ b/examples/speech-to-text/android/app/src/main/java/com/anonymous/speechtotext/MainActivity.kt @@ -0,0 +1,61 @@ +package com.anonymous.speechtotext + +import android.os.Build +import android.os.Bundle + +import com.facebook.react.ReactActivity +import com.facebook.react.ReactActivityDelegate +import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled +import com.facebook.react.defaults.DefaultReactActivityDelegate + +import expo.modules.ReactActivityDelegateWrapper + +class MainActivity : ReactActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + // Set the theme to AppTheme BEFORE onCreate to support + // coloring the background, status bar, and navigation bar. + // This is required for expo-splash-screen. + setTheme(R.style.AppTheme); + super.onCreate(null) + } + + /** + * Returns the name of the main component registered from JavaScript. This is used to schedule + * rendering of the component. + */ + override fun getMainComponentName(): String = "main" + + /** + * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate] + * which allows you to enable New Architecture with a single boolean flags [fabricEnabled] + */ + override fun createReactActivityDelegate(): ReactActivityDelegate { + return ReactActivityDelegateWrapper( + this, + BuildConfig.IS_NEW_ARCHITECTURE_ENABLED, + object : DefaultReactActivityDelegate( + this, + mainComponentName, + fabricEnabled + ){}) + } + + /** + * Align the back button behavior with Android S + * where moving root activities to background instead of finishing activities. + * @see onBackPressed + */ + override fun invokeDefaultOnBackPressed() { + if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.R) { + if (!moveTaskToBack(false)) { + // For non-root activities, use the default implementation to finish them. + super.invokeDefaultOnBackPressed() + } + return + } + + // Use the default back button implementation on Android S + // because it's doing more than [Activity.moveTaskToBack] in fact. + super.invokeDefaultOnBackPressed() + } +} diff --git a/examples/speech-to-text/android/app/src/main/java/com/anonymous/speechtotext/MainApplication.kt b/examples/speech-to-text/android/app/src/main/java/com/anonymous/speechtotext/MainApplication.kt new file mode 100644 index 0000000000..64a6dfbae1 --- /dev/null +++ b/examples/speech-to-text/android/app/src/main/java/com/anonymous/speechtotext/MainApplication.kt @@ -0,0 +1,57 @@ +package com.anonymous.speechtotext + +import android.app.Application +import android.content.res.Configuration + +import com.facebook.react.PackageList +import com.facebook.react.ReactApplication +import com.facebook.react.ReactNativeHost +import com.facebook.react.ReactPackage +import com.facebook.react.ReactHost +import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load +import com.facebook.react.defaults.DefaultReactNativeHost +import com.facebook.react.soloader.OpenSourceMergedSoMapping +import com.facebook.soloader.SoLoader + +import expo.modules.ApplicationLifecycleDispatcher +import expo.modules.ReactNativeHostWrapper + +class MainApplication : Application(), ReactApplication { + + override val reactNativeHost: ReactNativeHost = ReactNativeHostWrapper( + this, + object : DefaultReactNativeHost(this) { + override fun getPackages(): List { + val packages = PackageList(this).packages + // Packages that cannot be autolinked yet can be added manually here, for example: + // packages.add(new MyReactNativePackage()); + return packages + } + + override fun getJSMainModuleName(): String = ".expo/.virtual-metro-entry" + + override fun getUseDeveloperSupport(): Boolean = BuildConfig.DEBUG + + override val isNewArchEnabled: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED + override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED + } + ) + + override val reactHost: ReactHost + get() = ReactNativeHostWrapper.createReactHost(applicationContext, reactNativeHost) + + override fun onCreate() { + super.onCreate() + SoLoader.init(this, OpenSourceMergedSoMapping) + if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) { + // If you opted-in for the New Architecture, we load the native entry point for this app. + load() + } + ApplicationLifecycleDispatcher.onApplicationCreate(this) + } + + override fun onConfigurationChanged(newConfig: Configuration) { + super.onConfigurationChanged(newConfig) + ApplicationLifecycleDispatcher.onConfigurationChanged(this, newConfig) + } +} diff --git a/examples/speech-to-text/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png b/examples/speech-to-text/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png new file mode 100644 index 0000000000..31df827b18 Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png differ diff --git a/examples/speech-to-text/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png b/examples/speech-to-text/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png new file mode 100644 index 0000000000..ef243aab6c Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png differ diff --git a/examples/speech-to-text/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png b/examples/speech-to-text/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png new file mode 100644 index 0000000000..e9d5474519 Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png differ diff --git a/examples/speech-to-text/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png b/examples/speech-to-text/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png new file mode 100644 index 0000000000..d61da15d24 Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png differ diff --git a/examples/speech-to-text/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png b/examples/speech-to-text/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png new file mode 100644 index 0000000000..4aeed11d00 Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png differ diff --git a/examples/speech-to-text/android/app/src/main/res/drawable/ic_launcher_background.xml b/examples/speech-to-text/android/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000000..883b2a080f --- /dev/null +++ b/examples/speech-to-text/android/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/examples/speech-to-text/android/app/src/main/res/drawable/rn_edit_text_material.xml b/examples/speech-to-text/android/app/src/main/res/drawable/rn_edit_text_material.xml new file mode 100644 index 0000000000..5c25e728ea --- /dev/null +++ b/examples/speech-to-text/android/app/src/main/res/drawable/rn_edit_text_material.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/examples/speech-to-text/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000000..3941bea9b9 --- /dev/null +++ b/examples/speech-to-text/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/examples/speech-to-text/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000000..3941bea9b9 --- /dev/null +++ b/examples/speech-to-text/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000000..7fae0ccbcf Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000000..ac03dbf69f Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000000..afa0a4ef4b Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000000..78aaf4541f Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000000..e1173a94d6 Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000000..c4f6e101ec Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000000..7a0f085faa Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000000..ff086fdc34 Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000000..6c2d40bf55 Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000000..730e3fa552 Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000000..f7f1d06908 Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000000..345261586c Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000000..b11a322ab4 Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000000..49a464ee36 Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/examples/speech-to-text/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000000..b51fd15c26 Binary files /dev/null and b/examples/speech-to-text/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/examples/speech-to-text/android/app/src/main/res/values-night/colors.xml b/examples/speech-to-text/android/app/src/main/res/values-night/colors.xml new file mode 100644 index 0000000000..3c05de5be8 --- /dev/null +++ b/examples/speech-to-text/android/app/src/main/res/values-night/colors.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/examples/speech-to-text/android/app/src/main/res/values/colors.xml b/examples/speech-to-text/android/app/src/main/res/values/colors.xml new file mode 100644 index 0000000000..f387b90114 --- /dev/null +++ b/examples/speech-to-text/android/app/src/main/res/values/colors.xml @@ -0,0 +1,6 @@ + + #ffffff + #ffffff + #023c69 + #ffffff + \ No newline at end of file diff --git a/examples/speech-to-text/android/app/src/main/res/values/strings.xml b/examples/speech-to-text/android/app/src/main/res/values/strings.xml new file mode 100644 index 0000000000..ade80436e1 --- /dev/null +++ b/examples/speech-to-text/android/app/src/main/res/values/strings.xml @@ -0,0 +1,5 @@ + + speech-to-text + contain + false + \ No newline at end of file diff --git a/examples/speech-to-text/android/app/src/main/res/values/styles.xml b/examples/speech-to-text/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000000..da525212e4 --- /dev/null +++ b/examples/speech-to-text/android/app/src/main/res/values/styles.xml @@ -0,0 +1,17 @@ + + + + + \ No newline at end of file diff --git a/examples/speech-to-text/android/build.gradle b/examples/speech-to-text/android/build.gradle new file mode 100644 index 0000000000..e34231b2ff --- /dev/null +++ b/examples/speech-to-text/android/build.gradle @@ -0,0 +1,41 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. + +buildscript { + ext { + buildToolsVersion = findProperty('android.buildToolsVersion') ?: '35.0.0' + minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '24') + compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '35') + targetSdkVersion = Integer.parseInt(findProperty('android.targetSdkVersion') ?: '34') + kotlinVersion = findProperty('android.kotlinVersion') ?: '1.9.24' + + ndkVersion = "26.1.10909125" + } + repositories { + google() + mavenCentral() + } + dependencies { + classpath('com.android.tools.build:gradle') + classpath('com.facebook.react:react-native-gradle-plugin') + classpath('org.jetbrains.kotlin:kotlin-gradle-plugin') + } +} + +apply plugin: "com.facebook.react.rootproject" + +allprojects { + repositories { + maven { + // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm + url(new File(['node', '--print', "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim(), '../android')) + } + maven { + // Android JSC is installed from npm + url(new File(['node', '--print', "require.resolve('jsc-android/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim(), '../dist')) + } + + google() + mavenCentral() + maven { url 'https://www.jitpack.io' } + } +} diff --git a/examples/speech-to-text/android/gradle.properties b/examples/speech-to-text/android/gradle.properties new file mode 100644 index 0000000000..7531e9eb23 --- /dev/null +++ b/examples/speech-to-text/android/gradle.properties @@ -0,0 +1,56 @@ +# Project-wide Gradle settings. + +# IDE (e.g. Android Studio) users: +# Gradle settings configured through the IDE *will override* +# any settings specified in this file. + +# For more details on how to configure your build environment visit +# http://www.gradle.org/docs/current/userguide/build_environment.html + +# Specifies the JVM arguments used for the daemon process. +# The setting is particularly useful for tweaking memory settings. +# Default value: -Xmx512m -XX:MaxMetaspaceSize=256m +org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m + +# When configured, Gradle will run in incubating parallel mode. +# This option should only be used with decoupled projects. More details, visit +# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects +# org.gradle.parallel=true + +# AndroidX package structure to make it clearer which packages are bundled with the +# Android operating system, and which are packaged with your app's APK +# https://developer.android.com/topic/libraries/support-library/androidx-rn +android.useAndroidX=true + +# Enable AAPT2 PNG crunching +android.enablePngCrunchInReleaseBuilds=true + +# Use this property to specify which architecture you want to build. +# You can also override it from the CLI using +# ./gradlew -PreactNativeArchitectures=x86_64 +reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 + +# Use this property to enable support to the new architecture. +# This will allow you to use TurboModules and the Fabric render in +# your application. You should enable this flag either if you want +# to write custom TurboModules/Fabric components OR use libraries that +# are providing them. +newArchEnabled=true + +# Use this property to enable or disable the Hermes JS engine. +# If set to false, you will be using JSC instead. +hermesEnabled=true + +# Enable GIF support in React Native images (~200 B increase) +expo.gif.enabled=true +# Enable webp support in React Native images (~85 KB increase) +expo.webp.enabled=true +# Enable animated webp support (~3.4 MB increase) +# Disabled by default because iOS doesn't support animated webp +expo.webp.animated=false + +# Enable network inspector +EX_DEV_CLIENT_NETWORK_INSPECTOR=true + +# Use legacy packaging to compress native libraries in the resulting APK. +expo.useLegacyPackaging=false diff --git a/examples/speech-to-text/android/gradle/wrapper/gradle-wrapper.jar b/examples/speech-to-text/android/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000..a4b76b9530 Binary files /dev/null and b/examples/speech-to-text/android/gradle/wrapper/gradle-wrapper.jar differ diff --git a/examples/speech-to-text/android/gradle/wrapper/gradle-wrapper.properties b/examples/speech-to-text/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000000..79eb9d003f --- /dev/null +++ b/examples/speech-to-text/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/examples/speech-to-text/android/gradlew b/examples/speech-to-text/android/gradlew new file mode 100755 index 0000000000..f5feea6d6b --- /dev/null +++ b/examples/speech-to-text/android/gradlew @@ -0,0 +1,252 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://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. +# +# SPDX-License-Identifier: Apache-2.0 +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s +' "$PWD" ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/examples/speech-to-text/android/gradlew.bat b/examples/speech-to-text/android/gradlew.bat new file mode 100644 index 0000000000..9d21a21834 --- /dev/null +++ b/examples/speech-to-text/android/gradlew.bat @@ -0,0 +1,94 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/examples/speech-to-text/android/settings.gradle b/examples/speech-to-text/android/settings.gradle new file mode 100644 index 0000000000..fd57415340 --- /dev/null +++ b/examples/speech-to-text/android/settings.gradle @@ -0,0 +1,38 @@ +pluginManagement { + includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim()).getParentFile().toString()) +} +plugins { id("com.facebook.react.settings") } + +extensions.configure(com.facebook.react.ReactSettingsExtension) { ex -> + if (System.getenv('EXPO_USE_COMMUNITY_AUTOLINKING') == '1') { + ex.autolinkLibrariesFromCommand() + } else { + def command = [ + 'node', + '--no-warnings', + '--eval', + 'require(require.resolve(\'expo-modules-autolinking\', { paths: [require.resolve(\'expo/package.json\')] }))(process.argv.slice(1))', + 'react-native-config', + '--json', + '--platform', + 'android' + ].toList() + ex.autolinkLibrariesFromCommand(command) + } +} + +rootProject.name = 'speech-to-text' + +dependencyResolutionManagement { + versionCatalogs { + reactAndroidLibs { + from(files(new File(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim(), "../gradle/libs.versions.toml"))) + } + } +} + +apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle"); +useExpoModules() + +include ':app' +includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim()).getParentFile()) diff --git a/examples/speech-to-text/app.json b/examples/speech-to-text/app.json new file mode 100644 index 0000000000..17125cd308 --- /dev/null +++ b/examples/speech-to-text/app.json @@ -0,0 +1,30 @@ +{ + "expo": { + "name": "speech-to-text", + "slug": "speech-to-text", + "version": "1.0.0", + "orientation": "portrait", + "icon": "./assets/icon.png", + "userInterfaceStyle": "light", + "newArchEnabled": true, + "splash": { + "image": "./assets/splash-icon.png", + "resizeMode": "contain", + "backgroundColor": "#ffffff" + }, + "ios": { + "supportsTablet": true, + "bundleIdentifier": "com.anonymous.speechtotext" + }, + "android": { + "adaptiveIcon": { + "foregroundImage": "./assets/adaptive-icon.png", + "backgroundColor": "#ffffff" + }, + "package": "com.anonymous.speechtotext" + }, + "web": { + "favicon": "./assets/favicon.png" + } + } +} diff --git a/examples/speech-to-text/assets/adaptive-icon.png b/examples/speech-to-text/assets/adaptive-icon.png new file mode 100644 index 0000000000..03d6f6b6c6 Binary files /dev/null and b/examples/speech-to-text/assets/adaptive-icon.png differ diff --git a/examples/speech-to-text/assets/favicon.png b/examples/speech-to-text/assets/favicon.png new file mode 100644 index 0000000000..e75f697b18 Binary files /dev/null and b/examples/speech-to-text/assets/favicon.png differ diff --git a/examples/speech-to-text/assets/icon.png b/examples/speech-to-text/assets/icon.png new file mode 100644 index 0000000000..a0b1526fc7 Binary files /dev/null and b/examples/speech-to-text/assets/icon.png differ diff --git a/examples/speech-to-text/assets/splash-icon.png b/examples/speech-to-text/assets/splash-icon.png new file mode 100644 index 0000000000..03d6f6b6c6 Binary files /dev/null and b/examples/speech-to-text/assets/splash-icon.png differ diff --git a/examples/speech-to-text/assets/swm_icon.svg b/examples/speech-to-text/assets/swm_icon.svg new file mode 100644 index 0000000000..8c62f039be --- /dev/null +++ b/examples/speech-to-text/assets/swm_icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/examples/speech-to-text/components/TextInputModal.tsx b/examples/speech-to-text/components/TextInputModal.tsx new file mode 100644 index 0000000000..e432c65bc6 --- /dev/null +++ b/examples/speech-to-text/components/TextInputModal.tsx @@ -0,0 +1,109 @@ +import React from 'react'; +import { + View, + Text, + Modal, + TextInput, + StyleSheet, + TouchableOpacity, +} from 'react-native'; + +const InputPrompt = ({ + value, + onChangeText, + modalVisible, + setModalVisible, +}: { + value: string; + onChangeText: (_: string) => void; + modalVisible: boolean; + setModalVisible: (_: boolean) => void; +}) => { + return ( + + { + setModalVisible(!modalVisible); + }} + > + { + setModalVisible(false); + }} + > + + + onChangeText(text)} + value={value} + /> + setModalVisible(!modalVisible)} + > + Confirm + + + + + + + ); +}; + +const styles = StyleSheet.create({ + confirmText: { + fontSize: 20, + color: 'white', + fontWeight: '400', + }, + confirmButton: { + backgroundColor: '#001A72', + justifyContent: 'center', + alignItems: 'center', + width: '100%', + height: 40, + borderRadius: 40, + paddingRight: 15, + paddingLeft: 15, + }, + centeredView: { + flex: 1, + justifyContent: 'center', + alignItems: 'center', + }, + modalView: { + margin: 20, + backgroundColor: 'white', + borderRadius: 20, + padding: 35, + alignItems: 'center', + shadowColor: '#000', + shadowOffset: { + width: 0, + height: 2, + }, + shadowOpacity: 0.25, + shadowRadius: 4, + elevation: 5, + }, + textInputStyle: { + textAlign: 'center', + height: 40, + width: 200, + marginBottom: 20, + borderRadius: 20, + borderWidth: 1, + padding: 10, + borderColor: '#ccc', + }, +}); + +export default InputPrompt; diff --git a/examples/speech-to-text/declarations.d.ts b/examples/speech-to-text/declarations.d.ts new file mode 100644 index 0000000000..85e178f497 --- /dev/null +++ b/examples/speech-to-text/declarations.d.ts @@ -0,0 +1,5 @@ +declare module '*.svg' { + import { SvgProps } from 'react-native-svg'; + const content: React.FV; + export default content; +} diff --git a/examples/speech-to-text/index.ts b/examples/speech-to-text/index.ts new file mode 100644 index 0000000000..1d6e981ef6 --- /dev/null +++ b/examples/speech-to-text/index.ts @@ -0,0 +1,8 @@ +import { registerRootComponent } from 'expo'; + +import App from './App'; + +// registerRootComponent calls AppRegistry.registerComponent('main', () => App); +// It also ensures that whether you load the app in Expo Go or in a native build, +// the environment is set up appropriately +registerRootComponent(App); diff --git a/examples/speech-to-text/ios/.gitignore b/examples/speech-to-text/ios/.gitignore new file mode 100644 index 0000000000..8beb344303 --- /dev/null +++ b/examples/speech-to-text/ios/.gitignore @@ -0,0 +1,30 @@ +# OSX +# +.DS_Store + +# Xcode +# +build/ +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata +*.xccheckout +*.moved-aside +DerivedData +*.hmap +*.ipa +*.xcuserstate +project.xcworkspace +.xcode.env.local + +# Bundle artifacts +*.jsbundle + +# CocoaPods +/Pods/ diff --git a/examples/speech-to-text/ios/.xcode.env b/examples/speech-to-text/ios/.xcode.env new file mode 100644 index 0000000000..3d5782c715 --- /dev/null +++ b/examples/speech-to-text/ios/.xcode.env @@ -0,0 +1,11 @@ +# This `.xcode.env` file is versioned and is used to source the environment +# used when running script phases inside Xcode. +# To customize your local environment, you can create an `.xcode.env.local` +# file that is not versioned. + +# NODE_BINARY variable contains the PATH to the node executable. +# +# Customize the NODE_BINARY variable here. +# For example, to use nvm with brew, add the following line +# . "$(brew --prefix nvm)/nvm.sh" --no-use +export NODE_BINARY=$(command -v node) diff --git a/examples/speech-to-text/ios/Podfile b/examples/speech-to-text/ios/Podfile new file mode 100644 index 0000000000..4678b4090a --- /dev/null +++ b/examples/speech-to-text/ios/Podfile @@ -0,0 +1,66 @@ +require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking") +require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods") + +require 'json' +podfile_properties = JSON.parse(File.read(File.join(__dir__, 'Podfile.properties.json'))) rescue {} + +ENV['RCT_NEW_ARCH_ENABLED'] = podfile_properties['newArchEnabled'] == 'true' ? '1' : '0' +ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR'] = podfile_properties['EX_DEV_CLIENT_NETWORK_INSPECTOR'] + +platform :ios, podfile_properties['ios.deploymentTarget'] || '15.1' +install! 'cocoapods', + :deterministic_uuids => false + +prepare_react_native_project! + +target 'speechtotext' do + use_expo_modules! + + if ENV['EXPO_USE_COMMUNITY_AUTOLINKING'] == '1' + config_command = ['node', '-e', "process.argv=['', '', 'config'];require('@react-native-community/cli').run()"]; + else + config_command = [ + 'node', + '--no-warnings', + '--eval', + 'require(require.resolve(\'expo-modules-autolinking\', { paths: [require.resolve(\'expo/package.json\')] }))(process.argv.slice(1))', + 'react-native-config', + '--json', + '--platform', + 'ios' + ] + end + + config = use_native_modules!(config_command) + + use_frameworks! :linkage => podfile_properties['ios.useFrameworks'].to_sym if podfile_properties['ios.useFrameworks'] + use_frameworks! :linkage => ENV['USE_FRAMEWORKS'].to_sym if ENV['USE_FRAMEWORKS'] + + use_react_native!( + :path => config[:reactNativePath], + :hermes_enabled => podfile_properties['expo.jsEngine'] == nil || podfile_properties['expo.jsEngine'] == 'hermes', + # An absolute path to your application root. + :app_path => "#{Pod::Config.instance.installation_root}/..", + :privacy_file_aggregation_enabled => podfile_properties['apple.privacyManifestAggregationEnabled'] != 'false', + ) + + post_install do |installer| + react_native_post_install( + installer, + config[:reactNativePath], + :mac_catalyst_enabled => false, + :ccache_enabled => podfile_properties['apple.ccacheEnabled'] == 'true', + ) + + # This is necessary for Xcode 14, because it signs resource bundles by default + # when building for devices. + installer.target_installation_results.pod_target_installation_results + .each do |pod_name, target_installation_result| + target_installation_result.resource_bundle_targets.each do |resource_bundle_target| + resource_bundle_target.build_configurations.each do |config| + config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO' + end + end + end + end +end diff --git a/examples/speech-to-text/ios/Podfile.lock b/examples/speech-to-text/ios/Podfile.lock new file mode 100644 index 0000000000..b64d9c2f62 --- /dev/null +++ b/examples/speech-to-text/ios/Podfile.lock @@ -0,0 +1,2177 @@ +PODS: + - boost (1.84.0) + - DoubleConversion (1.1.6) + - EXConstants (17.0.7): + - ExpoModulesCore + - Expo (52.0.37): + - ExpoModulesCore + - ExpoAsset (11.0.4): + - ExpoModulesCore + - ExpoFileSystem (18.0.11): + - ExpoModulesCore + - ExpoFont (13.0.4): + - ExpoModulesCore + - ExpoKeepAwake (14.0.3): + - ExpoModulesCore + - ExpoModulesCore (2.2.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-jsinspector + - React-NativeModulesApple + - React-RCTAppDelegate + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - FBLazyVector (0.76.3) + - fmt (9.1.0) + - glog (0.3.5) + - hermes-engine (0.76.3): + - hermes-engine/Pre-built (= 0.76.3) + - hermes-engine/Pre-built (0.76.3) + - opencv-rne (0.1.0) + - RCT-Folly (2024.01.01.00): + - boost + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Default (= 2024.01.01.00) + - RCT-Folly/Default (2024.01.01.00): + - boost + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (2024.01.01.00): + - boost + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCTDeprecation (0.76.3) + - RCTRequired (0.76.3) + - RCTTypeSafety (0.76.3): + - FBLazyVector (= 0.76.3) + - RCTRequired (= 0.76.3) + - React-Core (= 0.76.3) + - React (0.76.3): + - React-Core (= 0.76.3) + - React-Core/DevSupport (= 0.76.3) + - React-Core/RCTWebSocket (= 0.76.3) + - React-RCTActionSheet (= 0.76.3) + - React-RCTAnimation (= 0.76.3) + - React-RCTBlob (= 0.76.3) + - React-RCTImage (= 0.76.3) + - React-RCTLinking (= 0.76.3) + - React-RCTNetwork (= 0.76.3) + - React-RCTSettings (= 0.76.3) + - React-RCTText (= 0.76.3) + - React-RCTVibration (= 0.76.3) + - React-callinvoker (0.76.3) + - React-Core (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default (= 0.76.3) + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/CoreModulesHeaders (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/Default (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/DevSupport (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default (= 0.76.3) + - React-Core/RCTWebSocket (= 0.76.3) + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTActionSheetHeaders (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTAnimationHeaders (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTBlobHeaders (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTImageHeaders (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTLinkingHeaders (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTNetworkHeaders (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTSettingsHeaders (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTTextHeaders (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTVibrationHeaders (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTWebSocket (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default (= 0.76.3) + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-CoreModules (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - RCT-Folly (= 2024.01.01.00) + - RCTTypeSafety (= 0.76.3) + - React-Core/CoreModulesHeaders (= 0.76.3) + - React-jsi (= 0.76.3) + - React-jsinspector + - React-NativeModulesApple + - React-RCTBlob + - React-RCTImage (= 0.76.3) + - ReactCodegen + - ReactCommon + - SocketRocket (= 0.7.1) + - React-cxxreact (0.76.3): + - boost + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.76.3) + - React-debug (= 0.76.3) + - React-jsi (= 0.76.3) + - React-jsinspector + - React-logger (= 0.76.3) + - React-perflogger (= 0.76.3) + - React-runtimeexecutor (= 0.76.3) + - React-timing (= 0.76.3) + - React-debug (0.76.3) + - React-defaultsnativemodule (0.76.3): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-domnativemodule + - React-Fabric + - React-featureflags + - React-featureflagsnativemodule + - React-graphics + - React-idlecallbacksnativemodule + - React-ImageManager + - React-microtasksnativemodule + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-domnativemodule (0.76.3): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-FabricComponents + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-Fabric (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/animations (= 0.76.3) + - React-Fabric/attributedstring (= 0.76.3) + - React-Fabric/componentregistry (= 0.76.3) + - React-Fabric/componentregistrynative (= 0.76.3) + - React-Fabric/components (= 0.76.3) + - React-Fabric/core (= 0.76.3) + - React-Fabric/dom (= 0.76.3) + - React-Fabric/imagemanager (= 0.76.3) + - React-Fabric/leakchecker (= 0.76.3) + - React-Fabric/mounting (= 0.76.3) + - React-Fabric/observers (= 0.76.3) + - React-Fabric/scheduler (= 0.76.3) + - React-Fabric/telemetry (= 0.76.3) + - React-Fabric/templateprocessor (= 0.76.3) + - React-Fabric/uimanager (= 0.76.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/animations (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/attributedstring (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/componentregistry (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/componentregistrynative (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/components/legacyviewmanagerinterop (= 0.76.3) + - React-Fabric/components/root (= 0.76.3) + - React-Fabric/components/view (= 0.76.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/legacyviewmanagerinterop (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/root (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/view (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-Fabric/core (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/dom (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/imagemanager (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/leakchecker (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/mounting (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/observers (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/observers/events (= 0.76.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/observers/events (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/scheduler (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/observers/events + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-performancetimeline + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/telemetry (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/templateprocessor (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/uimanager (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/uimanager/consistency (= 0.76.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererconsistency + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/uimanager/consistency (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererconsistency + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-FabricComponents (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-FabricComponents/components (= 0.76.3) + - React-FabricComponents/textlayoutmanager (= 0.76.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-FabricComponents/components/inputaccessory (= 0.76.3) + - React-FabricComponents/components/iostextinput (= 0.76.3) + - React-FabricComponents/components/modal (= 0.76.3) + - React-FabricComponents/components/rncore (= 0.76.3) + - React-FabricComponents/components/safeareaview (= 0.76.3) + - React-FabricComponents/components/scrollview (= 0.76.3) + - React-FabricComponents/components/text (= 0.76.3) + - React-FabricComponents/components/textinput (= 0.76.3) + - React-FabricComponents/components/unimplementedview (= 0.76.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/inputaccessory (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/iostextinput (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/modal (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/rncore (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/safeareaview (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/scrollview (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/text (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/textinput (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/unimplementedview (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/textlayoutmanager (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricImage (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired (= 0.76.3) + - RCTTypeSafety (= 0.76.3) + - React-Fabric + - React-graphics + - React-ImageManager + - React-jsi + - React-jsiexecutor (= 0.76.3) + - React-logger + - React-rendererdebug + - React-utils + - ReactCommon + - Yoga + - React-featureflags (0.76.3) + - React-featureflagsnativemodule (0.76.3): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-graphics (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-jsi + - React-jsiexecutor + - React-utils + - React-hermes (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-cxxreact (= 0.76.3) + - React-jsi + - React-jsiexecutor (= 0.76.3) + - React-jsinspector + - React-perflogger (= 0.76.3) + - React-runtimeexecutor + - React-idlecallbacksnativemodule (0.76.3): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-ImageManager (0.76.3): + - glog + - RCT-Folly/Fabric + - React-Core/Default + - React-debug + - React-Fabric + - React-graphics + - React-rendererdebug + - React-utils + - React-jserrorhandler (0.76.3): + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-cxxreact + - React-debug + - React-jsi + - React-jsi (0.76.3): + - boost + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-jsiexecutor (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-cxxreact (= 0.76.3) + - React-jsi (= 0.76.3) + - React-jsinspector + - React-perflogger (= 0.76.3) + - React-jsinspector (0.76.3): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-featureflags + - React-jsi + - React-perflogger (= 0.76.3) + - React-runtimeexecutor (= 0.76.3) + - React-jsitracing (0.76.3): + - React-jsi + - React-logger (0.76.3): + - glog + - React-Mapbuffer (0.76.3): + - glog + - React-debug + - React-microtasksnativemodule (0.76.3): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - react-native-executorch (0.3.274): + - DoubleConversion + - glog + - hermes-engine + - opencv-rne (~> 0.1.0) + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - react-native-image-picker (7.2.3): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - react-native-safe-area-context (5.3.0): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - react-native-safe-area-context/common (= 5.3.0) + - react-native-safe-area-context/fabric (= 5.3.0) + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - react-native-safe-area-context/common (5.3.0): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - react-native-safe-area-context/fabric (5.3.0): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - react-native-safe-area-context/common + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-nativeconfig (0.76.3) + - React-NativeModulesApple (0.76.3): + - glog + - hermes-engine + - React-callinvoker + - React-Core + - React-cxxreact + - React-jsi + - React-jsinspector + - React-runtimeexecutor + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - React-perflogger (0.76.3): + - DoubleConversion + - RCT-Folly (= 2024.01.01.00) + - React-performancetimeline (0.76.3): + - RCT-Folly (= 2024.01.01.00) + - React-cxxreact + - React-timing + - React-RCTActionSheet (0.76.3): + - React-Core/RCTActionSheetHeaders (= 0.76.3) + - React-RCTAnimation (0.76.3): + - RCT-Folly (= 2024.01.01.00) + - RCTTypeSafety + - React-Core/RCTAnimationHeaders + - React-jsi + - React-NativeModulesApple + - ReactCodegen + - ReactCommon + - React-RCTAppDelegate (0.76.3): + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-CoreModules + - React-debug + - React-defaultsnativemodule + - React-Fabric + - React-featureflags + - React-graphics + - React-hermes + - React-nativeconfig + - React-NativeModulesApple + - React-RCTFabric + - React-RCTImage + - React-RCTNetwork + - React-rendererdebug + - React-RuntimeApple + - React-RuntimeCore + - React-RuntimeHermes + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon + - React-RCTBlob (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-Core/RCTBlobHeaders + - React-Core/RCTWebSocket + - React-jsi + - React-jsinspector + - React-NativeModulesApple + - React-RCTNetwork + - ReactCodegen + - ReactCommon + - React-RCTFabric (0.76.3): + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-Core + - React-debug + - React-Fabric + - React-FabricComponents + - React-FabricImage + - React-featureflags + - React-graphics + - React-ImageManager + - React-jsi + - React-jsinspector + - React-nativeconfig + - React-performancetimeline + - React-RCTImage + - React-RCTText + - React-rendererconsistency + - React-rendererdebug + - React-runtimescheduler + - React-utils + - Yoga + - React-RCTImage (0.76.3): + - RCT-Folly (= 2024.01.01.00) + - RCTTypeSafety + - React-Core/RCTImageHeaders + - React-jsi + - React-NativeModulesApple + - React-RCTNetwork + - ReactCodegen + - ReactCommon + - React-RCTLinking (0.76.3): + - React-Core/RCTLinkingHeaders (= 0.76.3) + - React-jsi (= 0.76.3) + - React-NativeModulesApple + - ReactCodegen + - ReactCommon + - ReactCommon/turbomodule/core (= 0.76.3) + - React-RCTNetwork (0.76.3): + - RCT-Folly (= 2024.01.01.00) + - RCTTypeSafety + - React-Core/RCTNetworkHeaders + - React-jsi + - React-NativeModulesApple + - ReactCodegen + - ReactCommon + - React-RCTSettings (0.76.3): + - RCT-Folly (= 2024.01.01.00) + - RCTTypeSafety + - React-Core/RCTSettingsHeaders + - React-jsi + - React-NativeModulesApple + - ReactCodegen + - ReactCommon + - React-RCTText (0.76.3): + - React-Core/RCTTextHeaders (= 0.76.3) + - Yoga + - React-RCTVibration (0.76.3): + - RCT-Folly (= 2024.01.01.00) + - React-Core/RCTVibrationHeaders + - React-jsi + - React-NativeModulesApple + - ReactCodegen + - ReactCommon + - React-rendererconsistency (0.76.3) + - React-rendererdebug (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - RCT-Folly (= 2024.01.01.00) + - React-debug + - React-rncore (0.76.3) + - React-RuntimeApple (0.76.3): + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-callinvoker + - React-Core/Default + - React-CoreModules + - React-cxxreact + - React-jserrorhandler + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-Mapbuffer + - React-NativeModulesApple + - React-RCTFabric + - React-RuntimeCore + - React-runtimeexecutor + - React-RuntimeHermes + - React-runtimescheduler + - React-utils + - React-RuntimeCore (0.76.3): + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-cxxreact + - React-featureflags + - React-jserrorhandler + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-performancetimeline + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - React-runtimeexecutor (0.76.3): + - React-jsi (= 0.76.3) + - React-RuntimeHermes (0.76.3): + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-featureflags + - React-hermes + - React-jsi + - React-jsinspector + - React-jsitracing + - React-nativeconfig + - React-RuntimeCore + - React-utils + - React-runtimescheduler (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker + - React-cxxreact + - React-debug + - React-featureflags + - React-jsi + - React-performancetimeline + - React-rendererconsistency + - React-rendererdebug + - React-runtimeexecutor + - React-timing + - React-utils + - React-timing (0.76.3) + - React-utils (0.76.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-debug + - React-jsi (= 0.76.3) + - ReactCodegen (0.76.3): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-FabricImage + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-NativeModulesApple + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - ReactCommon (0.76.3): + - ReactCommon/turbomodule (= 0.76.3) + - ReactCommon/turbomodule (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.76.3) + - React-cxxreact (= 0.76.3) + - React-jsi (= 0.76.3) + - React-logger (= 0.76.3) + - React-perflogger (= 0.76.3) + - ReactCommon/turbomodule/bridging (= 0.76.3) + - ReactCommon/turbomodule/core (= 0.76.3) + - ReactCommon/turbomodule/bridging (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.76.3) + - React-cxxreact (= 0.76.3) + - React-jsi (= 0.76.3) + - React-logger (= 0.76.3) + - React-perflogger (= 0.76.3) + - ReactCommon/turbomodule/core (0.76.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.76.3) + - React-cxxreact (= 0.76.3) + - React-debug (= 0.76.3) + - React-featureflags (= 0.76.3) + - React-jsi (= 0.76.3) + - React-logger (= 0.76.3) + - React-perflogger (= 0.76.3) + - React-utils (= 0.76.3) + - RNAudioAPI (0.4.11): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - RNDeviceInfo (14.0.4): + - React-Core + - RNLiveAudioStream (1.1.1): + - React + - RNReanimated (3.17.1): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-hermes + - React-ImageManager + - React-jsi + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - RNReanimated/reanimated (= 3.17.1) + - RNReanimated/worklets (= 3.17.1) + - Yoga + - RNReanimated/reanimated (3.17.1): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-hermes + - React-ImageManager + - React-jsi + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - RNReanimated/reanimated/apple (= 3.17.1) + - Yoga + - RNReanimated/reanimated/apple (3.17.1): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-hermes + - React-ImageManager + - React-jsi + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - RNReanimated/worklets (3.17.1): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-hermes + - React-ImageManager + - React-jsi + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - RNReanimated/worklets/apple (= 3.17.1) + - Yoga + - RNReanimated/worklets/apple (3.17.1): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-hermes + - React-ImageManager + - React-jsi + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - RNSVG (15.11.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - RNSVG/common (= 15.11.2) + - Yoga + - RNSVG/common (15.11.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - SocketRocket (0.7.1) + - Yoga (0.0.0) + +DEPENDENCIES: + - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`) + - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) + - EXConstants (from `../node_modules/expo-constants/ios`) + - Expo (from `../node_modules/expo`) + - ExpoAsset (from `../node_modules/expo-asset/ios`) + - ExpoFileSystem (from `../node_modules/expo-file-system/ios`) + - ExpoFont (from `../node_modules/expo-font/ios`) + - ExpoKeepAwake (from `../node_modules/expo-keep-awake/ios`) + - ExpoModulesCore (from `../node_modules/expo-modules-core`) + - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) + - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`) + - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) + - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`) + - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) + - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) + - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`) + - RCTRequired (from `../node_modules/react-native/Libraries/Required`) + - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) + - React (from `../node_modules/react-native/`) + - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) + - React-Core (from `../node_modules/react-native/`) + - React-Core/RCTWebSocket (from `../node_modules/react-native/`) + - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) + - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) + - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`) + - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`) + - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`) + - React-Fabric (from `../node_modules/react-native/ReactCommon`) + - React-FabricComponents (from `../node_modules/react-native/ReactCommon`) + - React-FabricImage (from `../node_modules/react-native/ReactCommon`) + - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`) + - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`) + - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`) + - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`) + - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`) + - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`) + - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`) + - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) + - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) + - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`) + - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`) + - React-logger (from `../node_modules/react-native/ReactCommon/logger`) + - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`) + - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`) + - react-native-executorch (from `../node_modules/react-native-executorch`) + - react-native-image-picker (from `../node_modules/react-native-image-picker`) + - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) + - React-nativeconfig (from `../node_modules/react-native/ReactCommon`) + - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`) + - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) + - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`) + - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) + - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) + - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`) + - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`) + - React-RCTFabric (from `../node_modules/react-native/React`) + - React-RCTImage (from `../node_modules/react-native/Libraries/Image`) + - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`) + - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`) + - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) + - React-RCTText (from `../node_modules/react-native/Libraries/Text`) + - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) + - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`) + - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`) + - React-rncore (from `../node_modules/react-native/ReactCommon`) + - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`) + - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`) + - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`) + - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`) + - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`) + - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`) + - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`) + - ReactCodegen (from `build/generated/ios`) + - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) + - RNAudioAPI (from `../node_modules/react-native-audio-api`) + - RNDeviceInfo (from `../node_modules/react-native-device-info`) + - RNLiveAudioStream (from `../node_modules/react-native-live-audio-stream`) + - RNReanimated (from `../node_modules/react-native-reanimated`) + - RNSVG (from `../node_modules/react-native-svg`) + - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) + +SPEC REPOS: + trunk: + - opencv-rne + - SocketRocket + +EXTERNAL SOURCES: + boost: + :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec" + DoubleConversion: + :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" + EXConstants: + :path: "../node_modules/expo-constants/ios" + Expo: + :path: "../node_modules/expo" + ExpoAsset: + :path: "../node_modules/expo-asset/ios" + ExpoFileSystem: + :path: "../node_modules/expo-file-system/ios" + ExpoFont: + :path: "../node_modules/expo-font/ios" + ExpoKeepAwake: + :path: "../node_modules/expo-keep-awake/ios" + ExpoModulesCore: + :path: "../node_modules/expo-modules-core" + FBLazyVector: + :path: "../node_modules/react-native/Libraries/FBLazyVector" + fmt: + :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec" + glog: + :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" + hermes-engine: + :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" + :tag: hermes-2024-11-12-RNv0.76.2-5b4aa20c719830dcf5684832b89a6edb95ac3d64 + RCT-Folly: + :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" + RCTDeprecation: + :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation" + RCTRequired: + :path: "../node_modules/react-native/Libraries/Required" + RCTTypeSafety: + :path: "../node_modules/react-native/Libraries/TypeSafety" + React: + :path: "../node_modules/react-native/" + React-callinvoker: + :path: "../node_modules/react-native/ReactCommon/callinvoker" + React-Core: + :path: "../node_modules/react-native/" + React-CoreModules: + :path: "../node_modules/react-native/React/CoreModules" + React-cxxreact: + :path: "../node_modules/react-native/ReactCommon/cxxreact" + React-debug: + :path: "../node_modules/react-native/ReactCommon/react/debug" + React-defaultsnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults" + React-domnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom" + React-Fabric: + :path: "../node_modules/react-native/ReactCommon" + React-FabricComponents: + :path: "../node_modules/react-native/ReactCommon" + React-FabricImage: + :path: "../node_modules/react-native/ReactCommon" + React-featureflags: + :path: "../node_modules/react-native/ReactCommon/react/featureflags" + React-featureflagsnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags" + React-graphics: + :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics" + React-hermes: + :path: "../node_modules/react-native/ReactCommon/hermes" + React-idlecallbacksnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks" + React-ImageManager: + :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios" + React-jserrorhandler: + :path: "../node_modules/react-native/ReactCommon/jserrorhandler" + React-jsi: + :path: "../node_modules/react-native/ReactCommon/jsi" + React-jsiexecutor: + :path: "../node_modules/react-native/ReactCommon/jsiexecutor" + React-jsinspector: + :path: "../node_modules/react-native/ReactCommon/jsinspector-modern" + React-jsitracing: + :path: "../node_modules/react-native/ReactCommon/hermes/executor/" + React-logger: + :path: "../node_modules/react-native/ReactCommon/logger" + React-Mapbuffer: + :path: "../node_modules/react-native/ReactCommon" + React-microtasksnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks" + react-native-executorch: + :path: "../node_modules/react-native-executorch" + react-native-image-picker: + :path: "../node_modules/react-native-image-picker" + react-native-safe-area-context: + :path: "../node_modules/react-native-safe-area-context" + React-nativeconfig: + :path: "../node_modules/react-native/ReactCommon" + React-NativeModulesApple: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios" + React-perflogger: + :path: "../node_modules/react-native/ReactCommon/reactperflogger" + React-performancetimeline: + :path: "../node_modules/react-native/ReactCommon/react/performance/timeline" + React-RCTActionSheet: + :path: "../node_modules/react-native/Libraries/ActionSheetIOS" + React-RCTAnimation: + :path: "../node_modules/react-native/Libraries/NativeAnimation" + React-RCTAppDelegate: + :path: "../node_modules/react-native/Libraries/AppDelegate" + React-RCTBlob: + :path: "../node_modules/react-native/Libraries/Blob" + React-RCTFabric: + :path: "../node_modules/react-native/React" + React-RCTImage: + :path: "../node_modules/react-native/Libraries/Image" + React-RCTLinking: + :path: "../node_modules/react-native/Libraries/LinkingIOS" + React-RCTNetwork: + :path: "../node_modules/react-native/Libraries/Network" + React-RCTSettings: + :path: "../node_modules/react-native/Libraries/Settings" + React-RCTText: + :path: "../node_modules/react-native/Libraries/Text" + React-RCTVibration: + :path: "../node_modules/react-native/Libraries/Vibration" + React-rendererconsistency: + :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency" + React-rendererdebug: + :path: "../node_modules/react-native/ReactCommon/react/renderer/debug" + React-rncore: + :path: "../node_modules/react-native/ReactCommon" + React-RuntimeApple: + :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios" + React-RuntimeCore: + :path: "../node_modules/react-native/ReactCommon/react/runtime" + React-runtimeexecutor: + :path: "../node_modules/react-native/ReactCommon/runtimeexecutor" + React-RuntimeHermes: + :path: "../node_modules/react-native/ReactCommon/react/runtime" + React-runtimescheduler: + :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler" + React-timing: + :path: "../node_modules/react-native/ReactCommon/react/timing" + React-utils: + :path: "../node_modules/react-native/ReactCommon/react/utils" + ReactCodegen: + :path: build/generated/ios + ReactCommon: + :path: "../node_modules/react-native/ReactCommon" + RNAudioAPI: + :path: "../node_modules/react-native-audio-api" + RNDeviceInfo: + :path: "../node_modules/react-native-device-info" + RNLiveAudioStream: + :path: "../node_modules/react-native-live-audio-stream" + RNReanimated: + :path: "../node_modules/react-native-reanimated" + RNSVG: + :path: "../node_modules/react-native-svg" + Yoga: + :path: "../node_modules/react-native/ReactCommon/yoga" + +SPEC CHECKSUMS: + boost: 1dca942403ed9342f98334bf4c3621f011aa7946 + DoubleConversion: f16ae600a246532c4020132d54af21d0ddb2a385 + EXConstants: 0472d3c23d97943fe3505306daf9cde8024365c2 + Expo: f1d13d22815979ad85a0a59fcf6d23660c813ecd + ExpoAsset: a4cbc27a7cd24a6e87eb719603790b2cfa8dd326 + ExpoFileSystem: 4d2e7f77a41cfde8c3ae98580d872cd49437f993 + ExpoFont: 773955186469acc5108ff569712a2d243857475f + ExpoKeepAwake: 2a5f15dd4964cba8002c9a36676319a3394c85c7 + ExpoModulesCore: 561a787bc626ab9bcfee2a688bd588bf2667405f + FBLazyVector: be7314029d6ec6b90f0f75ce1195b8130ed9ac4f + fmt: 10c6e61f4be25dc963c36bd73fc7b1705fe975be + glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a + hermes-engine: 0555a84ea495e8e3b4bde71b597cd87fbb382888 + opencv-rne: 63e933ae2373fc91351f9a348dc46c3f523c2d3f + RCT-Folly: bf5c0376ffe4dd2cf438dcf86db385df9fdce648 + RCTDeprecation: 2c5e1000b04ab70b53956aa498bf7442c3c6e497 + RCTRequired: 5f785a001cf68a551c5f5040fb4c415672dbb481 + RCTTypeSafety: 6b98db8965005d32449605c0d005ecb4fee8a0f7 + React: 8077bf7c185afb515be82518507e16f71a247a5e + React-callinvoker: 519eee9520727805e2867a6d8dad4ebbeed543db + React-Core: e364ceda7d086c7d14adeec0eb880a90073e3dde + React-CoreModules: 291be650024d9db086c95fd1d7e7d9607c6de62b + React-cxxreact: 5cf17d13ca0fc0734e1bb0ed9615d1d1fc45ef78 + React-debug: 931ca94abd6b1bcab539e356e20df788afecae8f + React-defaultsnativemodule: 6afc2dd3619bac12dc54c1ee939bf14f9aa96b42 + React-domnativemodule: f140d46f6f3c3f1efc987c98b464fcbece0cc93a + React-Fabric: e1774fe4b579e34c2c5721e9351c8ce869e7b5f0 + React-FabricComponents: 528ff9f96d150379ed404221d70cc7019ca76865 + React-FabricImage: 31680b7ddc740e040277176fbd6541fcf0fd44af + React-featureflags: 7c7a74b65ee5a228f520b387ebfe0e8d9cecc622 + React-featureflagsnativemodule: dd3450366b1c9557975e457ce6baa151ccee84da + React-graphics: 7f0d3e06d356e8476bd8ba95d90762fc01138ebc + React-hermes: f83fafe6a1c845dace7abad4a5d7366cbb42ab96 + React-idlecallbacksnativemodule: 14ce331438e2bca7d464a8a211b14543aff4dc91 + React-ImageManager: 2b9274ea973f43597a554a182d7ef525836172c6 + React-jserrorhandler: 3b521485275d295cfc6ec6bfa921a1d608693ecf + React-jsi: fd23c1d759feb709784fd4c835b510b90a94dd12 + React-jsiexecutor: 74628d57accc03d4b5df53db813ef6dcd704c9ae + React-jsinspector: 89a1e27e97c762de81bd4b9cb1314750304bba38 + React-jsitracing: 11b6646d7b2ecdc7a475f65b2cb12d3805964195 + React-logger: 26155dc23db5c9038794db915f80bd2044512c2e + React-Mapbuffer: ad1ba0205205a16dbff11b8ade6d1b3959451658 + React-microtasksnativemodule: e771eb9eb6ace5884ee40a293a0e14a9d7a4343c + react-native-executorch: 8c4110f47d9f3aa234915ecb883a0e16159cab49 + react-native-image-picker: e7331948589e764ecd5a9c715c3fc14d4e6187e6 + react-native-safe-area-context: 26a64672a8d76556e54682ab5aa0a6b6798d8a8e + React-nativeconfig: aeed6e2a8ac02b2df54476afcc7c663416c12bf7 + React-NativeModulesApple: c5b7813da94136f50ef084fa1ac077332dcfc658 + React-perflogger: 6afb7eebf7d9521cc70481688ccddf212970e9d3 + React-performancetimeline: 81884d35896b22d51832e7c8748c8330ec73c491 + React-RCTActionSheet: c940a35d71686941ac2b96dd07bde11ea0f0c34f + React-RCTAnimation: e1dbb4e530d6f58437ab2fae372de3788ecdffab + React-RCTAppDelegate: f9825950ac2c52ae1cf46b648bb362b86b62fe41 + React-RCTBlob: 9cdac4721a76e2d132fb1760eafd0a8f150d1c96 + React-RCTFabric: c0aa01a448bcebb1326d068ed7545eb11561e663 + React-RCTImage: f09f5165807e1a69a2bbac6c7168a8ed57ed4e26 + React-RCTLinking: 4ea06b79cba7e15d8af4d86b1dcede6bd29a47fd + React-RCTNetwork: 43a38148c7a4a2380e76b08f07f02ee8eaac8965 + React-RCTSettings: cc60bb6b38eed0683696b5ddf45b0a4a1441147b + React-RCTText: fbe5e6e886beefd5d432790bc50b7aa2b6504264 + React-RCTVibration: 061dbf7a0a1e77bfc1c4672e7be6884dc12f18bf + React-rendererconsistency: 52b471890a1946991f2db81aa6867b14d93f4ea5 + React-rendererdebug: 3f63479f704e266a3bf104c897315a885c72859b + React-rncore: 33ea67bfd2eeaa4f4a0c9e0e8bd55e9b7ccb9faa + React-RuntimeApple: bcd91a191637ab5895593135de74ac54bf88df5d + React-RuntimeCore: 3a42a7f12f5f6cc4cb0e22446540165d204d7a15 + React-runtimeexecutor: db3f17084ee7b71ab84912c527d428cc3a137841 + React-RuntimeHermes: 91bcd6aeec4bab20cebd33cb8984e3825ccdc77e + React-runtimescheduler: 92a5a092ded9a9aaac765ac940d26b52bac48901 + React-timing: 54693ad0872f64127f7cb41675b1be4fd28ea4dc + React-utils: 2bcaf4f4dfe361344bce2fae428603d518488630 + ReactCodegen: ae99a130606068ed40d1d9c0d5f25fda142a0647 + ReactCommon: 89c87b343deacc8610b099ac764848f0ce937e3e + RNAudioAPI: f814d97e85004b5869c6d53d5e321a45663872eb + RNDeviceInfo: feea80a690d2bde1fe51461cf548039258bd03f2 + RNLiveAudioStream: 02584d52711b6b9f268cb371a4b1bdd76ab3e079 + RNReanimated: a41aa31f84a4d787d165125e5c874a2057154315 + RNSVG: 2df153c20fffef75a099c23836cd5e9ecba386fe + SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 + Yoga: 3deb2471faa9916c8a82dda2a22d3fba2620ad37 + +PODFILE CHECKSUM: 8264e1ef5c1c85c206e4efb2c2c7e7b66ab269ed + +COCOAPODS: 1.15.2 diff --git a/examples/speech-to-text/ios/Podfile.properties.json b/examples/speech-to-text/ios/Podfile.properties.json new file mode 100644 index 0000000000..417e2e5ab4 --- /dev/null +++ b/examples/speech-to-text/ios/Podfile.properties.json @@ -0,0 +1,5 @@ +{ + "expo.jsEngine": "hermes", + "EX_DEV_CLIENT_NETWORK_INSPECTOR": "true", + "newArchEnabled": "true" +} diff --git a/examples/speech-to-text/ios/speechtotext.xcodeproj/project.pbxproj b/examples/speech-to-text/ios/speechtotext.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..313e7478c4 --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext.xcodeproj/project.pbxproj @@ -0,0 +1,566 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 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 */; }; + 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */; }; + 96905EF65AED1B983A6B3ABC /* libPods-speechtotext.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-speechtotext.a */; }; + 9F3B98C038534BAFAC7ED6E6 /* noop-file.swift in Sources */ = {isa = PBXBuildFile; fileRef = F52C8F6606CD43269C90280F /* noop-file.swift */; }; + B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */; }; + BB2F792D24A3F905000567C9 /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = BB2F792C24A3F905000567C9 /* Expo.plist */; }; + EAFC4704ECBBC7382D91CFB1 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = C4D875486D112A3239CE6AB1 /* PrivacyInfo.xcprivacy */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 13B07F961A680F5B00A75B9A /* speechtotext.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = speechtotext.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = speechtotext/AppDelegate.h; sourceTree = ""; }; + 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = speechtotext/AppDelegate.mm; sourceTree = ""; }; + 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = speechtotext/Images.xcassets; sourceTree = ""; }; + 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = speechtotext/Info.plist; sourceTree = ""; }; + 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = speechtotext/main.m; sourceTree = ""; }; + 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-speechtotext.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-speechtotext.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 6C2E3173556A471DD304B334 /* Pods-speechtotext.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-speechtotext.debug.xcconfig"; path = "Target Support Files/Pods-speechtotext/Pods-speechtotext.debug.xcconfig"; sourceTree = ""; }; + 7A4D352CD337FB3A3BF06240 /* Pods-speechtotext.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-speechtotext.release.xcconfig"; path = "Target Support Files/Pods-speechtotext/Pods-speechtotext.release.xcconfig"; sourceTree = ""; }; + 7E2F4A0A999B4D66B0D04576 /* speechtotext-Bridging-Header.h */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.c.h; name = "speechtotext-Bridging-Header.h"; path = "speechtotext/speechtotext-Bridging-Header.h"; sourceTree = ""; }; + AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = speechtotext/SplashScreen.storyboard; sourceTree = ""; }; + BB2F792C24A3F905000567C9 /* Expo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = ""; }; + C4D875486D112A3239CE6AB1 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = speechtotext/PrivacyInfo.xcprivacy; sourceTree = ""; }; + ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; + F52C8F6606CD43269C90280F /* noop-file.swift */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.swift; name = "noop-file.swift"; path = "speechtotext/noop-file.swift"; sourceTree = ""; }; + FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-speechtotext/ExpoModulesProvider.swift"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 96905EF65AED1B983A6B3ABC /* libPods-speechtotext.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 13B07FAE1A68108700A75B9A /* speechtotext */ = { + isa = PBXGroup; + children = ( + BB2F792B24A3F905000567C9 /* Supporting */, + 13B07FAF1A68108700A75B9A /* AppDelegate.h */, + 13B07FB01A68108700A75B9A /* AppDelegate.mm */, + 13B07FB51A68108700A75B9A /* Images.xcassets */, + 13B07FB61A68108700A75B9A /* Info.plist */, + 13B07FB71A68108700A75B9A /* main.m */, + AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */, + F52C8F6606CD43269C90280F /* noop-file.swift */, + 7E2F4A0A999B4D66B0D04576 /* speechtotext-Bridging-Header.h */, + C4D875486D112A3239CE6AB1 /* PrivacyInfo.xcprivacy */, + ); + name = speechtotext; + sourceTree = ""; + }; + 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { + isa = PBXGroup; + children = ( + ED297162215061F000B7C4FE /* JavaScriptCore.framework */, + 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-speechtotext.a */, + ); + name = Frameworks; + sourceTree = ""; + }; + 832341AE1AAA6A7D00B99B32 /* Libraries */ = { + isa = PBXGroup; + children = ( + ); + name = Libraries; + sourceTree = ""; + }; + 83CBB9F61A601CBA00E9B192 = { + isa = PBXGroup; + children = ( + 13B07FAE1A68108700A75B9A /* speechtotext */, + 832341AE1AAA6A7D00B99B32 /* Libraries */, + 83CBBA001A601CBA00E9B192 /* Products */, + 2D16E6871FA4F8E400B85C8A /* Frameworks */, + D65327D7A22EEC0BE12398D9 /* Pods */, + D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */, + ); + indentWidth = 2; + sourceTree = ""; + tabWidth = 2; + usesTabs = 0; + }; + 83CBBA001A601CBA00E9B192 /* Products */ = { + isa = PBXGroup; + children = ( + 13B07F961A680F5B00A75B9A /* speechtotext.app */, + ); + name = Products; + sourceTree = ""; + }; + 92DBD88DE9BF7D494EA9DA96 /* speechtotext */ = { + isa = PBXGroup; + children = ( + FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */, + ); + name = speechtotext; + sourceTree = ""; + }; + BB2F792B24A3F905000567C9 /* Supporting */ = { + isa = PBXGroup; + children = ( + BB2F792C24A3F905000567C9 /* Expo.plist */, + ); + name = Supporting; + path = speechtotext/Supporting; + sourceTree = ""; + }; + D65327D7A22EEC0BE12398D9 /* Pods */ = { + isa = PBXGroup; + children = ( + 6C2E3173556A471DD304B334 /* Pods-speechtotext.debug.xcconfig */, + 7A4D352CD337FB3A3BF06240 /* Pods-speechtotext.release.xcconfig */, + ); + path = Pods; + sourceTree = ""; + }; + D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */ = { + isa = PBXGroup; + children = ( + 92DBD88DE9BF7D494EA9DA96 /* speechtotext */, + ); + name = ExpoModulesProviders; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 13B07F861A680F5B00A75B9A /* speechtotext */ = { + isa = PBXNativeTarget; + buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "speechtotext" */; + buildPhases = ( + 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */, + 0A0764E9961752F5510D1461 /* [Expo] Configure project */, + 13B07F871A680F5B00A75B9A /* Sources */, + 13B07F8C1A680F5B00A75B9A /* Frameworks */, + 13B07F8E1A680F5B00A75B9A /* Resources */, + 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, + 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */, + 1F814A3EEE7328BDDB1E171D /* [CP] Embed Pods Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = speechtotext; + productName = speechtotext; + productReference = 13B07F961A680F5B00A75B9A /* speechtotext.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 83CBB9F71A601CBA00E9B192 /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 1130; + TargetAttributes = { + 13B07F861A680F5B00A75B9A = { + DevelopmentTeam = ND24MXDQ9M; + LastSwiftMigration = 1250; + ProvisioningStyle = Automatic; + }; + }; + }; + buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "speechtotext" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 83CBB9F61A601CBA00E9B192; + productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 13B07F861A680F5B00A75B9A /* speechtotext */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 13B07F8E1A680F5B00A75B9A /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BB2F792D24A3F905000567C9 /* Expo.plist in Resources */, + 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, + 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */, + EAFC4704ECBBC7382D91CFB1 /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Bundle React Native code and images"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\nif [[ \"$CONFIGURATION\" = *Debug* ]]; then\n export SKIP_BUNDLING=1\nfi\nif [[ -z \"$ENTRY_FILE\" ]]; then\n # Set the entry JS file using the bundler's entry resolution.\n export ENTRY_FILE=\"$(\"$NODE_BINARY\" -e \"require('expo/scripts/resolveAppEntry')\" \"$PROJECT_ROOT\" ios absolute | tail -n 1)\"\nfi\n\nif [[ -z \"$CLI_PATH\" ]]; then\n # Use Expo CLI\n export CLI_PATH=\"$(\"$NODE_BINARY\" --print \"require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })\")\"\nfi\nif [[ -z \"$BUNDLE_COMMAND\" ]]; then\n # Default Expo CLI command for bundling\n export BUNDLE_COMMAND=\"export:embed\"\nfi\n\n# Source .xcode.env.updates if it exists to allow\n# SKIP_BUNDLING to be unset if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.updates\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.updates\"\nfi\n# Source local changes to allow overrides\n# if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n\n"; + }; + 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-speechtotext-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + 0A0764E9961752F5510D1461 /* [Expo] Configure project */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + name = "[Expo] Configure project"; + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# This script configures Expo modules and generates the modules provider file.\nbash -l -c \"./Pods/Target\\ Support\\ Files/Pods-speechtotext/expo-configure-project.sh\"\n"; + }; + 1F814A3EEE7328BDDB1E171D /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-speechtotext/Pods-speechtotext-frameworks.sh", + "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes", + "${PODS_XCFRAMEWORKS_BUILD_DIR}/react-native-executorch/ExecutorchLib.framework/ExecutorchLib", + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ExecutorchLib.framework", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-speechtotext/Pods-speechtotext-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-speechtotext/Pods-speechtotext-resources.sh", + "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/ExpoConstants_privacy.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/ExpoFileSystem/ExpoFileSystem_privacy.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly/RCT-Folly_privacy.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo/RNDeviceInfoPrivacyInfo.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/RNSVG/RNSVGFilters.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/React-Core_privacy.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact/React-cxxreact_privacy.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/boost/boost_privacy.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/glog/glog_privacy.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/react-native-image-picker/RNImagePickerPrivacyInfo.bundle", + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoConstants_privacy.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoFileSystem_privacy.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCT-Folly_privacy.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNDeviceInfoPrivacyInfo.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNSVGFilters.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-Core_privacy.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-cxxreact_privacy.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/boost_privacy.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/glog_privacy.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNImagePickerPrivacyInfo.bundle", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-speechtotext/Pods-speechtotext-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 13B07F871A680F5B00A75B9A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */, + 13B07FC11A68108700A75B9A /* main.m in Sources */, + B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */, + 9F3B98C038534BAFAC7ED6E6 /* noop-file.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 13B07F941A680F5B00A75B9A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6C2E3173556A471DD304B334 /* Pods-speechtotext.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = speechtotext/speechtotext.entitlements; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = ND24MXDQ9M; + ENABLE_BITCODE = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "FB_SONARKIT_ENABLED=1", + ); + INFOPLIST_FILE = speechtotext/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 15.1; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + OTHER_LDFLAGS = ( + "$(inherited)", + "-ObjC", + "-lc++", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG"; + PRODUCT_BUNDLE_IDENTIFIER = com.anonymous.speechtotext; + PRODUCT_NAME = "speechtotext"; + SWIFT_OBJC_BRIDGING_HEADER = "speechtotext/speechtotext-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 13B07F951A680F5B00A75B9A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7A4D352CD337FB3A3BF06240 /* Pods-speechtotext.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = speechtotext/speechtotext.entitlements; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = ND24MXDQ9M; + INFOPLIST_FILE = speechtotext/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 15.1; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + OTHER_LDFLAGS = ( + "$(inherited)", + "-ObjC", + "-lc++", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE"; + PRODUCT_BUNDLE_IDENTIFIER = com.anonymous.speechtotext; + PRODUCT_NAME = "speechtotext"; + SWIFT_OBJC_BRIDGING_HEADER = "speechtotext/speechtotext-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; + 83CBBA201A601CBA00E9B192 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_CXX_LANGUAGE_STANDARD = "c++20"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 15.1; + LD_RUNPATH_SEARCH_PATHS = ( + /usr/lib/swift, + "$(inherited)", + ); + LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\""; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + OTHER_LDFLAGS = ( + "$(inherited)", + " ", + ); + REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG"; + USE_HERMES = true; + }; + name = Debug; + }; + 83CBBA211A601CBA00E9B192 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_CXX_LANGUAGE_STANDARD = "c++20"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = YES; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 15.1; + LD_RUNPATH_SEARCH_PATHS = ( + /usr/lib/swift, + "$(inherited)", + ); + LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\""; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ( + "$(inherited)", + " ", + ); + REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; + SDKROOT = iphoneos; + USE_HERMES = true; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "speechtotext" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 13B07F941A680F5B00A75B9A /* Debug */, + 13B07F951A680F5B00A75B9A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "speechtotext" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 83CBBA201A601CBA00E9B192 /* Debug */, + 83CBBA211A601CBA00E9B192 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; +} diff --git a/examples/speech-to-text/ios/speechtotext.xcodeproj/xcshareddata/xcschemes/speechtotext.xcscheme b/examples/speech-to-text/ios/speechtotext.xcodeproj/xcshareddata/xcschemes/speechtotext.xcscheme new file mode 100644 index 0000000000..19b7f89f6a --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext.xcodeproj/xcshareddata/xcschemes/speechtotext.xcscheme @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/speech-to-text/ios/speechtotext.xcworkspace/contents.xcworkspacedata b/examples/speech-to-text/ios/speechtotext.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000000..a85833bc39 --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/examples/speech-to-text/ios/speechtotext/AppDelegate.h b/examples/speech-to-text/ios/speechtotext/AppDelegate.h new file mode 100644 index 0000000000..1658a437eb --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext/AppDelegate.h @@ -0,0 +1,7 @@ +#import +#import +#import + +@interface AppDelegate : EXAppDelegateWrapper + +@end diff --git a/examples/speech-to-text/ios/speechtotext/AppDelegate.mm b/examples/speech-to-text/ios/speechtotext/AppDelegate.mm new file mode 100644 index 0000000000..b27f83286d --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext/AppDelegate.mm @@ -0,0 +1,62 @@ +#import "AppDelegate.h" + +#import +#import + +@implementation AppDelegate + +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions +{ + self.moduleName = @"main"; + + // You can add your custom initial props in the dictionary below. + // They will be passed down to the ViewController used by React Native. + self.initialProps = @{}; + + return [super application:application didFinishLaunchingWithOptions:launchOptions]; +} + +- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge +{ + return [self bundleURL]; +} + +- (NSURL *)bundleURL +{ +#if DEBUG + return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@".expo/.virtual-metro-entry"]; +#else + return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; +#endif +} + +// Linking API +- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary *)options { + return [super application:application openURL:url options:options] || [RCTLinkingManager application:application openURL:url options:options]; +} + +// Universal Links +- (BOOL)application:(UIApplication *)application continueUserActivity:(nonnull NSUserActivity *)userActivity restorationHandler:(nonnull void (^)(NSArray> * _Nullable))restorationHandler { + BOOL result = [RCTLinkingManager application:application continueUserActivity:userActivity restorationHandler:restorationHandler]; + return [super application:application continueUserActivity:userActivity restorationHandler:restorationHandler] || result; +} + +// Explicitly define remote notification delegates to ensure compatibility with some third-party libraries +- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken +{ + return [super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken]; +} + +// Explicitly define remote notification delegates to ensure compatibility with some third-party libraries +- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error +{ + return [super application:application didFailToRegisterForRemoteNotificationsWithError:error]; +} + +// Explicitly define remote notification delegates to ensure compatibility with some third-party libraries +- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler +{ + return [super application:application didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler]; +} + +@end diff --git a/examples/speech-to-text/ios/speechtotext/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png b/examples/speech-to-text/ios/speechtotext/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png new file mode 100644 index 0000000000..2732229faf Binary files /dev/null and b/examples/speech-to-text/ios/speechtotext/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png differ diff --git a/examples/speech-to-text/ios/speechtotext/Images.xcassets/AppIcon.appiconset/Contents.json b/examples/speech-to-text/ios/speechtotext/Images.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000000..90d8d4c2a9 --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext/Images.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,14 @@ +{ + "images": [ + { + "filename": "App-Icon-1024x1024@1x.png", + "idiom": "universal", + "platform": "ios", + "size": "1024x1024" + } + ], + "info": { + "version": 1, + "author": "expo" + } +} \ No newline at end of file diff --git a/examples/speech-to-text/ios/speechtotext/Images.xcassets/Contents.json b/examples/speech-to-text/ios/speechtotext/Images.xcassets/Contents.json new file mode 100644 index 0000000000..ed285c2e5f --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext/Images.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "version" : 1, + "author" : "expo" + } +} diff --git a/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenBackground.colorset/Contents.json b/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenBackground.colorset/Contents.json new file mode 100644 index 0000000000..15f02abee4 --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenBackground.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors": [ + { + "color": { + "components": { + "alpha": "1.000", + "blue": "1.00000000000000", + "green": "1.00000000000000", + "red": "1.00000000000000" + }, + "color-space": "srgb" + }, + "idiom": "universal" + } + ], + "info": { + "version": 1, + "author": "expo" + } +} \ No newline at end of file diff --git a/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenLogo.imageset/Contents.json b/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenLogo.imageset/Contents.json new file mode 100644 index 0000000000..f65c008be7 --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenLogo.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images": [ + { + "idiom": "universal", + "filename": "image.png", + "scale": "1x" + }, + { + "idiom": "universal", + "filename": "image@2x.png", + "scale": "2x" + }, + { + "idiom": "universal", + "filename": "image@3x.png", + "scale": "3x" + } + ], + "info": { + "version": 1, + "author": "expo" + } +} \ No newline at end of file diff --git a/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenLogo.imageset/image.png b/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenLogo.imageset/image.png new file mode 100644 index 0000000000..b9ff0fcbfe Binary files /dev/null and b/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenLogo.imageset/image.png differ diff --git a/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenLogo.imageset/image@2x.png b/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenLogo.imageset/image@2x.png new file mode 100644 index 0000000000..b9ff0fcbfe Binary files /dev/null and b/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenLogo.imageset/image@2x.png differ diff --git a/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenLogo.imageset/image@3x.png b/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenLogo.imageset/image@3x.png new file mode 100644 index 0000000000..b9ff0fcbfe Binary files /dev/null and b/examples/speech-to-text/ios/speechtotext/Images.xcassets/SplashScreenLogo.imageset/image@3x.png differ diff --git a/examples/speech-to-text/ios/speechtotext/Info.plist b/examples/speech-to-text/ios/speechtotext/Info.plist new file mode 100644 index 0000000000..68fd0c0348 --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext/Info.plist @@ -0,0 +1,76 @@ + + + + + CADisableMinimumFrameDurationOnPhone + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + speech-to-text + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + $(PRODUCT_BUNDLE_PACKAGE_TYPE) + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleURLTypes + + + CFBundleURLSchemes + + com.anonymous.speechtotext + + + + CFBundleVersion + 1 + LSMinimumSystemVersion + 12.0 + LSRequiresIPhoneOS + + NSAppTransportSecurity + + NSAllowsArbitraryLoads + + NSAllowsLocalNetworking + + + NSMicrophoneUsageDescription + We need your permission to use the microphone. + UILaunchStoryboardName + SplashScreen + UIRequiredDeviceCapabilities + + arm64 + + UIRequiresFullScreen + + UIStatusBarStyle + UIStatusBarStyleDefault + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIUserInterfaceStyle + Light + UIViewControllerBasedStatusBarAppearance + + + \ No newline at end of file diff --git a/examples/speech-to-text/ios/speechtotext/PrivacyInfo.xcprivacy b/examples/speech-to-text/ios/speechtotext/PrivacyInfo.xcprivacy new file mode 100644 index 0000000000..5bb83c5d43 --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext/PrivacyInfo.xcprivacy @@ -0,0 +1,48 @@ + + + + + NSPrivacyAccessedAPITypes + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryUserDefaults + NSPrivacyAccessedAPITypeReasons + + CA92.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryFileTimestamp + NSPrivacyAccessedAPITypeReasons + + 0A2A.1 + 3B52.1 + C617.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryDiskSpace + NSPrivacyAccessedAPITypeReasons + + E174.1 + 85F4.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategorySystemBootTime + NSPrivacyAccessedAPITypeReasons + + 35F9.1 + + + + NSPrivacyCollectedDataTypes + + NSPrivacyTracking + + + diff --git a/examples/speech-to-text/ios/speechtotext/SplashScreen.storyboard b/examples/speech-to-text/ios/speechtotext/SplashScreen.storyboard new file mode 100644 index 0000000000..8a6fcd47bc --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext/SplashScreen.storyboard @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/speech-to-text/ios/speechtotext/Supporting/Expo.plist b/examples/speech-to-text/ios/speechtotext/Supporting/Expo.plist new file mode 100644 index 0000000000..750be020cf --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext/Supporting/Expo.plist @@ -0,0 +1,12 @@ + + + + + EXUpdatesCheckOnLaunch + ALWAYS + EXUpdatesEnabled + + EXUpdatesLaunchWaitMs + 0 + + \ No newline at end of file diff --git a/examples/speech-to-text/ios/speechtotext/main.m b/examples/speech-to-text/ios/speechtotext/main.m new file mode 100644 index 0000000000..25181b6ccb --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext/main.m @@ -0,0 +1,10 @@ +#import + +#import "AppDelegate.h" + +int main(int argc, char * argv[]) { + @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); + } +} + diff --git a/examples/speech-to-text/ios/speechtotext/noop-file.swift b/examples/speech-to-text/ios/speechtotext/noop-file.swift new file mode 100644 index 0000000000..b2ffafbfc6 --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext/noop-file.swift @@ -0,0 +1,4 @@ +// +// @generated +// A blank Swift file must be created for native modules with Swift files to work correctly. +// diff --git a/examples/speech-to-text/ios/speechtotext/speechtotext-Bridging-Header.h b/examples/speech-to-text/ios/speechtotext/speechtotext-Bridging-Header.h new file mode 100644 index 0000000000..e11d920b12 --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext/speechtotext-Bridging-Header.h @@ -0,0 +1,3 @@ +// +// Use this file to import your target's public headers that you would like to expose to Swift. +// diff --git a/examples/speech-to-text/ios/speechtotext/speechtotext.entitlements b/examples/speech-to-text/ios/speechtotext/speechtotext.entitlements new file mode 100644 index 0000000000..f683276c57 --- /dev/null +++ b/examples/speech-to-text/ios/speechtotext/speechtotext.entitlements @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/examples/speech-to-text/metro.config.js b/examples/speech-to-text/metro.config.js new file mode 100644 index 0000000000..f8ab2ab96d --- /dev/null +++ b/examples/speech-to-text/metro.config.js @@ -0,0 +1,21 @@ +// Learn more https://docs.expo.io/guides/customizing-metro +const { getDefaultConfig } = require('expo/metro-config'); + +/** @type {import('expo/metro-config').MetroConfig} */ +const config = getDefaultConfig(__dirname); + +const { transformer, resolver } = config; + +config.transformer = { + ...transformer, + babelTransformerPath: require.resolve('react-native-svg-transformer/expo'), +}; +config.resolver = { + ...resolver, + assetExts: resolver.assetExts.filter((ext) => ext !== 'svg'), + sourceExts: [...resolver.sourceExts, 'svg'], +}; + +config.resolver.assetExts.push('pte'); + +module.exports = config; diff --git a/examples/speech-to-text/package-lock.json b/examples/speech-to-text/package-lock.json new file mode 100644 index 0000000000..b346f7d533 --- /dev/null +++ b/examples/speech-to-text/package-lock.json @@ -0,0 +1,10922 @@ +{ + "name": "speech-to-text", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "speech-to-text", + "version": "1.0.0", + "dependencies": { + "expo": "~52.0.37", + "expo-status-bar": "~2.0.1", + "react": "18.3.1", + "react-native": "0.76.7" + }, + "devDependencies": { + "@babel/core": "^7.25.2", + "@types/react": "~18.3.12", + "typescript": "^5.3.3" + } + }, + "node_modules/@0no-co/graphql.web": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@0no-co/graphql.web/-/graphql.web-1.1.2.tgz", + "integrity": "sha512-N2NGsU5FLBhT8NZ+3l2YrzZSHITjNXNuDhC4iDiikv0IujaJ0Xc6xIxQZ/Ek3Cb+rgPjnLHYyJm11tInuJn+cw==", + "license": "MIT", + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" + }, + "peerDependenciesMeta": { + "graphql": { + "optional": true + } + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz", + "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.9.tgz", + "integrity": "sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==", + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.9", + "@babel/helper-compilation-targets": "^7.26.5", + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helpers": "^7.26.9", + "@babel/parser": "^7.26.9", + "@babel/template": "^7.26.9", + "@babel/traverse": "^7.26.9", + "@babel/types": "^7.26.9", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz", + "integrity": "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz", + "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.26.5", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.26.9.tgz", + "integrity": "sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/helper-replace-supers": "^7.26.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/traverse": "^7.26.9", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz", + "integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "regexpu-core": "^6.2.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz", + "integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", + "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", + "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", + "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", + "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz", + "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-wrap-function": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.26.5.tgz", + "integrity": "sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==", + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/traverse": "^7.26.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", + "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz", + "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.9.tgz", + "integrity": "sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.9.tgz", + "integrity": "sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz", + "integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.26.9" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", + "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", + "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz", + "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", + "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.9.tgz", + "integrity": "sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-syntax-decorators": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-default-from": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.25.9.tgz", + "integrity": "sha512-ykqgwNfSnNOB+C8fV5X4mG3AVmvu+WVxcaU9xHHtBb7PCrPeweMmPjGsn8eMaeJg6SJuoUuZENeeSWaarWqonQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.9.tgz", + "integrity": "sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-default-from": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.25.9.tgz", + "integrity": "sha512-9MhJ/SMTsVqsd69GyQg89lYR4o9T+oDGv5F6IsigxxqFVOyR/IflDLYP8WDI1l8fkhNGGktqkvL5qwNCtGEpgQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.26.0.tgz", + "integrity": "sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", + "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", + "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", + "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", + "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz", + "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.26.8.tgz", + "integrity": "sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.26.5", + "@babel/helper-remap-async-to-generator": "^7.25.9", + "@babel/traverse": "^7.26.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz", + "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-remap-async-to-generator": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.26.5.tgz", + "integrity": "sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.26.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz", + "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", + "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", + "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz", + "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/traverse": "^7.25.9", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz", + "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/template": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz", + "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", + "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", + "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", + "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", + "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz", + "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.26.5.tgz", + "integrity": "sha512-eGK26RsbIkYUns3Y8qKl362juDDYK+wEdPGHGrhzUl6CewZFo55VZ7hg+CyMFU4dd5QQakBN86nBMpRsFpRvbQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.26.5", + "@babel/plugin-syntax-flow": "^7.26.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.26.9.tgz", + "integrity": "sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.26.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz", + "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", + "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz", + "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz", + "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", + "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", + "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", + "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", + "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", + "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", + "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.26.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.26.6.tgz", + "integrity": "sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.26.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz", + "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz", + "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", + "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz", + "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz", + "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz", + "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz", + "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", + "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz", + "integrity": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz", + "integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-syntax-jsx": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz", + "integrity": "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==", + "license": "MIT", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz", + "integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz", + "integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz", + "integrity": "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz", + "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz", + "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", + "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.26.9.tgz", + "integrity": "sha512-Jf+8y9wXQbbxvVYTM8gO5oEF2POdNji0NMltEkG7FtmzD9PVz7/lxpqSdTvwsjTMU5HIHuDVNf2SOxLkWi+wPQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.26.5", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", + "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz", + "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz", + "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.26.8.tgz", + "integrity": "sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.26.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.26.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.26.7.tgz", + "integrity": "sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.26.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.8.tgz", + "integrity": "sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.26.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-syntax-typescript": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", + "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", + "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz", + "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", + "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.9.tgz", + "integrity": "sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/compat-data": "^7.26.8", + "@babel/helper-compilation-targets": "^7.26.5", + "@babel/helper-plugin-utils": "^7.26.5", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.26.0", + "@babel/plugin-syntax-import-attributes": "^7.26.0", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.25.9", + "@babel/plugin-transform-async-generator-functions": "^7.26.8", + "@babel/plugin-transform-async-to-generator": "^7.25.9", + "@babel/plugin-transform-block-scoped-functions": "^7.26.5", + "@babel/plugin-transform-block-scoping": "^7.25.9", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-classes": "^7.25.9", + "@babel/plugin-transform-computed-properties": "^7.25.9", + "@babel/plugin-transform-destructuring": "^7.25.9", + "@babel/plugin-transform-dotall-regex": "^7.25.9", + "@babel/plugin-transform-duplicate-keys": "^7.25.9", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-dynamic-import": "^7.25.9", + "@babel/plugin-transform-exponentiation-operator": "^7.26.3", + "@babel/plugin-transform-export-namespace-from": "^7.25.9", + "@babel/plugin-transform-for-of": "^7.26.9", + "@babel/plugin-transform-function-name": "^7.25.9", + "@babel/plugin-transform-json-strings": "^7.25.9", + "@babel/plugin-transform-literals": "^7.25.9", + "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", + "@babel/plugin-transform-member-expression-literals": "^7.25.9", + "@babel/plugin-transform-modules-amd": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.26.3", + "@babel/plugin-transform-modules-systemjs": "^7.25.9", + "@babel/plugin-transform-modules-umd": "^7.25.9", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-new-target": "^7.25.9", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.26.6", + "@babel/plugin-transform-numeric-separator": "^7.25.9", + "@babel/plugin-transform-object-rest-spread": "^7.25.9", + "@babel/plugin-transform-object-super": "^7.25.9", + "@babel/plugin-transform-optional-catch-binding": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9", + "@babel/plugin-transform-private-methods": "^7.25.9", + "@babel/plugin-transform-private-property-in-object": "^7.25.9", + "@babel/plugin-transform-property-literals": "^7.25.9", + "@babel/plugin-transform-regenerator": "^7.25.9", + "@babel/plugin-transform-regexp-modifiers": "^7.26.0", + "@babel/plugin-transform-reserved-words": "^7.25.9", + "@babel/plugin-transform-shorthand-properties": "^7.25.9", + "@babel/plugin-transform-spread": "^7.25.9", + "@babel/plugin-transform-sticky-regex": "^7.25.9", + "@babel/plugin-transform-template-literals": "^7.26.8", + "@babel/plugin-transform-typeof-symbol": "^7.26.7", + "@babel/plugin-transform-unicode-escapes": "^7.25.9", + "@babel/plugin-transform-unicode-property-regex": "^7.25.9", + "@babel/plugin-transform-unicode-regex": "^7.25.9", + "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.11.0", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.40.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.11.1.tgz", + "integrity": "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.3", + "core-js-compat": "^3.40.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-flow": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.25.9.tgz", + "integrity": "sha512-EASHsAhE+SSlEzJ4bzfusnXSHiU+JfAYzj+jbw2vgQKgq5HrUr8qs+vgtiEL5dOH6sEweI+PNt2D7AqrDSHyqQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-transform-flow-strip-types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.26.3.tgz", + "integrity": "sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-transform-react-display-name": "^7.25.9", + "@babel/plugin-transform-react-jsx": "^7.25.9", + "@babel/plugin-transform-react-jsx-development": "^7.25.9", + "@babel/plugin-transform-react-pure-annotations": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz", + "integrity": "sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==", + "license": "MIT", + "dependencies": { + "@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" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/register": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.25.9.tgz", + "integrity": "sha512-8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA==", + "license": "MIT", + "dependencies": { + "clone-deep": "^4.0.1", + "find-cache-dir": "^2.0.0", + "make-dir": "^2.1.0", + "pirates": "^4.0.6", + "source-map-support": "^0.5.16" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.9.tgz", + "integrity": "sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz", + "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz", + "integrity": "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.9", + "@babel/parser": "^7.26.9", + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.9", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse--for-generate-function-map": { + "name": "@babel/traverse", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz", + "integrity": "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.9", + "@babel/parser": "^7.26.9", + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.9", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", + "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@expo/bunyan": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@expo/bunyan/-/bunyan-4.0.1.tgz", + "integrity": "sha512-+Lla7nYSiHZirgK+U/uYzsLv/X+HaJienbD5AKX1UQZHYfWaP+9uuQluRB4GrEVWF0GZ7vEVp/jzaOT9k/SQlg==", + "license": "MIT", + "dependencies": { + "uuid": "^8.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@expo/cli": { + "version": "0.22.18", + "resolved": "https://registry.npmjs.org/@expo/cli/-/cli-0.22.18.tgz", + "integrity": "sha512-TWGKHWTYU9xE7YETPk2zQzLPl+bldpzZCa0Cqg0QeENpu03ZEnMxUqrgHwrbWGTf7ONTYC1tODBkFCFw/qgPGA==", + "license": "MIT", + "dependencies": { + "@0no-co/graphql.web": "^1.0.8", + "@babel/runtime": "^7.20.0", + "@expo/code-signing-certificates": "^0.0.5", + "@expo/config": "~10.0.10", + "@expo/config-plugins": "~9.0.15", + "@expo/devcert": "^1.1.2", + "@expo/env": "~0.4.2", + "@expo/image-utils": "^0.6.5", + "@expo/json-file": "^9.0.2", + "@expo/metro-config": "~0.19.11", + "@expo/osascript": "^2.1.6", + "@expo/package-manager": "^1.7.2", + "@expo/plist": "^0.2.2", + "@expo/prebuild-config": "^8.0.28", + "@expo/rudder-sdk-node": "^1.1.1", + "@expo/spawn-async": "^1.7.2", + "@expo/ws-tunnel": "^1.0.1", + "@expo/xcpretty": "^4.3.0", + "@react-native/dev-middleware": "0.76.7", + "@urql/core": "^5.0.6", + "@urql/exchange-retry": "^1.3.0", + "accepts": "^1.3.8", + "arg": "^5.0.2", + "better-opn": "~3.0.2", + "bplist-creator": "0.0.7", + "bplist-parser": "^0.3.1", + "cacache": "^18.0.2", + "chalk": "^4.0.0", + "ci-info": "^3.3.0", + "compression": "^1.7.4", + "connect": "^3.7.0", + "debug": "^4.3.4", + "env-editor": "^0.4.1", + "fast-glob": "^3.3.2", + "form-data": "^3.0.1", + "freeport-async": "^2.0.0", + "fs-extra": "~8.1.0", + "getenv": "^1.0.0", + "glob": "^10.4.2", + "internal-ip": "^4.3.0", + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1", + "lodash.debounce": "^4.0.8", + "minimatch": "^3.0.4", + "node-forge": "^1.3.1", + "npm-package-arg": "^11.0.0", + "ora": "^3.4.0", + "picomatch": "^3.0.1", + "pretty-bytes": "^5.6.0", + "pretty-format": "^29.7.0", + "progress": "^2.0.3", + "prompts": "^2.3.2", + "qrcode-terminal": "0.11.0", + "require-from-string": "^2.0.2", + "requireg": "^0.2.2", + "resolve": "^1.22.2", + "resolve-from": "^5.0.0", + "resolve.exports": "^2.0.3", + "semver": "^7.6.0", + "send": "^0.19.0", + "slugify": "^1.3.4", + "source-map-support": "~0.5.21", + "stacktrace-parser": "^0.1.10", + "structured-headers": "^0.4.1", + "tar": "^6.2.1", + "temp-dir": "^2.0.0", + "tempy": "^0.7.1", + "terminal-link": "^2.1.1", + "undici": "^6.18.2", + "unique-string": "~2.0.0", + "wrap-ansi": "^7.0.0", + "ws": "^8.12.1" + }, + "bin": { + "expo-internal": "build/bin/cli" + } + }, + "node_modules/@expo/cli/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/code-signing-certificates": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.5.tgz", + "integrity": "sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==", + "license": "MIT", + "dependencies": { + "node-forge": "^1.2.1", + "nullthrows": "^1.1.1" + } + }, + "node_modules/@expo/config": { + "version": "10.0.10", + "resolved": "https://registry.npmjs.org/@expo/config/-/config-10.0.10.tgz", + "integrity": "sha512-wI9/iam3Irk99ADGM/FyD7YrrEibIZXR4huSZiU5zt9o3dASOKhqepiNJex4YPiktLfKhYrpSEJtwno1g0SrgA==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "~7.10.4", + "@expo/config-plugins": "~9.0.15", + "@expo/config-types": "^52.0.4", + "@expo/json-file": "^9.0.2", + "deepmerge": "^4.3.1", + "getenv": "^1.0.0", + "glob": "^10.4.2", + "require-from-string": "^2.0.2", + "resolve-from": "^5.0.0", + "resolve-workspace-root": "^2.0.0", + "semver": "^7.6.0", + "slugify": "^1.3.4", + "sucrase": "3.35.0" + } + }, + "node_modules/@expo/config-plugins": { + "version": "9.0.16", + "resolved": "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-9.0.16.tgz", + "integrity": "sha512-AnJzmFB7ztM0JZBn+Ut6BQYC2WeGDzfIhBZVOIPMQbdBqvwJ7TmFEsGTGSxdwU/VqJaJK2sWxyt1zbWkpIYCEA==", + "license": "MIT", + "dependencies": { + "@expo/config-types": "^52.0.5", + "@expo/json-file": "~9.0.2", + "@expo/plist": "^0.2.2", + "@expo/sdk-runtime-versions": "^1.0.0", + "chalk": "^4.1.2", + "debug": "^4.3.5", + "getenv": "^1.0.0", + "glob": "^10.4.2", + "resolve-from": "^5.0.0", + "semver": "^7.5.4", + "slash": "^3.0.0", + "slugify": "^1.6.6", + "xcode": "^3.0.1", + "xml2js": "0.6.0" + } + }, + "node_modules/@expo/config-plugins/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/config-types": { + "version": "52.0.5", + "resolved": "https://registry.npmjs.org/@expo/config-types/-/config-types-52.0.5.tgz", + "integrity": "sha512-AMDeuDLHXXqd8W+0zSjIt7f37vUd/BP8p43k68NHpyAvQO+z8mbQZm3cNQVAMySeayK2XoPigAFB1JF2NFajaA==", + "license": "MIT" + }, + "node_modules/@expo/config/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@expo/config/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/devcert": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.1.4.tgz", + "integrity": "sha512-fqBODr8c72+gBSX5Ty3SIzaY4bXainlpab78+vEYEKL3fXmsOswMLf0+KE36mUEAa36BYabX7K3EiXOXX5OPMw==", + "license": "MIT", + "dependencies": { + "application-config-path": "^0.1.0", + "command-exists": "^1.2.4", + "debug": "^3.1.0", + "eol": "^0.9.1", + "get-port": "^3.2.0", + "glob": "^10.4.2", + "lodash": "^4.17.21", + "mkdirp": "^0.5.1", + "password-prompt": "^1.0.4", + "sudo-prompt": "^8.2.0", + "tmp": "^0.0.33", + "tslib": "^2.4.0" + } + }, + "node_modules/@expo/devcert/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/@expo/env": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@expo/env/-/env-0.4.2.tgz", + "integrity": "sha512-TgbCgvSk0Kq0e2fLoqHwEBL4M0ztFjnBEz0YCDm5boc1nvkV1VMuIMteVdeBwnTh8Z0oPJTwHCD49vhMEt1I6A==", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "debug": "^4.3.4", + "dotenv": "~16.4.5", + "dotenv-expand": "~11.0.6", + "getenv": "^1.0.0" + } + }, + "node_modules/@expo/fingerprint": { + "version": "0.11.11", + "resolved": "https://registry.npmjs.org/@expo/fingerprint/-/fingerprint-0.11.11.tgz", + "integrity": "sha512-gNyn1KnAOpEa8gSNsYqXMTcq0fSwqU/vit6fP5863vLSKxHm/dNt/gm/uZJxrRZxKq71KUJWF6I7d3z8qIfq5g==", + "license": "MIT", + "dependencies": { + "@expo/spawn-async": "^1.7.2", + "arg": "^5.0.2", + "chalk": "^4.1.2", + "debug": "^4.3.4", + "find-up": "^5.0.0", + "getenv": "^1.0.0", + "minimatch": "^3.0.4", + "p-limit": "^3.1.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0" + }, + "bin": { + "fingerprint": "bin/cli.js" + } + }, + "node_modules/@expo/fingerprint/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/image-utils": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.6.5.tgz", + "integrity": "sha512-RsS/1CwJYzccvlprYktD42KjyfWZECH6PPIEowvoSmXfGLfdViwcUEI4RvBfKX5Jli6P67H+6YmHvPTbGOboew==", + "license": "MIT", + "dependencies": { + "@expo/spawn-async": "^1.7.2", + "chalk": "^4.0.0", + "fs-extra": "9.0.0", + "getenv": "^1.0.0", + "jimp-compact": "0.16.1", + "parse-png": "^2.1.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "temp-dir": "~2.0.0", + "unique-string": "~2.0.0" + } + }, + "node_modules/@expo/image-utils/node_modules/fs-extra": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.0.tgz", + "integrity": "sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^1.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/image-utils/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@expo/image-utils/node_modules/jsonfile/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@expo/image-utils/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/image-utils/node_modules/universalify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz", + "integrity": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@expo/json-file": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/@expo/json-file/-/json-file-9.0.2.tgz", + "integrity": "sha512-yAznIUrybOIWp3Uax7yRflB0xsEpvIwIEqIjao9SGi2Gaa+N0OamWfe0fnXBSWF+2zzF4VvqwT4W5zwelchfgw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "~7.10.4", + "json5": "^2.2.3", + "write-file-atomic": "^2.3.0" + } + }, + "node_modules/@expo/json-file/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@expo/metro-config": { + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.19.11.tgz", + "integrity": "sha512-XaobHTcsoHQdKEH7PI/DIpr2QiugkQmPYolbfzkpSJMplNWfSh+cTRjrm4//mS2Sb78qohtu0u2CGJnFqFUGag==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.5", + "@babel/parser": "^7.20.0", + "@babel/types": "^7.20.0", + "@expo/config": "~10.0.10", + "@expo/env": "~0.4.2", + "@expo/json-file": "~9.0.2", + "@expo/spawn-async": "^1.7.2", + "chalk": "^4.1.0", + "debug": "^4.3.2", + "fs-extra": "^9.1.0", + "getenv": "^1.0.0", + "glob": "^10.4.2", + "jsc-safe-url": "^0.2.4", + "lightningcss": "~1.27.0", + "minimatch": "^3.0.4", + "postcss": "~8.4.32", + "resolve-from": "^5.0.0" + } + }, + "node_modules/@expo/metro-config/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/metro-config/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@expo/metro-config/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@expo/osascript": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@expo/osascript/-/osascript-2.1.6.tgz", + "integrity": "sha512-SbMp4BUwDAKiFF4zZEJf32rRYMeNnLK9u4FaPo0lQRer60F+SKd20NTSys0wgssiVeQyQz2OhGLRx3cxYowAGw==", + "license": "MIT", + "dependencies": { + "@expo/spawn-async": "^1.7.2", + "exec-async": "^2.2.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@expo/package-manager": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/@expo/package-manager/-/package-manager-1.7.2.tgz", + "integrity": "sha512-wT/qh9ebNjl6xr00bYkSh93b6E/78J3JPlT6WzGbxbsnv5FIZKB/nr522oWqVe1E+ML7BpXs8WugErWDN9kOFg==", + "license": "MIT", + "dependencies": { + "@expo/json-file": "^9.0.2", + "@expo/spawn-async": "^1.7.2", + "ansi-regex": "^5.0.0", + "chalk": "^4.0.0", + "find-up": "^5.0.0", + "js-yaml": "^3.13.1", + "micromatch": "^4.0.8", + "npm-package-arg": "^11.0.0", + "ora": "^3.4.0", + "resolve-workspace-root": "^2.0.0", + "split": "^1.0.1", + "sudo-prompt": "9.1.1" + } + }, + "node_modules/@expo/package-manager/node_modules/sudo-prompt": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.1.1.tgz", + "integrity": "sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", + "license": "MIT" + }, + "node_modules/@expo/plist": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@expo/plist/-/plist-0.2.2.tgz", + "integrity": "sha512-ZZGvTO6vEWq02UAPs3LIdja+HRO18+LRI5QuDl6Hs3Ps7KX7xU6Y6kjahWKY37Rx2YjNpX07dGpBFzzC+vKa2g==", + "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "~0.7.7", + "base64-js": "^1.2.3", + "xmlbuilder": "^14.0.0" + } + }, + "node_modules/@expo/prebuild-config": { + "version": "8.0.28", + "resolved": "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-8.0.28.tgz", + "integrity": "sha512-SDDgCKKS1wFNNm3de2vBP8Q5bnxcabuPDE9Mnk9p7Gb4qBavhwMbAtrLcAyZB+WRb4QM+yan3z3K95vvCfI/+A==", + "license": "MIT", + "dependencies": { + "@expo/config": "~10.0.10", + "@expo/config-plugins": "~9.0.15", + "@expo/config-types": "^52.0.4", + "@expo/image-utils": "^0.6.5", + "@expo/json-file": "^9.0.2", + "@react-native/normalize-colors": "0.76.7", + "debug": "^4.3.1", + "fs-extra": "^9.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "xml2js": "0.6.0" + } + }, + "node_modules/@expo/prebuild-config/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/prebuild-config/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@expo/prebuild-config/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/prebuild-config/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@expo/rudder-sdk-node": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@expo/rudder-sdk-node/-/rudder-sdk-node-1.1.1.tgz", + "integrity": "sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==", + "license": "MIT", + "dependencies": { + "@expo/bunyan": "^4.0.0", + "@segment/loosely-validate-event": "^2.0.0", + "fetch-retry": "^4.1.1", + "md5": "^2.2.1", + "node-fetch": "^2.6.1", + "remove-trailing-slash": "^0.1.0", + "uuid": "^8.3.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@expo/sdk-runtime-versions": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@expo/sdk-runtime-versions/-/sdk-runtime-versions-1.0.0.tgz", + "integrity": "sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==", + "license": "MIT" + }, + "node_modules/@expo/spawn-async": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/@expo/spawn-async/-/spawn-async-1.7.2.tgz", + "integrity": "sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@expo/vector-icons": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@expo/vector-icons/-/vector-icons-14.0.4.tgz", + "integrity": "sha512-+yKshcbpDfbV4zoXOgHxCwh7lkE9VVTT5T03OUlBsqfze1PLy6Hi4jp1vSb1GVbY6eskvMIivGVc9SKzIv0oEQ==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.8.1" + } + }, + "node_modules/@expo/ws-tunnel": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@expo/ws-tunnel/-/ws-tunnel-1.0.5.tgz", + "integrity": "sha512-Ta9KzslHAIbw2ZoyZ7Ud7/QImucy+K4YvOqo9AhGfUfH76hQzaffQreOySzYusDfW8Y+EXh0ZNWE68dfCumFFw==", + "license": "MIT" + }, + "node_modules/@expo/xcpretty": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-4.3.2.tgz", + "integrity": "sha512-ReZxZ8pdnoI3tP/dNnJdnmAk7uLT4FjsKDGW7YeDdvdOMz2XCQSmSCM9IWlrXuWtMF9zeSB6WJtEhCQ41gQOfw==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/code-frame": "7.10.4", + "chalk": "^4.1.0", + "find-up": "^5.0.0", + "js-yaml": "^4.1.0" + }, + "bin": { + "excpretty": "build/cli.js" + } + }, + "node_modules/@expo/xcpretty/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@expo/xcpretty/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/@expo/xcpretty/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "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" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/ttlcache": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@isaacs/ttlcache/-/ttlcache-1.4.1.tgz", + "integrity": "sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/create-cache-key-function": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz", + "integrity": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "license": "MIT", + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" + }, + "node_modules/@jest/transform/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/fs": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz", + "integrity": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==", + "license": "ISC", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/fs/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@react-native/assets-registry": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.76.7.tgz", + "integrity": "sha512-o79whsqL5fbPTUQO9w1FptRd4cw1TaeOrXtQSLQeDrMVAenw/wmsjyPK10VKtvqxa1KNMtWEyfgxcM8CVZVFmg==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/babel-plugin-codegen": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.76.7.tgz", + "integrity": "sha512-+8H4DXJREM4l/pwLF/wSVMRzVhzhGDix5jLezNrMD9J1U1AMfV2aSkWA1XuqR7pjPs/Vqf6TaPL7vJMZ4LU05Q==", + "license": "MIT", + "dependencies": { + "@react-native/codegen": "0.76.7" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/babel-preset": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.76.7.tgz", + "integrity": "sha512-/c5DYZ6y8tyg+g8tgXKndDT7mWnGmkZ9F+T3qNDfoE3Qh7ucrNeC2XWvU9h5pk8eRtj9l4SzF4aO1phzwoibyg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.25.2", + "@babel/plugin-proposal-export-default-from": "^7.24.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-default-from": "^7.24.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.25.4", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.25.0", + "@babel/plugin-transform-class-properties": "^7.25.4", + "@babel/plugin-transform-classes": "^7.25.4", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.8", + "@babel/plugin-transform-flow-strip-types": "^7.25.2", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.25.1", + "@babel/plugin-transform-literals": "^7.25.2", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.8", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-react-display-name": "^7.24.7", + "@babel/plugin-transform-react-jsx": "^7.25.2", + "@babel/plugin-transform-react-jsx-self": "^7.24.7", + "@babel/plugin-transform-react-jsx-source": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-runtime": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@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.7", + "babel-plugin-syntax-hermes-parser": "^0.25.1", + "babel-plugin-transform-flow-enums": "^0.0.2", + "react-refresh": "^0.14.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" + } + }, + "node_modules/@react-native/codegen": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.76.7.tgz", + "integrity": "sha512-FAn585Ll65YvkSrKDyAcsdjHhhAGiMlSTUpHh0x7J5ntudUns+voYms0xMP+pEPt0XuLdjhD7zLIIlAWP407+g==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.25.3", + "glob": "^7.1.1", + "hermes-parser": "0.23.1", + "invariant": "^2.2.4", + "jscodeshift": "^0.14.0", + "mkdirp": "^0.5.1", + "nullthrows": "^1.1.1", + "yargs": "^17.6.2" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + } + }, + "node_modules/@react-native/codegen/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@react-native/community-cli-plugin": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.76.7.tgz", + "integrity": "sha512-lrcsY2WPLCEWU1pjdNV9+Ccj8vCEwCCURZiPa5aqi7lKB4C++1hPrxA8/CWWnTNcQp76DsBKGYqTFj7Ud4aupw==", + "license": "MIT", + "dependencies": { + "@react-native/dev-middleware": "0.76.7", + "@react-native/metro-babel-transformer": "0.76.7", + "chalk": "^4.0.0", + "execa": "^5.1.1", + "invariant": "^2.2.4", + "metro": "^0.81.0", + "metro-config": "^0.81.0", + "metro-core": "^0.81.0", + "node-fetch": "^2.2.0", + "readline": "^1.3.0", + "semver": "^7.1.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@react-native-community/cli-server-api": "*" + }, + "peerDependenciesMeta": { + "@react-native-community/cli-server-api": { + "optional": true + } + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" + }, + "node_modules/@react-native/debugger-frontend": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.76.7.tgz", + "integrity": "sha512-89ZtZXt7ZxE94i7T94qzZMhp4Gfcpr/QVpGqEaejAxZD+gvDCH21cYSF+/Rz2ttBazm0rk5MZ0mFqb0Iqp1jmw==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/dev-middleware": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.76.7.tgz", + "integrity": "sha512-Jsw8g9DyLPnR9yHEGuT09yHZ7M88/GL9CtU9WmyChlBwdXSeE3AmRqLegsV3XcgULQ1fqdemokaOZ/MwLYkjdA==", + "license": "MIT", + "dependencies": { + "@isaacs/ttlcache": "^1.4.1", + "@react-native/debugger-frontend": "0.76.7", + "chrome-launcher": "^0.15.2", + "chromium-edge-launcher": "^0.2.0", + "connect": "^3.6.5", + "debug": "^2.2.0", + "invariant": "^2.2.4", + "nullthrows": "^1.1.1", + "open": "^7.0.3", + "selfsigned": "^2.4.1", + "serve-static": "^1.13.1", + "ws": "^6.2.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/dev-middleware/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@react-native/dev-middleware/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/@react-native/dev-middleware/node_modules/ws": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", + "license": "MIT", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/@react-native/gradle-plugin": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.76.7.tgz", + "integrity": "sha512-gQI6RcrJbigU8xk7F960C5xQIgvbBj20TUvGecD+N2PHfbLpqR+92cj7hz3UcbrCONmTP40WHnbMMJ8P+kLsrA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/js-polyfills": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.76.7.tgz", + "integrity": "sha512-+iEikj6c6Zvrg1c3cYMeiPB+5nS8EaIC3jCtP6Muk3qc7c386IymEPM2xycIlfg04DPZvO3D4P2/vaO9/TCnUg==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/metro-babel-transformer": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.76.7.tgz", + "integrity": "sha512-jDS1wR7q46xY5ah+jF714Mvss9l7+lmwW/tplahZgLKozkYDC8Td5o9TOCgKlv18acw9H1V7zv8ivuRSj8ICPg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.25.2", + "@react-native/babel-preset": "0.76.7", + "hermes-parser": "0.23.1", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" + } + }, + "node_modules/@react-native/normalize-colors": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.76.7.tgz", + "integrity": "sha512-ST1xxBuYVIXPdD81dR6+tzIgso7m3pa9+6rOBXTh5Xm7KEEFik7tnQX+GydXYMp3wr1gagJjragdXkPnxK6WNg==", + "license": "MIT" + }, + "node_modules/@react-native/virtualized-lists": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.76.7.tgz", + "integrity": "sha512-pRUf1jUO8H9Ft04CaWv76t34QI9wY0sydoYlIwEtqXjjMJgmgDoOCAWBjArgn2mk8/rK+u/uicI67ZCYCp1pJw==", + "license": "MIT", + "dependencies": { + "invariant": "^2.2.4", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/react": "^18.2.6", + "react": "*", + "react-native": "*" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@segment/loosely-validate-event": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@segment/loosely-validate-event/-/loosely-validate-event-2.0.0.tgz", + "integrity": "sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==", + "dependencies": { + "component-type": "^1.2.1", + "join-component": "^1.1.0" + } + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "license": "MIT" + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/node": { + "version": "22.13.9", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.9.tgz", + "integrity": "sha512-acBjXdRJ3A6Pb3tqnw9HZmyR3Fiol3aGxRCK1x3d+6CDAMjl7I649wpSd+yNURCjbOUGu9tqtLKnTGxmK6CyGw==", + "license": "MIT", + "dependencies": { + "undici-types": "~6.20.0" + } + }, + "node_modules/@types/node-forge": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", + "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/prop-types": { + "version": "15.7.14", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz", + "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.3.18", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.18.tgz", + "integrity": "sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "license": "MIT" + }, + "node_modules/@types/yargs": { + "version": "17.0.33", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", + "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "license": "MIT" + }, + "node_modules/@urql/core": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@urql/core/-/core-5.1.1.tgz", + "integrity": "sha512-aGh024z5v2oINGD/In6rAtVKTm4VmQ2TxKQBAtk2ZSME5dunZFcjltw4p5ENQg+5CBhZ3FHMzl0Oa+rwqiWqlg==", + "license": "MIT", + "dependencies": { + "@0no-co/graphql.web": "^1.0.5", + "wonka": "^6.3.2" + } + }, + "node_modules/@urql/exchange-retry": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@urql/exchange-retry/-/exchange-retry-1.3.1.tgz", + "integrity": "sha512-EEmtFu8JTuwsInqMakhLq+U3qN8ZMd5V3pX44q0EqD2imqTDsa8ikZqJ1schVrN8HljOdN+C08cwZ1/r5uIgLw==", + "license": "MIT", + "dependencies": { + "@urql/core": "^5.1.1", + "wonka": "^6.3.2" + }, + "peerDependencies": { + "@urql/core": "^5.0.0" + } + }, + "node_modules/@xmldom/xmldom": { + "version": "0.7.13", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.13.tgz", + "integrity": "sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==", + "deprecated": "this version is no longer supported, please update to at least 0.8.*", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.14.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", + "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/anser": { + "version": "1.4.10", + "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.10.tgz", + "integrity": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==", + "license": "MIT" + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/anymatch/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/application-config-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.1.tgz", + "integrity": "sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==", + "license": "MIT" + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "license": "MIT" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "license": "MIT" + }, + "node_modules/ast-types": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", + "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/babel-core": { + "version": "7.0.0-bridge.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", + "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", + "license": "MIT", + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "license": "MIT", + "dependencies": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.12", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz", + "integrity": "sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.3", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.10.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", + "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2", + "core-js-compat": "^3.38.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz", + "integrity": "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.3" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-react-native-web": { + "version": "0.19.13", + "resolved": "https://registry.npmjs.org/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.13.tgz", + "integrity": "sha512-4hHoto6xaN23LCyZgL9LJZc3olmAxd7b6jDzlZnKXAh4rRAbZRKNBJoOOdp46OBqgy+K0t0guTj5/mhA8inymQ==", + "license": "MIT" + }, + "node_modules/babel-plugin-syntax-hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-hermes-parser/-/babel-plugin-syntax-hermes-parser-0.25.1.tgz", + "integrity": "sha512-IVNpGzboFLfXZUAwkLFcI/bnqVbwky0jP3eBno4HKtqvQJAHBLdgxiG6lQ4to0+Q/YCN3PO0od5NZwIKyY4REQ==", + "license": "MIT", + "dependencies": { + "hermes-parser": "0.25.1" + } + }, + "node_modules/babel-plugin-syntax-hermes-parser/node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "license": "MIT" + }, + "node_modules/babel-plugin-syntax-hermes-parser/node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "license": "MIT", + "dependencies": { + "hermes-estree": "0.25.1" + } + }, + "node_modules/babel-plugin-transform-flow-enums": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-enums/-/babel-plugin-transform-flow-enums-0.0.2.tgz", + "integrity": "sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==", + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-flow": "^7.12.1" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", + "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^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.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^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-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-expo": { + "version": "12.0.9", + "resolved": "https://registry.npmjs.org/babel-preset-expo/-/babel-preset-expo-12.0.9.tgz", + "integrity": "sha512-1c+ysrTavT49WgVAj0OX/TEzt1kU2mfPhDaDajstshNHXFKPenMPWSViA/DHrJKVIMwaqr+z3GbUOD9GtKgpdg==", + "license": "MIT", + "dependencies": { + "@babel/plugin-proposal-decorators": "^7.12.9", + "@babel/plugin-transform-export-namespace-from": "^7.22.11", + "@babel/plugin-transform-object-rest-spread": "^7.12.13", + "@babel/plugin-transform-parameters": "^7.22.15", + "@babel/preset-react": "^7.22.15", + "@babel/preset-typescript": "^7.23.0", + "@react-native/babel-preset": "0.76.7", + "babel-plugin-react-native-web": "~0.19.13", + "react-refresh": "^0.14.2" + }, + "peerDependencies": { + "babel-plugin-react-compiler": "^19.0.0-beta-9ee70a1-20241017", + "react-compiler-runtime": "^19.0.0-beta-8a03594-20241020" + }, + "peerDependenciesMeta": { + "babel-plugin-react-compiler": { + "optional": true + }, + "react-compiler-runtime": { + "optional": true + } + } + }, + "node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "license": "MIT", + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/better-opn": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz", + "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==", + "license": "MIT", + "dependencies": { + "open": "^8.0.4" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/better-opn/node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/big-integer": { + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", + "license": "Unlicense", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/bplist-creator": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.7.tgz", + "integrity": "sha512-xp/tcaV3T5PCiaY04mXga7o/TE+t95gqeLmADeBI1CvZtdWTbgBt3uLpvh4UWtenKeBhCV6oVxGk38yZr2uYEA==", + "license": "MIT", + "dependencies": { + "stream-buffers": "~2.2.0" + } + }, + "node_modules/bplist-parser": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.2.tgz", + "integrity": "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==", + "license": "MIT", + "dependencies": { + "big-integer": "1.6.x" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.24.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", + "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001688", + "electron-to-chromium": "^1.5.73", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.1" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "license": "Apache-2.0", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "license": "MIT", + "dependencies": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "node_modules/buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "license": "MIT" + }, + "node_modules/buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", + "license": "MIT" + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz", + "integrity": "sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==", + "license": "ISC", + "dependencies": { + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^2.0.1", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/cacache/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", + "license": "MIT", + "dependencies": { + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", + "license": "MIT", + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001702", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001702.tgz", + "integrity": "sha512-LoPe/D7zioC0REI5W73PeR1e1MLCipRGq/VkovJnd6Df+QVqT+vT33OXCp8QUd7kA7RZrHWxb1B36OQKI/0gOA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-launcher": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", + "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", + "license": "Apache-2.0", + "dependencies": { + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0" + }, + "bin": { + "print-chrome-path": "bin/print-chrome-path.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/chromium-edge-launcher": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/chromium-edge-launcher/-/chromium-edge-launcher-0.2.0.tgz", + "integrity": "sha512-JfJjUnq25y9yg4FABRRVPmBGWPZZi+AQXT4mxupb67766/0UlhG8PAZCz6xzEMXTbW3CsSoE8PcCWA49n35mKg==", + "license": "Apache-2.0", + "dependencies": { + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0", + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + } + }, + "node_modules/chromium-edge-launcher/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/command-exists": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", + "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==", + "license": "MIT" + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "license": "MIT" + }, + "node_modules/component-type": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/component-type/-/component-type-1.2.2.tgz", + "integrity": "sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.0.tgz", + "integrity": "sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "compressible": "~2.0.18", + "debug": "2.6.9", + "negotiator": "~0.6.4", + "on-headers": "~1.0.2", + "safe-buffer": "5.2.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/compression/node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" + }, + "node_modules/connect": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "finalhandler": "1.1.2", + "parseurl": "~1.3.3", + "utils-merge": "1.0.1" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/connect/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/connect/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" + }, + "node_modules/core-js-compat": { + "version": "3.41.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.41.0.tgz", + "integrity": "sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.24.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "license": "MIT", + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cross-fetch": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz", + "integrity": "sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==", + "license": "MIT", + "dependencies": { + "node-fetch": "^2.7.0" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "license": "BSD-2-Clause", + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/del": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", + "license": "MIT", + "dependencies": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "license": "Apache-2.0", + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv": { + "version": "16.4.7", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz", + "integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dotenv-expand": { + "version": "11.0.7", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.7.tgz", + "integrity": "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==", + "license": "BSD-2-Clause", + "dependencies": { + "dotenv": "^16.4.5" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.112", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.112.tgz", + "integrity": "sha512-oen93kVyqSb3l+ziUgzIOlWt/oOuy4zRmpwestMn4rhFWAoFJeFuCVte9F2fASjeZZo7l/Cif9TiyrdW4CwEMA==", + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/env-editor": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/env-editor/-/env-editor-0.4.2.tgz", + "integrity": "sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/eol": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", + "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==", + "license": "MIT" + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "license": "MIT", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/exec-async": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/exec-async/-/exec-async-2.2.0.tgz", + "integrity": "sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==", + "license": "MIT" + }, + "node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/execa/node_modules/cross-spawn": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", + "license": "MIT", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/execa/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/execa/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/execa/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" + }, + "node_modules/execa/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/expo": { + "version": "52.0.37", + "resolved": "https://registry.npmjs.org/expo/-/expo-52.0.37.tgz", + "integrity": "sha512-fo37ClqjNLOVInerm7BU27H8lfPfeTC7Pmu72roPzq46DnJfs+KzTxTzE34GcJ0b6hMUx9FRSSGyTQqxzo2TVQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.0", + "@expo/cli": "0.22.18", + "@expo/config": "~10.0.10", + "@expo/config-plugins": "~9.0.15", + "@expo/fingerprint": "0.11.11", + "@expo/metro-config": "0.19.11", + "@expo/vector-icons": "^14.0.0", + "babel-preset-expo": "~12.0.9", + "expo-asset": "~11.0.4", + "expo-constants": "~17.0.7", + "expo-file-system": "~18.0.11", + "expo-font": "~13.0.4", + "expo-keep-awake": "~14.0.3", + "expo-modules-autolinking": "2.0.8", + "expo-modules-core": "2.2.2", + "fbemitter": "^3.0.0", + "web-streams-polyfill": "^3.3.2", + "whatwg-url-without-unicode": "8.0.0-3" + }, + "bin": { + "expo": "bin/cli" + }, + "peerDependencies": { + "@expo/dom-webview": "*", + "@expo/metro-runtime": "*", + "react": "*", + "react-native": "*", + "react-native-webview": "*" + }, + "peerDependenciesMeta": { + "@expo/dom-webview": { + "optional": true + }, + "@expo/metro-runtime": { + "optional": true + }, + "react-native-webview": { + "optional": true + } + } + }, + "node_modules/expo-asset": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/expo-asset/-/expo-asset-11.0.4.tgz", + "integrity": "sha512-CdIywU0HrR3wsW5c3n0cT3jW9hccZdnqGsRqY+EY/RWzJbDXtDfAQVEiFHO3mDK7oveUwrP2jK/6ZRNek41/sg==", + "license": "MIT", + "dependencies": { + "@expo/image-utils": "^0.6.5", + "expo-constants": "~17.0.7", + "invariant": "^2.2.4", + "md5-file": "^3.2.3" + }, + "peerDependencies": { + "expo": "*", + "react": "*", + "react-native": "*" + } + }, + "node_modules/expo-constants": { + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/expo-constants/-/expo-constants-17.0.7.tgz", + "integrity": "sha512-sp5NUiV17I3JblVPIBDgoxgt7JIZS30vcyydCYHxsEoo+aKaeRYXxGYilCvb9lgI6BBwSL24sQ6ZjWsCWoF1VA==", + "license": "MIT", + "dependencies": { + "@expo/config": "~10.0.10", + "@expo/env": "~0.4.2" + }, + "peerDependencies": { + "expo": "*", + "react-native": "*" + } + }, + "node_modules/expo-file-system": { + "version": "18.0.11", + "resolved": "https://registry.npmjs.org/expo-file-system/-/expo-file-system-18.0.11.tgz", + "integrity": "sha512-yDwYfEzWgPXsBZHJW2RJ8Q66ceiFN9Wa5D20pp3fjXVkzPBDwxnYwiPWk4pVmCa5g4X5KYMoMne1pUrsL4OEpg==", + "license": "MIT", + "dependencies": { + "web-streams-polyfill": "^3.3.2" + }, + "peerDependencies": { + "expo": "*", + "react-native": "*" + } + }, + "node_modules/expo-font": { + "version": "13.0.4", + "resolved": "https://registry.npmjs.org/expo-font/-/expo-font-13.0.4.tgz", + "integrity": "sha512-eAP5hyBgC8gafFtprsz0HMaB795qZfgJWqTmU0NfbSin1wUuVySFMEPMOrTkTgmazU73v4Cb4x7p86jY1XXYUw==", + "license": "MIT", + "dependencies": { + "fontfaceobserver": "^2.1.0" + }, + "peerDependencies": { + "expo": "*", + "react": "*" + } + }, + "node_modules/expo-keep-awake": { + "version": "14.0.3", + "resolved": "https://registry.npmjs.org/expo-keep-awake/-/expo-keep-awake-14.0.3.tgz", + "integrity": "sha512-6Jh94G6NvTZfuLnm2vwIpKe3GdOiVBuISl7FI8GqN0/9UOg9E0WXXp5cDcfAG8bn80RfgLJS8P7EPUGTZyOvhg==", + "license": "MIT", + "peerDependencies": { + "expo": "*", + "react": "*" + } + }, + "node_modules/expo-modules-autolinking": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-2.0.8.tgz", + "integrity": "sha512-DezgnEYFQYic8hKGhkbztBA3QUmSftjaNDIKNAtS2iGJmzCcNIkatjN2slFDSWjSTNo8gOvPQyMKfyHWFvLpOQ==", + "license": "MIT", + "dependencies": { + "@expo/spawn-async": "^1.7.2", + "chalk": "^4.1.0", + "commander": "^7.2.0", + "fast-glob": "^3.2.5", + "find-up": "^5.0.0", + "fs-extra": "^9.1.0", + "require-from-string": "^2.0.2", + "resolve-from": "^5.0.0" + }, + "bin": { + "expo-modules-autolinking": "bin/expo-modules-autolinking.js" + } + }, + "node_modules/expo-modules-autolinking/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/expo-modules-autolinking/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/expo-modules-autolinking/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/expo-modules-core": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-2.2.2.tgz", + "integrity": "sha512-SgjK86UD89gKAscRK3bdpn6Ojfs/KU4GujtuFx1wm4JaBjmXH4aakWkItkPlAV2pjIiHJHWQbENL9xjbw/Qr/g==", + "license": "MIT", + "dependencies": { + "invariant": "^2.2.4" + } + }, + "node_modules/expo-status-bar": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/expo-status-bar/-/expo-status-bar-2.0.1.tgz", + "integrity": "sha512-AkIPX7jWHRPp83UBZ1iXtVvyr0g+DgBVvIXTtlmPtmUsm8Vq9Bb5IGj86PW8osuFlgoTVAg7HI/+Ok7yEYwiRg==", + "license": "MIT", + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/exponential-backoff": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.2.tgz", + "integrity": "sha512-8QxYTVXUkuy7fIIoitQkPwGonB8F3Zj8eEO8Sqg9Zv/bkI7RJAzowee4gr81Hak/dUTpA2Z7VfQgoijjPNlUZA==", + "license": "Apache-2.0" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "license": "Apache-2.0", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fbemitter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", + "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", + "license": "BSD-3-Clause", + "dependencies": { + "fbjs": "^3.0.0" + } + }, + "node_modules/fbjs": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz", + "integrity": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==", + "license": "MIT", + "dependencies": { + "cross-fetch": "^3.1.5", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^1.0.35" + } + }, + "node_modules/fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==", + "license": "MIT" + }, + "node_modules/fetch-retry": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-4.1.1.tgz", + "integrity": "sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==", + "license": "MIT" + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flow-enums-runtime": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz", + "integrity": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==", + "license": "MIT" + }, + "node_modules/flow-parser": { + "version": "0.263.0", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.263.0.tgz", + "integrity": "sha512-F0Tr7SUvZ4BQYglFOkr8rCTO5FPjCwMhm/6i57h40F80Oz/hzzkqte4lGO0vGJ7THQonuXcTyYqCdKkAwt5d2w==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/fontfaceobserver": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/fontfaceobserver/-/fontfaceobserver-2.3.0.tgz", + "integrity": "sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==", + "license": "BSD-2-Clause" + }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.3.tgz", + "integrity": "sha512-q5YBMeWy6E2Un0nMGWMgI65MAKtaylxfNJGJxpGh45YDciZB4epbWpaAfImil6CPAPTYB4sh0URQNDRIZG5F2w==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "mime-types": "^2.1.35" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/freeport-async": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/freeport-async/-/freeport-async-2.0.0.tgz", + "integrity": "sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/fs-minipass": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", + "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-port": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", + "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/getenv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/getenv/-/getenv-1.0.0.tgz", + "integrity": "sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "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" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hermes-estree": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.23.1.tgz", + "integrity": "sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==", + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.23.1.tgz", + "integrity": "sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==", + "license": "MIT", + "dependencies": { + "hermes-estree": "0.23.1" + } + }, + "node_modules/hosted-git-info": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz", + "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==", + "license": "ISC", + "dependencies": { + "lru-cache": "^10.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-errors/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/image-size": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.2.0.tgz", + "integrity": "sha512-4S8fwbO6w3GeCVN6OPtA9I5IGKkcDMPcKndtUlpJuCwu7JLjtj7JZpwqLuyY2nrmQT3AWsCJLSKPsc2mPBSl3w==", + "license": "MIT", + "dependencies": { + "queue": "6.0.2" + }, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=16.x" + } + }, + "node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "license": "MIT", + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "license": "ISC" + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "license": "MIT", + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "license": "MIT" + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "license": "MIT" + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-util/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jimp-compact": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/jimp-compact/-/jimp-compact-0.16.1.tgz", + "integrity": "sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==", + "license": "MIT" + }, + "node_modules/join-component": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/join-component/-/join-component-1.1.0.tgz", + "integrity": "sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==", + "license": "MIT" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsc-android": { + "version": "250231.0.0", + "resolved": "https://registry.npmjs.org/jsc-android/-/jsc-android-250231.0.0.tgz", + "integrity": "sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==", + "license": "BSD-2-Clause" + }, + "node_modules/jsc-safe-url": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/jsc-safe-url/-/jsc-safe-url-0.2.4.tgz", + "integrity": "sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==", + "license": "0BSD" + }, + "node_modules/jscodeshift": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz", + "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.13.16", + "@babel/parser": "^7.13.16", + "@babel/plugin-proposal-class-properties": "^7.13.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", + "@babel/plugin-proposal-optional-chaining": "^7.13.12", + "@babel/plugin-transform-modules-commonjs": "^7.13.8", + "@babel/preset-flow": "^7.13.13", + "@babel/preset-typescript": "^7.13.0", + "@babel/register": "^7.13.16", + "babel-core": "^7.0.0-bridge.0", + "chalk": "^4.1.2", + "flow-parser": "0.*", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.4", + "neo-async": "^2.5.0", + "node-dir": "^0.1.17", + "recast": "^0.21.0", + "temp": "^0.8.4", + "write-file-atomic": "^2.3.0" + }, + "bin": { + "jscodeshift": "bin/jscodeshift.js" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/lighthouse-logger": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", + "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.9", + "marky": "^1.2.2" + } + }, + "node_modules/lighthouse-logger/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/lighthouse-logger/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/lightningcss": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.27.0.tgz", + "integrity": "sha512-8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ==", + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^1.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-darwin-arm64": "1.27.0", + "lightningcss-darwin-x64": "1.27.0", + "lightningcss-freebsd-x64": "1.27.0", + "lightningcss-linux-arm-gnueabihf": "1.27.0", + "lightningcss-linux-arm64-gnu": "1.27.0", + "lightningcss-linux-arm64-musl": "1.27.0", + "lightningcss-linux-x64-gnu": "1.27.0", + "lightningcss-linux-x64-musl": "1.27.0", + "lightningcss-win32-arm64-msvc": "1.27.0", + "lightningcss-win32-x64-msvc": "1.27.0" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.27.0.tgz", + "integrity": "sha512-Gl/lqIXY+d+ySmMbgDf0pgaWSqrWYxVHoc88q+Vhf2YNzZ8DwoRzGt5NZDVqqIW5ScpSnmmjcgXP87Dn2ylSSQ==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.27.0.tgz", + "integrity": "sha512-0+mZa54IlcNAoQS9E0+niovhyjjQWEMrwW0p2sSdLRhLDc8LMQ/b67z7+B5q4VmjYCMSfnFi3djAAQFIDuj/Tg==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.27.0.tgz", + "integrity": "sha512-n1sEf85fePoU2aDN2PzYjoI8gbBqnmLGEhKq7q0DKLj0UTVmOTwDC7PtLcy/zFxzASTSBlVQYJUhwIStQMIpRA==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.27.0.tgz", + "integrity": "sha512-MUMRmtdRkOkd5z3h986HOuNBD1c2lq2BSQA1Jg88d9I7bmPGx08bwGcnB75dvr17CwxjxD6XPi3Qh8ArmKFqCA==", + "cpu": [ + "arm" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.27.0.tgz", + "integrity": "sha512-cPsxo1QEWq2sfKkSq2Bq5feQDHdUEwgtA9KaB27J5AX22+l4l0ptgjMZZtYtUnteBofjee+0oW1wQ1guv04a7A==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.27.0.tgz", + "integrity": "sha512-rCGBm2ax7kQ9pBSeITfCW9XSVF69VX+fm5DIpvDZQl4NnQoMQyRwhZQm9pd59m8leZ1IesRqWk2v/DntMo26lg==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.27.0.tgz", + "integrity": "sha512-Dk/jovSI7qqhJDiUibvaikNKI2x6kWPN79AQiD/E/KeQWMjdGe9kw51RAgoWFDi0coP4jinaH14Nrt/J8z3U4A==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.27.0.tgz", + "integrity": "sha512-QKjTxXm8A9s6v9Tg3Fk0gscCQA1t/HMoF7Woy1u68wCk5kS4fR+q3vXa1p3++REW784cRAtkYKrPy6JKibrEZA==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.27.0.tgz", + "integrity": "sha512-/wXegPS1hnhkeG4OXQKEMQeJd48RDC3qdh+OA8pCuOPCyvnm/yEayrJdJVqzBsqpy1aJklRCVxscpFur80o6iQ==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.27.0.tgz", + "integrity": "sha512-/OJLj94Zm/waZShL8nB5jsNj3CfNATLCTyFxZyouilfTmSoLDX7VlVAmhPHoZWVFp4vdmoiEbPEYC8HID3m6yw==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "license": "MIT" + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "license": "MIT" + }, + "node_modules/lodash.throttle": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", + "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==", + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "license": "MIT", + "dependencies": { + "chalk": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-symbols/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/log-symbols/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/log-symbols/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/log-symbols/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "license": "MIT", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/marky": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz", + "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==", + "license": "Apache-2.0" + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "license": "BSD-3-Clause", + "dependencies": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, + "node_modules/md5-file": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-3.2.3.tgz", + "integrity": "sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==", + "license": "MIT", + "dependencies": { + "buffer-alloc": "^1.1.0" + }, + "bin": { + "md5-file": "cli.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/memoize-one": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", + "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", + "license": "MIT" + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/metro": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/metro/-/metro-0.81.3.tgz", + "integrity": "sha512-upilFs7z1uLKvdzFYHiVKrGT/uC7h7d53R0g/FaJoQvLfA8jQG2V69jeOcGi4wCsFYvl1zBSZvKxpQb0nA3giQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/core": "^7.25.2", + "@babel/generator": "^7.25.0", + "@babel/parser": "^7.25.3", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.3", + "@babel/types": "^7.25.2", + "accepts": "^1.3.7", + "chalk": "^4.0.0", + "ci-info": "^2.0.0", + "connect": "^3.6.5", + "debug": "^2.2.0", + "error-stack-parser": "^2.0.6", + "flow-enums-runtime": "^0.0.6", + "graceful-fs": "^4.2.4", + "hermes-parser": "0.25.1", + "image-size": "^1.0.2", + "invariant": "^2.2.4", + "jest-worker": "^29.7.0", + "jsc-safe-url": "^0.2.2", + "lodash.throttle": "^4.1.1", + "metro-babel-transformer": "0.81.3", + "metro-cache": "0.81.3", + "metro-cache-key": "0.81.3", + "metro-config": "0.81.3", + "metro-core": "0.81.3", + "metro-file-map": "0.81.3", + "metro-resolver": "0.81.3", + "metro-runtime": "0.81.3", + "metro-source-map": "0.81.3", + "metro-symbolicate": "0.81.3", + "metro-transform-plugins": "0.81.3", + "metro-transform-worker": "0.81.3", + "mime-types": "^2.1.27", + "nullthrows": "^1.1.1", + "serialize-error": "^2.1.0", + "source-map": "^0.5.6", + "throat": "^5.0.0", + "ws": "^7.5.10", + "yargs": "^17.6.2" + }, + "bin": { + "metro": "src/cli.js" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/metro-babel-transformer": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.81.3.tgz", + "integrity": "sha512-ENqtnPy2mQZFOuKrbqHRcAwZuaYe43X+30xIF0xlkLuMyCvc0CsFzrrSK9EqrQwexhVlqaRALb0GQbBMcE/y8g==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.25.2", + "flow-enums-runtime": "^0.0.6", + "hermes-parser": "0.25.1", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/metro-babel-transformer/node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "license": "MIT" + }, + "node_modules/metro-babel-transformer/node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "license": "MIT", + "dependencies": { + "hermes-estree": "0.25.1" + } + }, + "node_modules/metro-cache": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/metro-cache/-/metro-cache-0.81.3.tgz", + "integrity": "sha512-6UelMQYjlto/79tTXu0vsTxAX4e+Bkf0tgtDL1BNx3wd68pBg8qKIYpJPaUlOIaNUzFXTBDjYwUverkEW0KAtA==", + "license": "MIT", + "dependencies": { + "exponential-backoff": "^3.1.1", + "flow-enums-runtime": "^0.0.6", + "metro-core": "0.81.3" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/metro-cache-key": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.81.3.tgz", + "integrity": "sha512-KPsPSRUd6uRva7k7k/DqiiD8td7URQWx0RkX/Cj5+bed5zSXEg/XoQA+b+DmMxS5C7TqP61Fh3XvHx6TQRW82A==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/metro-config": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/metro-config/-/metro-config-0.81.3.tgz", + "integrity": "sha512-WpTaT0iQr5juVY50Y/cyacG2ggZqF38VshEQepT+ovPK8E/xUVxlbO5yxLSXUxxUXX3Hka9r6g64+y2WC6c/xQ==", + "license": "MIT", + "dependencies": { + "connect": "^3.6.5", + "cosmiconfig": "^5.0.5", + "flow-enums-runtime": "^0.0.6", + "jest-validate": "^29.7.0", + "metro": "0.81.3", + "metro-cache": "0.81.3", + "metro-core": "0.81.3", + "metro-runtime": "0.81.3" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/metro-core": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/metro-core/-/metro-core-0.81.3.tgz", + "integrity": "sha512-WZ+qohnpvvSWdPj1VJPUrZz+2ik29M+UUpMU6YrmzQUfDyZ6JYHhzlw5WVBtwpt/+2xTsIyrZ2C1fByT/DsLQA==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6", + "lodash.throttle": "^4.1.1", + "metro-resolver": "0.81.3" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/metro-file-map": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/metro-file-map/-/metro-file-map-0.81.3.tgz", + "integrity": "sha512-F+t4lnVRoauJxtr9xmI4pWIOE77/vl0IrHDGeJSI9cW6LmuqxkpOlZHTKpbs/hMAo6+KhG2JMJACQDvXDLd/GA==", + "license": "MIT", + "dependencies": { + "debug": "^2.2.0", + "fb-watchman": "^2.0.0", + "flow-enums-runtime": "^0.0.6", + "graceful-fs": "^4.2.4", + "invariant": "^2.2.4", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "nullthrows": "^1.1.1", + "walker": "^1.0.7" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/metro-file-map/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/metro-file-map/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/metro-minify-terser": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.81.3.tgz", + "integrity": "sha512-912AYv3OmwcbUwzCdWbdQRk+RV6kXXluHKlhBdYFD3kr4Ece691rzlofU/Mlt9qZrhHtctD5Q8cFqOEf9Z69bQ==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6", + "terser": "^5.15.0" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/metro-resolver": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.81.3.tgz", + "integrity": "sha512-XnjENY1c6jcsEfFVIjN/8McUIInCVgGxv5eva+9ZWeCTyiAE/L5HPj2ai/Myb349+6QuSMR0dscTkKCnOwWXdw==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/metro-runtime": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.81.3.tgz", + "integrity": "sha512-neuGRMC2pgGKIFPbmbrxW41/SmvL7OX4i1LN+saUY2t1cZfxf9haQHUMCGhO3498uEL2N+ulKRSlQrHt6XwGaw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.25.0", + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/metro-source-map": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.81.3.tgz", + "integrity": "sha512-BHJJurmDQRn3hCbBawh/UHzPz3duMpwpE3ofImO2DoWHYzn6nSg/D4wfCN4y14d9fFLE4e0I+BAOX1HWNP4jsw==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.3", + "@babel/traverse--for-generate-function-map": "npm:@babel/traverse@^7.25.3", + "@babel/types": "^7.25.2", + "flow-enums-runtime": "^0.0.6", + "invariant": "^2.2.4", + "metro-symbolicate": "0.81.3", + "nullthrows": "^1.1.1", + "ob1": "0.81.3", + "source-map": "^0.5.6", + "vlq": "^1.0.0" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/metro-symbolicate": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.81.3.tgz", + "integrity": "sha512-LQLT6WopQmIz2SDSVh3Lw7nLzF58HpsrPYqRB7RpRXBYhYmPFIjiGaP8qqtKHXczM/5YAOJzpgt8t/OGZgh6Eg==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6", + "invariant": "^2.2.4", + "metro-source-map": "0.81.3", + "nullthrows": "^1.1.1", + "source-map": "^0.5.6", + "vlq": "^1.0.0" + }, + "bin": { + "metro-symbolicate": "src/index.js" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/metro-transform-plugins": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.81.3.tgz", + "integrity": "sha512-4JMUXhBB5y4h3dyA272k7T7+U3+J4fSBcct0Y8Yur9ziZB/dK8fieEQg5ZPfEGsgOGI+54zTzOUqga6AgmZSNg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.25.2", + "@babel/generator": "^7.25.0", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.3", + "flow-enums-runtime": "^0.0.6", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/metro-transform-worker": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.81.3.tgz", + "integrity": "sha512-KZqm9sVyBKRygUxRm+yP4DguE9R1EEv28KJhIxghNp5dcdVXBYUPe1xHoc3QVdzD9c3tf8JFzA2FBlKTlwMwNg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.25.2", + "@babel/generator": "^7.25.0", + "@babel/parser": "^7.25.3", + "@babel/types": "^7.25.2", + "flow-enums-runtime": "^0.0.6", + "metro": "0.81.3", + "metro-babel-transformer": "0.81.3", + "metro-cache": "0.81.3", + "metro-cache-key": "0.81.3", + "metro-minify-terser": "0.81.3", + "metro-source-map": "0.81.3", + "metro-transform-plugins": "0.81.3", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/metro/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "license": "MIT" + }, + "node_modules/metro/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/metro/node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "license": "MIT" + }, + "node_modules/metro/node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "license": "MIT", + "dependencies": { + "hermes-estree": "0.25.1" + } + }, + "node_modules/metro/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/metro/node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/micromatch/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.53.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", + "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types/node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/minipass-collect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz", + "integrity": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==", + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-flush/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "license": "MIT", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "license": "MIT" + }, + "node_modules/nested-error-stacks": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz", + "integrity": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==", + "license": "MIT" + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "license": "MIT" + }, + "node_modules/node-dir": { + "version": "0.1.17", + "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", + "integrity": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==", + "license": "MIT", + "dependencies": { + "minimatch": "^3.0.2" + }, + "engines": { + "node": ">= 0.10.5" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-package-arg": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.3.tgz", + "integrity": "sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==", + "license": "ISC", + "dependencies": { + "hosted-git-info": "^7.0.0", + "proc-log": "^4.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm-package-arg/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "license": "MIT", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/nullthrows": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", + "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==", + "license": "MIT" + }, + "node_modules/ob1": { + "version": "0.81.3", + "resolved": "https://registry.npmjs.org/ob1/-/ob1-0.81.3.tgz", + "integrity": "sha512-wd8zdH0DWsn2iDVn2zT/QURihcqoc73K8FhNCmQ16qkJaoYJLNb/N+huOwdCgsbNP8Lk/s1+dPnDETx+RzsrWA==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18.18" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz", + "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==", + "license": "MIT", + "dependencies": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/ora/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/ora/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ora/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ora/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/ora/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/ora/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/ora/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/ora/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/ora/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "license": "MIT", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/parse-png": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/parse-png/-/parse-png-2.1.0.tgz", + "integrity": "sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==", + "license": "MIT", + "dependencies": { + "pngjs": "^3.3.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/password-prompt": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz", + "integrity": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==", + "license": "0BSD", + "dependencies": { + "ansi-escapes": "^4.3.2", + "cross-spawn": "^7.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-3.0.1.tgz", + "integrity": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/plist": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz", + "integrity": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==", + "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "^0.8.8", + "base64-js": "^1.5.1", + "xmlbuilder": "^15.1.1" + }, + "engines": { + "node": ">=10.4.0" + } + }, + "node_modules/plist/node_modules/@xmldom/xmldom": { + "version": "0.8.10", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", + "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/plist/node_modules/xmlbuilder": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", + "license": "MIT", + "engines": { + "node": ">=8.0" + } + }, + "node_modules/pngjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", + "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss": { + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/proc-log": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-4.2.0.tgz", + "integrity": "sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==", + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "license": "MIT", + "dependencies": { + "asap": "~2.0.3" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/pump": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", + "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/qrcode-terminal": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz", + "integrity": "sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==", + "bin": { + "qrcode-terminal": "bin/qrcode-terminal.js" + } + }, + "node_modules/queue": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", + "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", + "license": "MIT", + "dependencies": { + "inherits": "~2.0.3" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-devtools-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-5.3.2.tgz", + "integrity": "sha512-crr9HkVrDiJ0A4zot89oS0Cgv0Oa4OG1Em4jit3P3ZxZSKPMYyMjfwMqgcJna9o625g8oN87rBm8SWWrSTBZxg==", + "license": "MIT", + "dependencies": { + "shell-quote": "^1.6.1", + "ws": "^7" + } + }, + "node_modules/react-devtools-core/node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/react-native": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.76.7.tgz", + "integrity": "sha512-GPJcQeO3qUi1MvuhsC2DC6tH8gJQ4uc4JWPORrdeuCGFWE3QLsN8/hiChTEvJREHLfQSV61YPI8gIOtAQ8c37g==", + "license": "MIT", + "dependencies": { + "@jest/create-cache-key-function": "^29.6.3", + "@react-native/assets-registry": "0.76.7", + "@react-native/codegen": "0.76.7", + "@react-native/community-cli-plugin": "0.76.7", + "@react-native/gradle-plugin": "0.76.7", + "@react-native/js-polyfills": "0.76.7", + "@react-native/normalize-colors": "0.76.7", + "@react-native/virtualized-lists": "0.76.7", + "abort-controller": "^3.0.0", + "anser": "^1.4.9", + "ansi-regex": "^5.0.0", + "babel-jest": "^29.7.0", + "babel-plugin-syntax-hermes-parser": "^0.23.1", + "base64-js": "^1.5.1", + "chalk": "^4.0.0", + "commander": "^12.0.0", + "event-target-shim": "^5.0.1", + "flow-enums-runtime": "^0.0.6", + "glob": "^7.1.1", + "invariant": "^2.2.4", + "jest-environment-node": "^29.6.3", + "jsc-android": "^250231.0.0", + "memoize-one": "^5.0.0", + "metro-runtime": "^0.81.0", + "metro-source-map": "^0.81.0", + "mkdirp": "^0.5.1", + "nullthrows": "^1.1.1", + "pretty-format": "^29.7.0", + "promise": "^8.3.0", + "react-devtools-core": "^5.3.1", + "react-refresh": "^0.14.0", + "regenerator-runtime": "^0.13.2", + "scheduler": "0.24.0-canary-efb381bbf-20230505", + "semver": "^7.1.3", + "stacktrace-parser": "^0.1.10", + "whatwg-fetch": "^3.0.0", + "ws": "^6.2.3", + "yargs": "^17.6.2" + }, + "bin": { + "react-native": "cli.js" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/react": "^18.2.6", + "react": "^18.2.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-native/node_modules/babel-plugin-syntax-hermes-parser": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-hermes-parser/-/babel-plugin-syntax-hermes-parser-0.23.1.tgz", + "integrity": "sha512-uNLD0tk2tLUjGFdmCk+u/3FEw2o+BAwW4g+z2QVlxJrzZYOOPADroEcNtTPt5lNiScctaUmnsTkVEnOwZUOLhA==", + "license": "MIT", + "dependencies": { + "hermes-parser": "0.23.1" + } + }, + "node_modules/react-native/node_modules/commander": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", + "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/react-native/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/react-native/node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "license": "MIT", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/react-native/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "license": "MIT" + }, + "node_modules/react-native/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-native/node_modules/ws": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", + "license": "MIT", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/react-refresh": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", + "integrity": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==", + "license": "BSD" + }, + "node_modules/recast": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", + "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", + "license": "MIT", + "dependencies": { + "ast-types": "0.15.2", + "esprima": "~4.0.0", + "source-map": "~0.6.1", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/recast/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "license": "MIT" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", + "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "license": "MIT" + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexpu-core": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", + "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.0", + "regjsgen": "^0.8.0", + "regjsparser": "^0.12.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", + "license": "MIT" + }, + "node_modules/regjsparser": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", + "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", + "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~3.0.2" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/remove-trailing-slash": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/remove-trailing-slash/-/remove-trailing-slash-0.1.1.tgz", + "integrity": "sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==", + "license": "MIT" + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requireg": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/requireg/-/requireg-0.2.2.tgz", + "integrity": "sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==", + "dependencies": { + "nested-error-stacks": "~2.0.1", + "rc": "~1.2.7", + "resolve": "~1.7.1" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/requireg/node_modules/resolve": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz", + "integrity": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==", + "license": "MIT", + "dependencies": { + "path-parse": "^1.0.5" + } + }, + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-workspace-root": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-workspace-root/-/resolve-workspace-root-2.0.0.tgz", + "integrity": "sha512-IsaBUZETJD5WsI11Wt8PKHwaIe45or6pwNc8yflvLJ4DWtImK9kuLoH5kUva/2Mmx/RdIyr4aONNSa2v9LTJsw==", + "license": "MIT" + }, + "node_modules/resolve.exports": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", + "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "license": "MIT", + "dependencies": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/restore-cursor/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/sax": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", + "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", + "license": "ISC" + }, + "node_modules/scheduler": { + "version": "0.24.0-canary-efb381bbf-20230505", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz", + "integrity": "sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/selfsigned": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "license": "MIT", + "dependencies": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.1.tgz", + "integrity": "sha512-p4rRk4f23ynFEfcD9LA0xRYngj+IyGiEYyqqOak8kaN0TvNmuxC2dcVeBn62GpCeR2CpWqyHCNScTP91QbAVFg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/send/node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/send/node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/send/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/serialize-error": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz", + "integrity": "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/serve-static": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-static/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-static/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/serve-static/node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/serve-static/node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/serve-static/node_modules/send": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-static/node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/serve-static/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "license": "MIT" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "license": "MIT", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz", + "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/simple-plist": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/simple-plist/-/simple-plist-1.3.1.tgz", + "integrity": "sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==", + "license": "MIT", + "dependencies": { + "bplist-creator": "0.1.0", + "bplist-parser": "0.3.1", + "plist": "^3.0.5" + } + }, + "node_modules/simple-plist/node_modules/bplist-creator": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.1.0.tgz", + "integrity": "sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==", + "license": "MIT", + "dependencies": { + "stream-buffers": "2.2.x" + } + }, + "node_modules/simple-plist/node_modules/bplist-parser": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.1.tgz", + "integrity": "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==", + "license": "MIT", + "dependencies": { + "big-integer": "1.6.x" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "license": "MIT" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/slugify": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", + "license": "MIT", + "dependencies": { + "through": "2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause" + }, + "node_modules/ssri": { + "version": "10.0.6", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz", + "integrity": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==", + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "license": "MIT" + }, + "node_modules/stacktrace-parser": { + "version": "0.1.11", + "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.11.tgz", + "integrity": "sha512-WjlahMgHmCJpqzU8bIBy4qtsZdU9lRlcZE3Lvyej6t4tuOuv1vk57OW3MBrj6hXBFx/nNoC9MPMTcr5YA7NQbg==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.7.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/stacktrace-parser/node_modules/type-fest": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", + "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, + "node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/stream-buffers": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz", + "integrity": "sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==", + "license": "Unlicense", + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/structured-headers": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/structured-headers/-/structured-headers-0.4.1.tgz", + "integrity": "sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==", + "license": "MIT" + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/sudo-prompt": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", + "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", + "license": "MIT" + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tar": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "license": "ISC", + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/temp": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", + "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", + "license": "MIT", + "dependencies": { + "rimraf": "~2.6.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/temp/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/temp/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/tempy": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.7.1.tgz", + "integrity": "sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==", + "license": "MIT", + "dependencies": { + "del": "^6.0.0", + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "5.39.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.39.0.tgz", + "integrity": "sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==", + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/test-exclude/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/throat": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", + "license": "MIT" + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "license": "MIT" + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "license": "MIT", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "license": "BSD-3-Clause" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "license": "Apache-2.0" + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.8.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz", + "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/ua-parser-js": { + "version": "1.0.40", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.40.tgz", + "integrity": "sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "license": "MIT", + "bin": { + "ua-parser-js": "script/cli.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/undici": { + "version": "6.21.1", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.1.tgz", + "integrity": "sha512-q/1rj5D0/zayJB2FraXdaWxbhWiNKDvu8naDT2dl1yTlvJp4BLtOcp2a5BvgGNQpYYJzau7tf1WgKv3b+7mqpQ==", + "license": "MIT", + "engines": { + "node": ">=18.17" + } + }, + "node_modules/undici-types": { + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "license": "MIT" + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "license": "MIT", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", + "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unique-filename": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", + "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", + "license": "ISC", + "dependencies": { + "unique-slug": "^4.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/unique-slug": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", + "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "license": "MIT", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/validate-npm-package-name": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz", + "integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==", + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vlq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz", + "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==", + "license": "MIT" + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "license": "Apache-2.0", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/web-streams-polyfill": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", + "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/whatwg-fetch": { + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==", + "license": "MIT" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/whatwg-url-without-unicode": { + "version": "8.0.0-3", + "resolved": "https://registry.npmjs.org/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz", + "integrity": "sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==", + "license": "MIT", + "dependencies": { + "buffer": "^5.4.3", + "punycode": "^2.1.1", + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/whatwg-url-without-unicode/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wonka": { + "version": "6.3.5", + "resolved": "https://registry.npmjs.org/wonka/-/wonka-6.3.5.tgz", + "integrity": "sha512-SSil+ecw6B4/Dm7Pf2sAshKQ5hWFvfyGlfPbEd6A14dOH6VDjrmbY86u6nZvy9omGwwIPFR8V41+of1EezgoUw==", + "license": "MIT" + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + }, + "node_modules/write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "license": "ISC", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/write-file-atomic/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" + }, + "node_modules/ws": { + "version": "8.18.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz", + "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xcode": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/xcode/-/xcode-3.0.1.tgz", + "integrity": "sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==", + "license": "Apache-2.0", + "dependencies": { + "simple-plist": "^1.1.0", + "uuid": "^7.0.3" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/xcode/node_modules/uuid": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz", + "integrity": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/xml2js": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.0.tgz", + "integrity": "sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==", + "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/xml2js/node_modules/xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "license": "MIT", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/xmlbuilder": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-14.0.0.tgz", + "integrity": "sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==", + "license": "MIT", + "engines": { + "node": ">=8.0" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "license": "ISC" + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/examples/speech-to-text/package.json b/examples/speech-to-text/package.json new file mode 100644 index 0000000000..577f0b5deb --- /dev/null +++ b/examples/speech-to-text/package.json @@ -0,0 +1,38 @@ +{ + "name": "speech-to-text", + "version": "1.0.0", + "main": "index.ts", + "scripts": { + "start": "expo start", + "android": "expo run:android", + "ios": "expo run:ios", + "web": "expo start --web" + }, + "dependencies": { + "@react-native/metro-config": "^0.76.3", + "buffer": "^6.0.3", + "expo": "~52.0.17", + "expo-font": "^13.0.1", + "expo-status-bar": "~2.0.0", + "metro-config": "^0.81.0", + "react": "18.3.1", + "react-native": "0.76.3", + "react-native-audio-api": "0.4.11", + "react-native-device-info": "^14.0.4", + "react-native-executorch": "0.3.0", + "react-native-image-picker": "^7.2.2", + "react-native-live-audio-stream": "^1.1.1", + "react-native-loading-spinner-overlay": "^3.0.1", + "react-native-reanimated": "^3.16.3", + "react-native-safe-area-context": "^5.0.0", + "react-native-svg": "^15.9.0", + "react-native-svg-transformer": "^1.5.0", + "react-native-wheel-scrollview-picker": "^2.0.6" + }, + "devDependencies": { + "@babel/core": "^7.25.2", + "@types/react": "~18.3.12", + "typescript": "^5.3.3" + }, + "private": true +} diff --git a/examples/speech-to-text/screens/SpeechToTextScreen.tsx b/examples/speech-to-text/screens/SpeechToTextScreen.tsx new file mode 100644 index 0000000000..a6fb0bf93a --- /dev/null +++ b/examples/speech-to-text/screens/SpeechToTextScreen.tsx @@ -0,0 +1,289 @@ +import { useSpeechToText } from 'react-native-executorch'; +import { + Text, + View, + StyleSheet, + SafeAreaView, + TouchableOpacity, +} from 'react-native'; +import LiveAudioStream from 'react-native-live-audio-stream'; +import SWMIcon from '../assets/swm_icon.svg'; +import { useRef, useState } from 'react'; +import { Buffer } from 'buffer'; +import DeviceInfo from 'react-native-device-info'; +import InputPrompt from '../components/TextInputModal'; + +const options = { + sampleRate: 16000, + channels: 1, + bitsPerSample: 16, + audioSource: 1, + bufferSize: 16000, +}; + +const startStreamingAudio = (options: any, onChunk: (data: string) => void) => { + LiveAudioStream.init(options); + LiveAudioStream.on('data', onChunk); + LiveAudioStream.start(); +}; + +const float32ArrayFromPCMBinaryBuffer = (b64EncodedBuffer: string) => { + const b64DecodedChunk = Buffer.from(b64EncodedBuffer, 'base64'); + const int16Array = new Int16Array(b64DecodedChunk.buffer); + + const float32Array = new Float32Array(int16Array.length); + for (let i = 0; i < int16Array.length; i++) { + float32Array[i] = Math.max( + -1, + Math.min(1, (int16Array[i] / options.bufferSize) * 8) + ); + } + return float32Array; +}; + +export const SpeechToTextScreen = () => { + const { + isModelGenerating, + isModelReady, + downloadProgress, + sequence, + error, + transcribe, + loadAudio, + } = useSpeechToText({ modelName: 'moonshine' }); + const [isRecording, setIsRecording] = useState(false); + const [audioUrl, setAudioUrl] = useState(''); + const audioBuffer = useRef([]); + const [modalVisible, setModalVisible] = useState(false); + + const onChunk = (data: string) => { + const float32Chunk = float32ArrayFromPCMBinaryBuffer(data); + audioBuffer.current?.push(...float32Chunk); + }; + + const handleRecordPress = async () => { + if (isRecording) { + LiveAudioStream.stop(); + setIsRecording(false); + await transcribe(audioBuffer.current); + audioBuffer.current = []; + } else { + setIsRecording(true); + startStreamingAudio(options, onChunk); + } + }; + + const buttonDisabled = + modalVisible || isModelGenerating || !isModelReady || isRecording; + const recordingButtonDisabled = + modalVisible || !isModelReady || DeviceInfo.isEmulatorSync(); + + return ( + <> + + + + + {'React Native ExecuTorch'} + + {'Speech to Text demo'} + + {downloadProgress !== 1 ? ( + + + {`Downloading model: ${(Number(downloadProgress.toFixed(4)) * 100).toFixed(2)}%`} + + + ) : ( + + + {sequence || + (isModelGenerating && 'Transcribing...') || + 'Start transcription...'} + + + )} + {error && ( + {`${error}`} + )} + { + setModalVisible(visible); + if (audioUrl) { + await loadAudio(audioUrl); + await transcribe(); + } + }} + onChangeText={setAudioUrl} + value={audioUrl} + /> + + + { + if (!audioUrl) { + setModalVisible(true); + } else { + await loadAudio(audioUrl); + await transcribe(); + } + }} + > + + {'TRANSCRIBE FROM URL'} + + + + + + + + + {isRecording ? 'STOP RECORDING' : 'START RECORDING'} + + {DeviceInfo.isEmulatorSync() && ( + + recording does not work on emulator + + )} + + + + + + ); +}; + +const styles = StyleSheet.create({ + textInput: { + height: 40, + margin: 12, + borderWidth: 1, + padding: 10, + width: '75%', + borderRadius: 20, + }, + imageContainer: { + flex: 6, + width: '100%', + padding: 16, + }, + image: { + flex: 1, + borderRadius: 8, + width: '100%', + }, + mainContainer: { + flex: 1, + justifyContent: 'center', + alignItems: 'center', + marginBottom: 20, + }, + recordingButtonWrapper: { + flex: 1, + justifyContent: 'center', + alignItems: 'center', + padding: 2, + borderWidth: 3, + borderColor: '#001A72', + borderRadius: 50, + }, + recordingButton: { + paddingVertical: 20, + backgroundColor: '#001A72', + justifyContent: 'center', + alignItems: 'center', + width: '100%', + borderRadius: 40, + }, + topContainer: { + marginTop: 80, + flex: 1, + justifyContent: 'center', + alignItems: 'center', + }, + topContainerText: { + height: 35, + fontSize: 30, + marginTop: 5, + color: '#001A72', + fontWeight: '600', + }, + transcriptionContainer: { + flex: 5, + paddingTop: 80, + width: '90%', + }, + transcriptionText: { + fontSize: 13, + fontWeight: '600', + }, + iconsContainer: { + flex: 2, + flexDirection: 'row', + justifyContent: 'center', + alignItems: 'center', + width: '60%', + }, + recordingButtonText: { + color: 'white', + fontWeight: '600', + }, +}); diff --git a/examples/speech-to-text/tsconfig.json b/examples/speech-to-text/tsconfig.json new file mode 100644 index 0000000000..b9567f6052 --- /dev/null +++ b/examples/speech-to-text/tsconfig.json @@ -0,0 +1,6 @@ +{ + "extends": "expo/tsconfig.base", + "compilerOptions": { + "strict": true + } +} diff --git a/examples/speech-to-text/yarn.lock b/examples/speech-to-text/yarn.lock new file mode 100644 index 0000000000..4a8bcc6904 --- /dev/null +++ b/examples/speech-to-text/yarn.lock @@ -0,0 +1,8798 @@ +# This file is generated by running "yarn install" inside your project. +# Manual changes might be lost - proceed with caution! + +__metadata: + version: 6 + cacheKey: 8 + +"@0no-co/graphql.web@npm:^1.0.5, @0no-co/graphql.web@npm:^1.0.8": + version: 1.1.2 + resolution: "@0no-co/graphql.web@npm:1.1.2" + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + peerDependenciesMeta: + graphql: + optional: true + checksum: ddf4f073c9f03c41a5672b9285ad5573f34ad6d40ed73691c128d5332ff6186222ff909949cf6ef07bad8b417bbb5b609636e049700d3727a196111019a7aab4 + languageName: node + linkType: hard + +"@ampproject/remapping@npm:^2.2.0": + version: 2.3.0 + resolution: "@ampproject/remapping@npm:2.3.0" + dependencies: + "@jridgewell/gen-mapping": ^0.3.5 + "@jridgewell/trace-mapping": ^0.3.24 + checksum: d3ad7b89d973df059c4e8e6d7c972cbeb1bb2f18f002a3bd04ae0707da214cb06cc06929b65aa2313b9347463df2914772298bae8b1d7973f246bb3f2ab3e8f0 + languageName: node + linkType: hard + +"@babel/code-frame@npm:7.10.4, @babel/code-frame@npm:~7.10.4": + version: 7.10.4 + resolution: "@babel/code-frame@npm:7.10.4" + dependencies: + "@babel/highlight": ^7.10.4 + checksum: feb4543c8a509fe30f0f6e8d7aa84f82b41148b963b826cd330e34986f649a85cb63b2f13dd4effdf434ac555d16f14940b8ea5f4433297c2f5ff85486ded019 + languageName: node + linkType: hard + +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.24.7, @babel/code-frame@npm:^7.26.2": + version: 7.26.2 + resolution: "@babel/code-frame@npm:7.26.2" + dependencies: + "@babel/helper-validator-identifier": ^7.25.9 + js-tokens: ^4.0.0 + picocolors: ^1.0.0 + checksum: db13f5c42d54b76c1480916485e6900748bbcb0014a8aca87f50a091f70ff4e0d0a6db63cade75eb41fcc3d2b6ba0a7f89e343def4f96f00269b41b8ab8dd7b8 + languageName: node + linkType: hard + +"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.5": + version: 7.26.8 + resolution: "@babel/compat-data@npm:7.26.8" + checksum: 1bb04c6860c8c9555b933cb9c3caf5ef1dac331a37a351efb67956fc679f695d487aea76e792dd43823702c1300f7906f2a298e50b4a8d7ec199ada9c340c365 + languageName: node + linkType: hard + +"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.13.16, @babel/core@npm:^7.20.0, @babel/core@npm:^7.21.3, @babel/core@npm:^7.25.2": + version: 7.26.9 + resolution: "@babel/core@npm:7.26.9" + dependencies: + "@ampproject/remapping": ^2.2.0 + "@babel/code-frame": ^7.26.2 + "@babel/generator": ^7.26.9 + "@babel/helper-compilation-targets": ^7.26.5 + "@babel/helper-module-transforms": ^7.26.0 + "@babel/helpers": ^7.26.9 + "@babel/parser": ^7.26.9 + "@babel/template": ^7.26.9 + "@babel/traverse": ^7.26.9 + "@babel/types": ^7.26.9 + convert-source-map: ^2.0.0 + debug: ^4.1.0 + gensync: ^1.0.0-beta.2 + json5: ^2.2.3 + semver: ^6.3.1 + checksum: b6e33bdcbb8a5c929760548be400d18cbde1f07922a784586752fd544fbf13c71331406ffdb4fcfe53f79c69ceae602efdca654ad4e9ac0c2af47efe87e7fccd + languageName: node + linkType: hard + +"@babel/generator@npm:^7.20.5, @babel/generator@npm:^7.25.0, @babel/generator@npm:^7.26.9": + version: 7.26.9 + resolution: "@babel/generator@npm:7.26.9" + dependencies: + "@babel/parser": ^7.26.9 + "@babel/types": ^7.26.9 + "@jridgewell/gen-mapping": ^0.3.5 + "@jridgewell/trace-mapping": ^0.3.25 + jsesc: ^3.0.2 + checksum: 57d034fb6c77dfd5e0c8ef368ff544e19cb6a27cb70d6ed5ff0552c618153dc6692d31e7d0f3a408e0fec3a519514b846c909316c3078290f3a3c1e463372eae + languageName: node + linkType: hard + +"@babel/helper-annotate-as-pure@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-annotate-as-pure@npm:7.25.9" + dependencies: + "@babel/types": ^7.25.9 + checksum: 41edda10df1ae106a9b4fe617bf7c6df77db992992afd46192534f5cff29f9e49a303231733782dd65c5f9409714a529f215325569f14282046e9d3b7a1ffb6c + languageName: node + linkType: hard + +"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.25.9, @babel/helper-compilation-targets@npm:^7.26.5": + version: 7.26.5 + resolution: "@babel/helper-compilation-targets@npm:7.26.5" + dependencies: + "@babel/compat-data": ^7.26.5 + "@babel/helper-validator-option": ^7.25.9 + browserslist: ^4.24.0 + lru-cache: ^5.1.1 + semver: ^6.3.1 + checksum: 6bc0107613bf1d4d21913606e8e517194e5099a24db2a8374568e56ef4626e8140f9b8f8a4aabc35479f5904459a0aead2a91ee0dc63aae110ccbc2bc4b4fda1 + languageName: node + linkType: hard + +"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.25.9": + version: 7.26.9 + resolution: "@babel/helper-create-class-features-plugin@npm:7.26.9" + dependencies: + "@babel/helper-annotate-as-pure": ^7.25.9 + "@babel/helper-member-expression-to-functions": ^7.25.9 + "@babel/helper-optimise-call-expression": ^7.25.9 + "@babel/helper-replace-supers": ^7.26.5 + "@babel/helper-skip-transparent-expression-wrappers": ^7.25.9 + "@babel/traverse": ^7.26.9 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: d445a660d2cdd92e83c04a60f52a304e54e5cc338796b6add9dec00048f1ad12125f78145ab688d029569a9559ef64f8e0de86f456b9e2630ea46f664ffb8e45 + languageName: node + linkType: hard + +"@babel/helper-create-regexp-features-plugin@npm:^7.25.9": + version: 7.26.3 + resolution: "@babel/helper-create-regexp-features-plugin@npm:7.26.3" + dependencies: + "@babel/helper-annotate-as-pure": ^7.25.9 + regexpu-core: ^6.2.0 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 50a27d8ce6da5c2fa0c62c132c4d27cfeb36e3233ff1e5220d643de3dafe49423b507382f0b72a696fce7486014b134c1e742f55438590f9405d26765b009af0 + languageName: node + linkType: hard + +"@babel/helper-define-polyfill-provider@npm:^0.6.2, @babel/helper-define-polyfill-provider@npm:^0.6.3": + version: 0.6.3 + resolution: "@babel/helper-define-polyfill-provider@npm:0.6.3" + dependencies: + "@babel/helper-compilation-targets": ^7.22.6 + "@babel/helper-plugin-utils": ^7.22.5 + debug: ^4.1.1 + lodash.debounce: ^4.0.8 + resolve: ^1.14.2 + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 710e6d8a5391736b9f53f09d0494575c2e03de199ad8d1349bc8e514cb85251ea1f1842c2ff44830849d482052ddb42ae931101002a87a263b12f649c2e57c01 + languageName: node + linkType: hard + +"@babel/helper-member-expression-to-functions@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-member-expression-to-functions@npm:7.25.9" + dependencies: + "@babel/traverse": ^7.25.9 + "@babel/types": ^7.25.9 + checksum: 8e2f1979b6d596ac2a8cbf17f2cf709180fefc274ac3331408b48203fe19134ed87800774ef18838d0275c3965130bae22980d90caed756b7493631d4b2cf961 + languageName: node + linkType: hard + +"@babel/helper-module-imports@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-module-imports@npm:7.25.9" + dependencies: + "@babel/traverse": ^7.25.9 + "@babel/types": ^7.25.9 + checksum: 1b411ce4ca825422ef7065dffae7d8acef52023e51ad096351e3e2c05837e9bf9fca2af9ca7f28dc26d596a588863d0fedd40711a88e350b736c619a80e704e6 + languageName: node + linkType: hard + +"@babel/helper-module-transforms@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/helper-module-transforms@npm:7.26.0" + dependencies: + "@babel/helper-module-imports": ^7.25.9 + "@babel/helper-validator-identifier": ^7.25.9 + "@babel/traverse": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 942eee3adf2b387443c247a2c190c17c4fd45ba92a23087abab4c804f40541790d51ad5277e4b5b1ed8d5ba5b62de73857446b7742f835c18ebd350384e63917 + languageName: node + linkType: hard + +"@babel/helper-optimise-call-expression@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-optimise-call-expression@npm:7.25.9" + dependencies: + "@babel/types": ^7.25.9 + checksum: f09d0ad60c0715b9a60c31841b3246b47d67650c512ce85bbe24a3124f1a4d66377df793af393273bc6e1015b0a9c799626c48e53747581c1582b99167cc65dc + languageName: node + linkType: hard + +"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.25.9, @babel/helper-plugin-utils@npm:^7.26.5, @babel/helper-plugin-utils@npm:^7.8.0": + version: 7.26.5 + resolution: "@babel/helper-plugin-utils@npm:7.26.5" + checksum: 4771fbb1711c624c62d12deabc2ed7435a6e6994b6ce09d5ede1bc1bf19be59c3775461a1e693bdd596af865685e87bb2abc778f62ceadc1b2095a8e2aa74180 + languageName: node + linkType: hard + +"@babel/helper-remap-async-to-generator@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-remap-async-to-generator@npm:7.25.9" + dependencies: + "@babel/helper-annotate-as-pure": ^7.25.9 + "@babel/helper-wrap-function": ^7.25.9 + "@babel/traverse": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: ea37ad9f8f7bcc27c109963b8ebb9d22bac7a5db2a51de199cb560e251d5593fe721e46aab2ca7d3e7a24b0aa4aff0eaf9c7307af9c2fd3a1d84268579073052 + languageName: node + linkType: hard + +"@babel/helper-replace-supers@npm:^7.25.9, @babel/helper-replace-supers@npm:^7.26.5": + version: 7.26.5 + resolution: "@babel/helper-replace-supers@npm:7.26.5" + dependencies: + "@babel/helper-member-expression-to-functions": ^7.25.9 + "@babel/helper-optimise-call-expression": ^7.25.9 + "@babel/traverse": ^7.26.5 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: c5ab31b29c7cc09e30278f8860ecdb873ce6c84b5c08bc5239c369c7c4fe9f0a63cda61b55b7bbd20edb4e5dc32e73087cc3c57d85264834bd191551d1499185 + languageName: node + linkType: hard + +"@babel/helper-skip-transparent-expression-wrappers@npm:^7.20.0, @babel/helper-skip-transparent-expression-wrappers@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.25.9" + dependencies: + "@babel/traverse": ^7.25.9 + "@babel/types": ^7.25.9 + checksum: fdbb5248932198bc26daa6abf0d2ac42cab9c2dbb75b7e9f40d425c8f28f09620b886d40e7f9e4e08ffc7aaa2cefe6fc2c44be7c20e81f7526634702fb615bdc + languageName: node + linkType: hard + +"@babel/helper-string-parser@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-string-parser@npm:7.25.9" + checksum: 6435ee0849e101681c1849868278b5aee82686ba2c1e27280e5e8aca6233af6810d39f8e4e693d2f2a44a3728a6ccfd66f72d71826a94105b86b731697cdfa99 + languageName: node + linkType: hard + +"@babel/helper-validator-identifier@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-validator-identifier@npm:7.25.9" + checksum: 5b85918cb1a92a7f3f508ea02699e8d2422fe17ea8e82acd445006c0ef7520fbf48e3dbcdaf7b0a1d571fc3a2715a29719e5226636cb6042e15fe6ed2a590944 + languageName: node + linkType: hard + +"@babel/helper-validator-option@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-validator-option@npm:7.25.9" + checksum: 9491b2755948ebbdd68f87da907283698e663b5af2d2b1b02a2765761974b1120d5d8d49e9175b167f16f72748ffceec8c9cf62acfbee73f4904507b246e2b3d + languageName: node + linkType: hard + +"@babel/helper-wrap-function@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-wrap-function@npm:7.25.9" + dependencies: + "@babel/template": ^7.25.9 + "@babel/traverse": ^7.25.9 + "@babel/types": ^7.25.9 + checksum: 8ec1701e60ae004415800c4a7a188f5564c73b4e4f3fdf58dd3f34a3feaa9753173f39bbd6d02e7ecc974f48155efc7940e62584435b3092c07728ee46a604ea + languageName: node + linkType: hard + +"@babel/helpers@npm:^7.26.9": + version: 7.26.9 + resolution: "@babel/helpers@npm:7.26.9" + dependencies: + "@babel/template": ^7.26.9 + "@babel/types": ^7.26.9 + checksum: 06363f8288a24c1cfda03eccd775ac22f79cba319b533cb0e5d0f2a04a33512881cc3f227a4c46324935504fb92999cc4758b69b5e7b3846107eadcb5ee0abca + languageName: node + linkType: hard + +"@babel/highlight@npm:^7.10.4": + version: 7.25.9 + resolution: "@babel/highlight@npm:7.25.9" + dependencies: + "@babel/helper-validator-identifier": ^7.25.9 + chalk: ^2.4.2 + js-tokens: ^4.0.0 + picocolors: ^1.0.0 + checksum: a6e0ac0a1c4bef7401915ca3442ab2b7ae4adf360262ca96b91396bfb9578abb28c316abf5e34460b780696db833b550238d9256bdaca60fade4ba7a67645064 + languageName: node + linkType: hard + +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.13.16, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.26.9": + version: 7.26.9 + resolution: "@babel/parser@npm:7.26.9" + dependencies: + "@babel/types": ^7.26.9 + bin: + parser: ./bin/babel-parser.js + checksum: 2df965dbf3c67d19dc437412ceef23033b4d39b0dbd7cb498d8ab9ad9e1738338656ee72676199773b37d658edf9f4161cf255515234fed30695d74e73be5514 + languageName: node + linkType: hard + +"@babel/plugin-proposal-class-properties@npm:^7.13.0": + version: 7.18.6 + resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.18.6 + "@babel/helper-plugin-utils": ^7.18.6 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 49a78a2773ec0db56e915d9797e44fd079ab8a9b2e1716e0df07c92532f2c65d76aeda9543883916b8e0ff13606afeffa67c5b93d05b607bc87653ad18a91422 + languageName: node + linkType: hard + +"@babel/plugin-proposal-decorators@npm:^7.12.9": + version: 7.25.9 + resolution: "@babel/plugin-proposal-decorators@npm:7.25.9" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/plugin-syntax-decorators": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ff598127818ac8e704009f1a9a207766ada5f84f6ca74e9de662cb6ce32bcb846c28fd52d6c5df9c55b4eac9a2a3492aa71fbd5cef0569a14b6f12003df22af2 + languageName: node + linkType: hard + +"@babel/plugin-proposal-export-default-from@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-proposal-export-default-from@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 0fb96b1229ed15ecfb09e6bf40be2da249007155a3deca53d319420a4d3c028c884e888c447898cbcdaa079165e045a8317be6a9205bef0041e7333822a40da9 + languageName: node + linkType: hard + +"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.13.8": + version: 7.18.6 + resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.18.6" + dependencies: + "@babel/helper-plugin-utils": ^7.18.6 + "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 949c9ddcdecdaec766ee610ef98f965f928ccc0361dd87cf9f88cf4896a6ccd62fce063d4494778e50da99dea63d270a1be574a62d6ab81cbe9d85884bf55a7d + languageName: node + linkType: hard + +"@babel/plugin-proposal-optional-chaining@npm:^7.13.12": + version: 7.21.0 + resolution: "@babel/plugin-proposal-optional-chaining@npm:7.21.0" + dependencies: + "@babel/helper-plugin-utils": ^7.20.2 + "@babel/helper-skip-transparent-expression-wrappers": ^7.20.0 + "@babel/plugin-syntax-optional-chaining": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 11c5449e01b18bb8881e8e005a577fa7be2fe5688e2382c8822d51f8f7005342a301a46af7b273b1f5645f9a7b894c428eee8526342038a275ef6ba4c8d8d746 + languageName: node + linkType: hard + +"@babel/plugin-syntax-async-generators@npm:^7.8.4": + version: 7.8.4 + resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367 + languageName: node + linkType: hard + +"@babel/plugin-syntax-bigint@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-bigint@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3a10849d83e47aec50f367a9e56a6b22d662ddce643334b087f9828f4c3dd73bdc5909aaeabe123fed78515767f9ca43498a0e621c438d1cd2802d7fae3c9648 + languageName: node + linkType: hard + +"@babel/plugin-syntax-class-properties@npm:^7.12.13": + version: 7.12.13 + resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" + dependencies: + "@babel/helper-plugin-utils": ^7.12.13 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 24f34b196d6342f28d4bad303612d7ff566ab0a013ce89e775d98d6f832969462e7235f3e7eaf17678a533d4be0ba45d3ae34ab4e5a9dcbda5d98d49e5efa2fc + languageName: node + linkType: hard + +"@babel/plugin-syntax-class-static-block@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3e80814b5b6d4fe17826093918680a351c2d34398a914ce6e55d8083d72a9bdde4fbaf6a2dcea0e23a03de26dc2917ae3efd603d27099e2b98380345703bf948 + languageName: node + linkType: hard + +"@babel/plugin-syntax-decorators@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-syntax-decorators@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: aaf58b17e6aa08f41f93897daa93c601a486233a0375b4231799fc5c4e7c98480aaad3c1c44cf391a62e428c5f6546f76488a1023a4036bb87cd61fa79f1173b + languageName: node + linkType: hard + +"@babel/plugin-syntax-dynamic-import@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ce307af83cf433d4ec42932329fad25fa73138ab39c7436882ea28742e1c0066626d224e0ad2988724c82644e41601cef607b36194f695cb78a1fcdc959637bd + languageName: node + linkType: hard + +"@babel/plugin-syntax-export-default-from@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-syntax-export-default-from@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 8eb254c8050369f3cfac7755230ad9d39a53d1b489e03170684d6b514a0d09ad6001c38e6dfd271a439a8035a57d60b8be7d3dd80f997c6bc5c7e688ed529517 + languageName: node + linkType: hard + +"@babel/plugin-syntax-flow@npm:^7.12.1, @babel/plugin-syntax-flow@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/plugin-syntax-flow@npm:7.26.0" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: fdc0d0a7b512e00d933e12cf93c785ea4645a193f4b539230b7601cfaa8c704410199318ce9ea14e5fca7d13e9027822f7d81a7871d3e854df26b6af04cc3c6c + languageName: node + linkType: hard + +"@babel/plugin-syntax-import-attributes@npm:^7.24.7": + version: 7.26.0 + resolution: "@babel/plugin-syntax-import-attributes@npm:7.26.0" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c122aa577166c80ee67f75aebebeef4150a132c4d3109d25d7fc058bf802946f883e330f20b78c1d3e3a5ada631c8780c263d2d01b5dbaecc69efefeedd42916 + languageName: node + linkType: hard + +"@babel/plugin-syntax-import-meta@npm:^7.10.4": + version: 7.10.4 + resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 166ac1125d10b9c0c430e4156249a13858c0366d38844883d75d27389621ebe651115cb2ceb6dc011534d5055719fa1727b59f39e1ab3ca97820eef3dcab5b9b + languageName: node + linkType: hard + +"@babel/plugin-syntax-json-strings@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a + languageName: node + linkType: hard + +"@babel/plugin-syntax-jsx@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-syntax-jsx@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bb609d1ffb50b58f0c1bac8810d0e46a4f6c922aa171c458f3a19d66ee545d36e782d3bffbbc1fed0dc65a558bdce1caf5279316583c0fff5a2c1658982a8563 + languageName: node + linkType: hard + +"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4": + version: 7.10.4 + resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: aff33577037e34e515911255cdbb1fd39efee33658aa00b8a5fd3a4b903585112d037cce1cc9e4632f0487dc554486106b79ccd5ea63a2e00df4363f6d4ff886 + languageName: node + linkType: hard + +"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1 + languageName: node + linkType: hard + +"@babel/plugin-syntax-numeric-separator@npm:^7.10.4": + version: 7.10.4 + resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1 + languageName: node + linkType: hard + +"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf + languageName: node + linkType: hard + +"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9 + languageName: node + linkType: hard + +"@babel/plugin-syntax-optional-chaining@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30 + languageName: node + linkType: hard + +"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b317174783e6e96029b743ccff2a67d63d38756876e7e5d0ba53a322e38d9ca452c13354a57de1ad476b4c066dbae699e0ca157441da611117a47af88985ecda + languageName: node + linkType: hard + +"@babel/plugin-syntax-top-level-await@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bbd1a56b095be7820029b209677b194db9b1d26691fe999856462e66b25b281f031f3dfd91b1619e9dcf95bebe336211833b854d0fb8780d618e35667c2d0d7e + languageName: node + linkType: hard + +"@babel/plugin-syntax-typescript@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-syntax-typescript@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 0e9821e8ba7d660c36c919654e4144a70546942ae184e85b8102f2322451eae102cbfadbcadd52ce077a2b44b400ee52394c616feab7b5b9f791b910e933fd33 + languageName: node + linkType: hard + +"@babel/plugin-transform-arrow-functions@npm:^7.0.0-0, @babel/plugin-transform-arrow-functions@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-arrow-functions@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c29f081224859483accf55fb4d091db2aac0dcd0d7954bac5ca889030cc498d3f771aa20eb2e9cd8310084ec394d85fa084b97faf09298b6bc9541182b3eb5bb + languageName: node + linkType: hard + +"@babel/plugin-transform-async-generator-functions@npm:^7.25.4": + version: 7.26.8 + resolution: "@babel/plugin-transform-async-generator-functions@npm:7.26.8" + dependencies: + "@babel/helper-plugin-utils": ^7.26.5 + "@babel/helper-remap-async-to-generator": ^7.25.9 + "@babel/traverse": ^7.26.8 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10424a1bbfbc7ffdb13cef1e832f76bb2d393a9fbfaa1eaa3091a8f6ec3e2ac0b66cf04fca9cb3fb4dbf3d1bd404d72dfce4a3742b4ef21f6271aca7076a65ef + languageName: node + linkType: hard + +"@babel/plugin-transform-async-to-generator@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-async-to-generator@npm:7.25.9" + dependencies: + "@babel/helper-module-imports": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/helper-remap-async-to-generator": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b3ad50fb93c171644d501864620ed23952a46648c4df10dc9c62cc9ad08031b66bd272cfdd708faeee07c23b6251b16f29ce0350473e4c79f0c32178d38ce3a6 + languageName: node + linkType: hard + +"@babel/plugin-transform-block-scoping@npm:^7.25.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-block-scoping@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e869500cfb1995e06e64c9608543b56468639809febfcdd6fcf683bc0bf1be2431cacf2981a168a1a14f4766393e37bc9f7c96d25bc5b5f39a64a8a8ad0bf8e0 + languageName: node + linkType: hard + +"@babel/plugin-transform-class-properties@npm:^7.0.0-0, @babel/plugin-transform-class-properties@npm:^7.25.4": + version: 7.25.9 + resolution: "@babel/plugin-transform-class-properties@npm:7.25.9" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a8d69e2c285486b63f49193cbcf7a15e1d3a5f632c1c07d7a97f65306df7f554b30270b7378dde143f8b557d1f8f6336c643377943dec8ec405e4cd11e90b9ea + languageName: node + linkType: hard + +"@babel/plugin-transform-classes@npm:^7.0.0-0, @babel/plugin-transform-classes@npm:^7.25.4": + version: 7.25.9 + resolution: "@babel/plugin-transform-classes@npm:7.25.9" + dependencies: + "@babel/helper-annotate-as-pure": ^7.25.9 + "@babel/helper-compilation-targets": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/helper-replace-supers": ^7.25.9 + "@babel/traverse": ^7.25.9 + globals: ^11.1.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d12584f72125314cc0fa8c77586ece2888d677788ac75f7393f5da574dfe4e45a556f7e3488fab29c8777ab3e5856d7a2d79f6df02834083aaa9d766440e3c68 + languageName: node + linkType: hard + +"@babel/plugin-transform-computed-properties@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-computed-properties@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/template": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f77fa4bc0c1e0031068172df28852388db6b0f91c268d037905f459607cf1e8ebab00015f9f179f4ad96e11c5f381b635cd5dc4e147a48c7ac79d195ae7542de + languageName: node + linkType: hard + +"@babel/plugin-transform-destructuring@npm:^7.24.8": + version: 7.25.9 + resolution: "@babel/plugin-transform-destructuring@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 965f63077a904828f4adee91393f83644098533442b8217d5a135c23a759a4c252c714074c965676a60d2c33f610f579a4eeb59ffd783724393af61c0ca45fef + languageName: node + linkType: hard + +"@babel/plugin-transform-export-namespace-from@npm:^7.22.11": + version: 7.25.9 + resolution: "@babel/plugin-transform-export-namespace-from@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 4dfe8df86c5b1d085d591290874bb2d78a9063090d71567ed657a418010ad333c3f48af2c974b865f53bbb718987a065f89828d43279a7751db1a56c9229078d + languageName: node + linkType: hard + +"@babel/plugin-transform-flow-strip-types@npm:^7.25.2, @babel/plugin-transform-flow-strip-types@npm:^7.25.9": + version: 7.26.5 + resolution: "@babel/plugin-transform-flow-strip-types@npm:7.26.5" + dependencies: + "@babel/helper-plugin-utils": ^7.26.5 + "@babel/plugin-syntax-flow": ^7.26.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a15ae76aea55f1801a5c8ebdfdd0e4616f256ca1eeb504b0781120242aae5a2174439a084bacd2b9e3e83d2a8463cf10c2a8c9f0f0504ded21144297c2b4a380 + languageName: node + linkType: hard + +"@babel/plugin-transform-for-of@npm:^7.24.7": + version: 7.26.9 + resolution: "@babel/plugin-transform-for-of@npm:7.26.9" + dependencies: + "@babel/helper-plugin-utils": ^7.26.5 + "@babel/helper-skip-transparent-expression-wrappers": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 361323cfc1d9e9dc0bf0d68326b5e7f4da5b8a8be8931f6cacda749d39b88ee1b0f9b4d8b771a5a4d52bb881a90da97950c8a9e6fb47f2c9db11d91f6351768e + languageName: node + linkType: hard + +"@babel/plugin-transform-function-name@npm:^7.25.1": + version: 7.25.9 + resolution: "@babel/plugin-transform-function-name@npm:7.25.9" + dependencies: + "@babel/helper-compilation-targets": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/traverse": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a8d7c8d019a6eb57eab5ca1be3e3236f175557d55b1f3b11f8ad7999e3fbb1cf37905fd8cb3a349bffb4163a558e9f33b63f631597fdc97c858757deac1b2fd7 + languageName: node + linkType: hard + +"@babel/plugin-transform-literals@npm:^7.25.2": + version: 7.25.9 + resolution: "@babel/plugin-transform-literals@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3cca75823a38aab599bc151b0fa4d816b5e1b62d6e49c156aa90436deb6e13649f5505973151a10418b64f3f9d1c3da53e38a186402e0ed7ad98e482e70c0c14 + languageName: node + linkType: hard + +"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 8c6febb4ac53852314d28b5e2c23d5dbbff7bf1e57d61f9672e0d97531ef7778b3f0ad698dcf1179f5486e626c77127508916a65eb846a89e98a92f70ed3537b + languageName: node + linkType: hard + +"@babel/plugin-transform-modules-commonjs@npm:^7.13.8, @babel/plugin-transform-modules-commonjs@npm:^7.24.8, @babel/plugin-transform-modules-commonjs@npm:^7.25.9": + version: 7.26.3 + resolution: "@babel/plugin-transform-modules-commonjs@npm:7.26.3" + dependencies: + "@babel/helper-module-transforms": ^7.26.0 + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 0ac9aa4e5fe9fe34b58ee174881631e5e1c89eee5b1ebfd1147934686be92fc5fbfdc11119f0b607b3743d36a1cbcb7c36f18e0dd4424d6d7b749b1b9a18808a + languageName: node + linkType: hard + +"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.25.9" + dependencies: + "@babel/helper-create-regexp-features-plugin": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 434346ba05cf74e3f4704b3bdd439287b95cd2a8676afcdc607810b8c38b6f4798cd69c1419726b2e4c7204e62e4a04d31b0360e91ca57a930521c9211e07789 + languageName: node + linkType: hard + +"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.0.0-0, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.7": + version: 7.26.6 + resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.26.6" + dependencies: + "@babel/helper-plugin-utils": ^7.26.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 752837d532b85c41f6bb868e83809605f513bc9a3b8e88ac3d43757c9bf839af4f246874c1c6d6902bb2844d355efccae602c3856098911f8abdd603672f8379 + languageName: node + linkType: hard + +"@babel/plugin-transform-numeric-separator@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-numeric-separator@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 0528ef041ed88e8c3f51624ee87b8182a7f246fe4013f0572788e0727d20795b558f2b82e3989b5dd416cbd339500f0d88857de41b6d3b6fdacb1d5344bcc5b1 + languageName: node + linkType: hard + +"@babel/plugin-transform-object-rest-spread@npm:^7.12.13, @babel/plugin-transform-object-rest-spread@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-object-rest-spread@npm:7.25.9" + dependencies: + "@babel/helper-compilation-targets": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/plugin-transform-parameters": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a8ff73e1c46a03056b3a2236bafd6b3a4b83da93afe7ee24a50d0a8088150bf85bc5e5977daa04e66ff5fb7613d02d63ad49b91ebb64cf3f3022598d722e3a7a + languageName: node + linkType: hard + +"@babel/plugin-transform-optional-catch-binding@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b46a8d1e91829f3db5c252583eb00d05a779b4660abeea5500fda0f8ffa3584fd18299443c22f7fddf0ed9dfdb73c782c43b445dc468d4f89803f2356963b406 + languageName: node + linkType: hard + +"@babel/plugin-transform-optional-chaining@npm:^7.0.0-0, @babel/plugin-transform-optional-chaining@npm:^7.24.8": + version: 7.25.9 + resolution: "@babel/plugin-transform-optional-chaining@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/helper-skip-transparent-expression-wrappers": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f1642a7094456067e82b176e1e9fd426fda7ed9df54cb6d10109fc512b622bf4b3c83acc5875125732b8622565107fdbe2d60fe3ec8685e1d1c22c38c1b57782 + languageName: node + linkType: hard + +"@babel/plugin-transform-parameters@npm:^7.22.15, @babel/plugin-transform-parameters@npm:^7.24.7, @babel/plugin-transform-parameters@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-parameters@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d7ba2a7d05edbc85aed741289b0ff3d6289a1c25d82ac4be32c565f88a66391f46631aad59ceeed40824037f7eeaa7a0de1998db491f50e65a565cd964f78786 + languageName: node + linkType: hard + +"@babel/plugin-transform-private-methods@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-private-methods@npm:7.25.9" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 6e3671b352c267847c53a170a1937210fa8151764d70d25005e711ef9b21969aaf422acc14f9f7fb86bc0e4ec43e7aefcc0ad9196ae02d262ec10f509f126a58 + languageName: node + linkType: hard + +"@babel/plugin-transform-private-property-in-object@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-private-property-in-object@npm:7.25.9" + dependencies: + "@babel/helper-annotate-as-pure": ^7.25.9 + "@babel/helper-create-class-features-plugin": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 9ce3e983fea9b9ba677c192aa065c0b42ebdc7774be4c02135df09029ad92a55c35b004650c75952cb64d650872ed18f13ab64422c6fc891d06333762caa8a0a + languageName: node + linkType: hard + +"@babel/plugin-transform-react-display-name@npm:^7.24.7, @babel/plugin-transform-react-display-name@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-display-name@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: cd7020494e6f31c287834e8929e6a718d5b0ace21232fa30feb48622c2312045504c34b347dcff9e88145c349882b296a7d6b6cc3d3447d8c85502f16471747c + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx-development@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-jsx-development@npm:7.25.9" + dependencies: + "@babel/plugin-transform-react-jsx": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 537d38369537f1eb56041c4b770bc0733fde1801a7f5ffef40a1217ea448f33ee2fa8e6098a58a82fd00e432c1b9426a66849496da419020c9eca3b1b1a23779 + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx-self@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-jsx-self@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 41c833cd7f91b1432710f91b1325706e57979b2e8da44e83d86312c78bbe96cd9ef778b4e79e4e17ab25fa32c72b909f2be7f28e876779ede28e27506c41f4ae + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx-source@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-jsx-source@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a3e0e5672e344e9d01fb20b504fe29a84918eaa70cec512c4d4b1b035f72803261257343d8e93673365b72c371f35cf34bb0d129720bf178a4c87812c8b9c662 + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx@npm:^7.25.2, @babel/plugin-transform-react-jsx@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-jsx@npm:7.25.9" + dependencies: + "@babel/helper-annotate-as-pure": ^7.25.9 + "@babel/helper-module-imports": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/plugin-syntax-jsx": ^7.25.9 + "@babel/types": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 5c6523c3963e3c6cf4c3cc2768a3766318af05b8f6c17aff52a4010e2c170e87b2fcdc94e9c9223ae12158664df4852ce81b9c8d042c15ea8fd83d6375f9f30f + languageName: node + linkType: hard + +"@babel/plugin-transform-react-pure-annotations@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.25.9" + dependencies: + "@babel/helper-annotate-as-pure": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 9995c0fc7c25d3aaaa0ce84233de02eab2564ea111d0813ec5baa538eb21520402879cc787ad1ad4c2061b99cebc3beb09910e64c9592e8ccb42ae62d9e4fd9a + languageName: node + linkType: hard + +"@babel/plugin-transform-regenerator@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-regenerator@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + regenerator-transform: ^0.15.2 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 1c09e8087b476c5967282c9790fb8710e065eda77c60f6cb5da541edd59ded9d003d96f8ef640928faab4a0b35bf997673499a194973da4f0c97f0935807a482 + languageName: node + linkType: hard + +"@babel/plugin-transform-runtime@npm:^7.24.7": + version: 7.26.9 + resolution: "@babel/plugin-transform-runtime@npm:7.26.9" + dependencies: + "@babel/helper-module-imports": ^7.25.9 + "@babel/helper-plugin-utils": ^7.26.5 + babel-plugin-polyfill-corejs2: ^0.4.10 + babel-plugin-polyfill-corejs3: ^0.10.6 + babel-plugin-polyfill-regenerator: ^0.6.1 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2d32d4c8b2f8b048114bb2b04f65937a35ca5a2dbf3a76a6e53eef78f383262460e8b23bd113b97f30a4ce55e7ef5fafd421f81de602ad7a268fdc058122a184 + languageName: node + linkType: hard + +"@babel/plugin-transform-shorthand-properties@npm:^7.0.0-0, @babel/plugin-transform-shorthand-properties@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-shorthand-properties@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f774995d58d4e3a992b732cf3a9b8823552d471040e280264dd15e0735433d51b468fef04d75853d061309389c66bda10ce1b298297ce83999220eb0ad62741d + languageName: node + linkType: hard + +"@babel/plugin-transform-spread@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-spread@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/helper-skip-transparent-expression-wrappers": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2403a5d49171b7714d5e5ecb1f598c61575a4dbe5e33e5a5f08c0ea990b75e693ca1ea983b6a96b2e3e5e7da48c8238333f525e47498c53b577c5d094d964c06 + languageName: node + linkType: hard + +"@babel/plugin-transform-sticky-regex@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-sticky-regex@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 7454b00844dbe924030dd15e2b3615b36e196500c4c47e98dabc6b37a054c5b1038ecd437e910aabf0e43bf56b973cb148d3437d50f6e2332d8309568e3e979b + languageName: node + linkType: hard + +"@babel/plugin-transform-template-literals@npm:^7.0.0-0": + version: 7.26.8 + resolution: "@babel/plugin-transform-template-literals@npm:7.26.8" + dependencies: + "@babel/helper-plugin-utils": ^7.26.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 65874c8844ce906507cd5b9c78950d6173f8339b6416a2a9e763021db5a7045315a6f0e58976ec4af5e960c003ef322576c105130a644addb8f94d1a0821a972 + languageName: node + linkType: hard + +"@babel/plugin-transform-typescript@npm:^7.25.2, @babel/plugin-transform-typescript@npm:^7.25.9": + version: 7.26.8 + resolution: "@babel/plugin-transform-typescript@npm:7.26.8" + dependencies: + "@babel/helper-annotate-as-pure": ^7.25.9 + "@babel/helper-create-class-features-plugin": ^7.25.9 + "@babel/helper-plugin-utils": ^7.26.5 + "@babel/helper-skip-transparent-expression-wrappers": ^7.25.9 + "@babel/plugin-syntax-typescript": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3d8866f2c5cb70d27bfb724bf205f073b59d04fe7e535c63439968579dc79b69055681088b522dab49695bdf1365b00e22aee11e3f3253381e554d89a8aa9dd6 + languageName: node + linkType: hard + +"@babel/plugin-transform-unicode-regex@npm:^7.0.0-0, @babel/plugin-transform-unicode-regex@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-unicode-regex@npm:7.25.9" + dependencies: + "@babel/helper-create-regexp-features-plugin": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e8baae867526e179467c6ef5280d70390fa7388f8763a19a27c21302dd59b121032568be080749514b097097ceb9af716bf4b90638f1b3cf689aa837ba20150f + languageName: node + linkType: hard + +"@babel/preset-flow@npm:^7.13.13": + version: 7.25.9 + resolution: "@babel/preset-flow@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/helper-validator-option": ^7.25.9 + "@babel/plugin-transform-flow-strip-types": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b1591ea63a7ace7e34bcefa6deba9e2814d7f082e3c074e2648efb68a1a49016ccefbea024156ba28bd3042a4e768e3eb8b5ecfe433978144fdaaadd36203ba2 + languageName: node + linkType: hard + +"@babel/preset-react@npm:^7.22.15": + version: 7.26.3 + resolution: "@babel/preset-react@npm:7.26.3" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/helper-validator-option": ^7.25.9 + "@babel/plugin-transform-react-display-name": ^7.25.9 + "@babel/plugin-transform-react-jsx": ^7.25.9 + "@babel/plugin-transform-react-jsx-development": ^7.25.9 + "@babel/plugin-transform-react-pure-annotations": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 9c76f145026715c8e4a1f6c44f208918e700227d8d8a8068f4ae10d87031d23eb8b483e508cd4452d65066f731b7a8169527e66e83ffe165595e8db7899dd859 + languageName: node + linkType: hard + +"@babel/preset-typescript@npm:^7.13.0, @babel/preset-typescript@npm:^7.16.7, @babel/preset-typescript@npm:^7.23.0": + version: 7.26.0 + resolution: "@babel/preset-typescript@npm:7.26.0" + dependencies: + "@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 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 6d8641fa6efd0e10eec5e8f92cd164b916a06d57131cfa5216c281404289c87d2b4995140a1c1d9c3bad171ff6ef2226be5f0585e09577ffff349706e991ec71 + languageName: node + linkType: hard + +"@babel/register@npm:^7.13.16": + version: 7.25.9 + resolution: "@babel/register@npm:7.25.9" + dependencies: + clone-deep: ^4.0.1 + find-cache-dir: ^2.0.0 + make-dir: ^2.1.0 + pirates: ^4.0.6 + source-map-support: ^0.5.16 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 1df38d9ed6fd60feb0a82e1926508bca8f60915ee8a12ab9f6c9714a8f13bafc7865409c7fa92604a5b79ba84f7990181b312bc469bfdfa30dd79655b3260b85 + languageName: node + linkType: hard + +"@babel/runtime@npm:^7.20.0, @babel/runtime@npm:^7.25.0, @babel/runtime@npm:^7.8.4": + version: 7.26.9 + resolution: "@babel/runtime@npm:7.26.9" + dependencies: + regenerator-runtime: ^0.14.0 + checksum: 838492d8a925092f9ccfbd82ec183a54f430af3a4ce88fb1337a4570629202d5123bad3097a5b8df53822504d12ccb29f45c0f6842e86094f0164f17a51eec92 + languageName: node + linkType: hard + +"@babel/template@npm:^7.25.0, @babel/template@npm:^7.25.9, @babel/template@npm:^7.26.9, @babel/template@npm:^7.3.3": + version: 7.26.9 + resolution: "@babel/template@npm:7.26.9" + dependencies: + "@babel/code-frame": ^7.26.2 + "@babel/parser": ^7.26.9 + "@babel/types": ^7.26.9 + checksum: 32259298c775e543ab994daff0c758b3d6a184349b146d6497aa46cec5907bc47a6bc09e7295a81a5eccfbd023d4811a9777cb5d698d582d09a87cabf5b576e7 + languageName: node + linkType: hard + +"@babel/traverse--for-generate-function-map@npm:@babel/traverse@^7.25.3, @babel/traverse@npm:^7.25.3, @babel/traverse@npm:^7.25.9, @babel/traverse@npm:^7.26.5, @babel/traverse@npm:^7.26.8, @babel/traverse@npm:^7.26.9": + version: 7.26.9 + resolution: "@babel/traverse@npm:7.26.9" + dependencies: + "@babel/code-frame": ^7.26.2 + "@babel/generator": ^7.26.9 + "@babel/parser": ^7.26.9 + "@babel/template": ^7.26.9 + "@babel/types": ^7.26.9 + debug: ^4.3.1 + globals: ^11.1.0 + checksum: d42d3a5e61422d96467f517447b5e254edbd64e4dbf3e13b630704d1f49beaa5209246dc6f45ba53522293bd4760ff720496d2c1ef189ecce52e9e63d9a59aa8 + languageName: node + linkType: hard + +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.9, @babel/types@npm:^7.3.3": + version: 7.26.9 + resolution: "@babel/types@npm:7.26.9" + dependencies: + "@babel/helper-string-parser": ^7.25.9 + "@babel/helper-validator-identifier": ^7.25.9 + checksum: cc124c149615deb30343a4c81ac5b0e3a68bdb4b1bd61a91a2859ee8e5e5f400f6ff65be4740f407c17bfc09baa9c777e7f8f765dccf3284963956b67ac95a38 + languageName: node + linkType: hard + +"@expo/bunyan@npm:^4.0.0": + version: 4.0.1 + resolution: "@expo/bunyan@npm:4.0.1" + dependencies: + uuid: ^8.0.0 + checksum: 7a503cf202ef26bd151ef31be63fdac113a27edd1e5703aee96326c3b7bea349e09e706a18854c251b313814a05673d5041eaea4c018667d9afa2c583d821af7 + languageName: node + linkType: hard + +"@expo/cli@npm:0.22.18": + version: 0.22.18 + resolution: "@expo/cli@npm:0.22.18" + dependencies: + "@0no-co/graphql.web": ^1.0.8 + "@babel/runtime": ^7.20.0 + "@expo/code-signing-certificates": ^0.0.5 + "@expo/config": ~10.0.10 + "@expo/config-plugins": ~9.0.15 + "@expo/devcert": ^1.1.2 + "@expo/env": ~0.4.2 + "@expo/image-utils": ^0.6.5 + "@expo/json-file": ^9.0.2 + "@expo/metro-config": ~0.19.11 + "@expo/osascript": ^2.1.6 + "@expo/package-manager": ^1.7.2 + "@expo/plist": ^0.2.2 + "@expo/prebuild-config": ^8.0.28 + "@expo/rudder-sdk-node": ^1.1.1 + "@expo/spawn-async": ^1.7.2 + "@expo/ws-tunnel": ^1.0.1 + "@expo/xcpretty": ^4.3.0 + "@react-native/dev-middleware": 0.76.7 + "@urql/core": ^5.0.6 + "@urql/exchange-retry": ^1.3.0 + accepts: ^1.3.8 + arg: ^5.0.2 + better-opn: ~3.0.2 + bplist-creator: 0.0.7 + bplist-parser: ^0.3.1 + cacache: ^18.0.2 + chalk: ^4.0.0 + ci-info: ^3.3.0 + compression: ^1.7.4 + connect: ^3.7.0 + debug: ^4.3.4 + env-editor: ^0.4.1 + fast-glob: ^3.3.2 + form-data: ^3.0.1 + freeport-async: ^2.0.0 + fs-extra: ~8.1.0 + getenv: ^1.0.0 + glob: ^10.4.2 + internal-ip: ^4.3.0 + is-docker: ^2.0.0 + is-wsl: ^2.1.1 + lodash.debounce: ^4.0.8 + minimatch: ^3.0.4 + node-forge: ^1.3.1 + npm-package-arg: ^11.0.0 + ora: ^3.4.0 + picomatch: ^3.0.1 + pretty-bytes: ^5.6.0 + pretty-format: ^29.7.0 + progress: ^2.0.3 + prompts: ^2.3.2 + qrcode-terminal: 0.11.0 + require-from-string: ^2.0.2 + requireg: ^0.2.2 + resolve: ^1.22.2 + resolve-from: ^5.0.0 + resolve.exports: ^2.0.3 + semver: ^7.6.0 + send: ^0.19.0 + slugify: ^1.3.4 + source-map-support: ~0.5.21 + stacktrace-parser: ^0.1.10 + structured-headers: ^0.4.1 + tar: ^6.2.1 + temp-dir: ^2.0.0 + tempy: ^0.7.1 + terminal-link: ^2.1.1 + undici: ^6.18.2 + unique-string: ~2.0.0 + wrap-ansi: ^7.0.0 + ws: ^8.12.1 + bin: + expo-internal: build/bin/cli + checksum: e33ba0c9acbf5e22076af06ddb4165b31a2b763d401661334abe435589ac456c25bd5416dea5c355b3b6eed7cac07c7a9277ab5f321046cdda05ac3716d43c5e + languageName: node + linkType: hard + +"@expo/code-signing-certificates@npm:^0.0.5": + version: 0.0.5 + resolution: "@expo/code-signing-certificates@npm:0.0.5" + dependencies: + node-forge: ^1.2.1 + nullthrows: ^1.1.1 + checksum: 4a1c73a6bc74443284a45db698ede874c7d47f6ed58cf44adaa255139490c8754d81dc1556247f3782cdc5034382fb72f23b0033daa2117facad4eb13b841e37 + languageName: node + linkType: hard + +"@expo/config-plugins@npm:~9.0.15": + version: 9.0.16 + resolution: "@expo/config-plugins@npm:9.0.16" + dependencies: + "@expo/config-types": ^52.0.5 + "@expo/json-file": ~9.0.2 + "@expo/plist": ^0.2.2 + "@expo/sdk-runtime-versions": ^1.0.0 + chalk: ^4.1.2 + debug: ^4.3.5 + getenv: ^1.0.0 + glob: ^10.4.2 + resolve-from: ^5.0.0 + semver: ^7.5.4 + slash: ^3.0.0 + slugify: ^1.6.6 + xcode: ^3.0.1 + xml2js: 0.6.0 + checksum: 717a8868c9a3a718c21461a1679897da5cc6bf97ff0b4b361fed3f453004bad97ac29ba7bd1e24614b04f103af950fb7014bddb23f74e19e7364b0a75591f3c6 + languageName: node + linkType: hard + +"@expo/config-types@npm:^52.0.4, @expo/config-types@npm:^52.0.5": + version: 52.0.5 + resolution: "@expo/config-types@npm:52.0.5" + checksum: 2e8aa1a0d88e788868df494709f7a2544ef4ff555b038bfe5f6a8e4ee0d20c1e1239e58504026bf0e41afc9422532a8aee6cb0fe121bb8b71ea5521fd9bb27d0 + languageName: node + linkType: hard + +"@expo/config@npm:~10.0.10": + version: 10.0.10 + resolution: "@expo/config@npm:10.0.10" + dependencies: + "@babel/code-frame": ~7.10.4 + "@expo/config-plugins": ~9.0.15 + "@expo/config-types": ^52.0.4 + "@expo/json-file": ^9.0.2 + deepmerge: ^4.3.1 + getenv: ^1.0.0 + glob: ^10.4.2 + require-from-string: ^2.0.2 + resolve-from: ^5.0.0 + resolve-workspace-root: ^2.0.0 + semver: ^7.6.0 + slugify: ^1.3.4 + sucrase: 3.35.0 + checksum: ba9c4a4eaa714824ecc88d27df09bef532268abcad25fd06cc79dfbb8f592e591d3d3afd3288041535be94155536eb5f0c65ab718f661f2d16cbcb881b003a71 + languageName: node + linkType: hard + +"@expo/devcert@npm:^1.1.2": + version: 1.1.4 + resolution: "@expo/devcert@npm:1.1.4" + dependencies: + application-config-path: ^0.1.0 + command-exists: ^1.2.4 + debug: ^3.1.0 + eol: ^0.9.1 + get-port: ^3.2.0 + glob: ^10.4.2 + lodash: ^4.17.21 + mkdirp: ^0.5.1 + password-prompt: ^1.0.4 + sudo-prompt: ^8.2.0 + tmp: ^0.0.33 + tslib: ^2.4.0 + checksum: a6bb5ba18d1d4fe5ebfa096f8d332f14bbe8bb942bc3650debf89fb68b5637bd5b7b22f9b28d5971965436bf83d442e843ac7e0e1e7408cce6e575b55c830b6d + languageName: node + linkType: hard + +"@expo/env@npm:~0.4.2": + version: 0.4.2 + resolution: "@expo/env@npm:0.4.2" + dependencies: + chalk: ^4.0.0 + debug: ^4.3.4 + dotenv: ~16.4.5 + dotenv-expand: ~11.0.6 + getenv: ^1.0.0 + checksum: cc9264e50faf5f38e6253b5c97e775bc8cb29bf8ca37bcd427cbb67dd773a4e62a2bdb030904565bac4644eac89e10fc61206d5aa42e5b1f26acf5ca1f6b9ce9 + languageName: node + linkType: hard + +"@expo/fingerprint@npm:0.11.11": + version: 0.11.11 + resolution: "@expo/fingerprint@npm:0.11.11" + dependencies: + "@expo/spawn-async": ^1.7.2 + arg: ^5.0.2 + chalk: ^4.1.2 + debug: ^4.3.4 + find-up: ^5.0.0 + getenv: ^1.0.0 + minimatch: ^3.0.4 + p-limit: ^3.1.0 + resolve-from: ^5.0.0 + semver: ^7.6.0 + bin: + fingerprint: bin/cli.js + checksum: ef98fc8a4d7026ad409063f5a5776bf89375e4869bbcb5e4b2f3315bb1af75300d1f07107da458ff010dd71b295513e15838a0de91daed877a68dc52790b3adc + languageName: node + linkType: hard + +"@expo/image-utils@npm:^0.6.5": + version: 0.6.5 + resolution: "@expo/image-utils@npm:0.6.5" + dependencies: + "@expo/spawn-async": ^1.7.2 + chalk: ^4.0.0 + fs-extra: 9.0.0 + getenv: ^1.0.0 + jimp-compact: 0.16.1 + parse-png: ^2.1.0 + resolve-from: ^5.0.0 + semver: ^7.6.0 + temp-dir: ~2.0.0 + unique-string: ~2.0.0 + checksum: f6fe5efd518d84463d767a4fb8a920d8b70779c8d93ba07ef407e0f016452324e3da6cff8292d0e2b436facdaef0073b8d527881e73ff5ba0288b4c942cdb539 + languageName: node + linkType: hard + +"@expo/json-file@npm:^9.0.2, @expo/json-file@npm:~9.0.2": + version: 9.0.2 + resolution: "@expo/json-file@npm:9.0.2" + dependencies: + "@babel/code-frame": ~7.10.4 + json5: ^2.2.3 + write-file-atomic: ^2.3.0 + checksum: 665fb72028e403adcb3ff9d7763ff6fab0ce16eaa1485a6b502daaab709608a9953599cce2f5c46e91b4791bd2380c87eb911deef4161b9d1f3a7631c2630366 + languageName: node + linkType: hard + +"@expo/metro-config@npm:0.19.11, @expo/metro-config@npm:~0.19.11": + version: 0.19.11 + resolution: "@expo/metro-config@npm:0.19.11" + dependencies: + "@babel/core": ^7.20.0 + "@babel/generator": ^7.20.5 + "@babel/parser": ^7.20.0 + "@babel/types": ^7.20.0 + "@expo/config": ~10.0.10 + "@expo/env": ~0.4.2 + "@expo/json-file": ~9.0.2 + "@expo/spawn-async": ^1.7.2 + chalk: ^4.1.0 + debug: ^4.3.2 + fs-extra: ^9.1.0 + getenv: ^1.0.0 + glob: ^10.4.2 + jsc-safe-url: ^0.2.4 + lightningcss: ~1.27.0 + minimatch: ^3.0.4 + postcss: ~8.4.32 + resolve-from: ^5.0.0 + checksum: 3dc22f8cb388a310a9a65123ef25e18d916a375e77146747166af04e744af83d3b5f7f12d4cd4d53449e10c7ab7eeb9aa87de325827f1c4e25ff3a14bc3d8ffd + languageName: node + linkType: hard + +"@expo/osascript@npm:^2.1.6": + version: 2.1.6 + resolution: "@expo/osascript@npm:2.1.6" + dependencies: + "@expo/spawn-async": ^1.7.2 + exec-async: ^2.2.0 + checksum: 93883d448ac1c829377035369e7ab72133f0104553c31278185aba94605b25349f006e48a86e0a94794a35c26d42f64d7ee6128bb95319dd20af9e7b166210b1 + languageName: node + linkType: hard + +"@expo/package-manager@npm:^1.7.2": + version: 1.7.2 + resolution: "@expo/package-manager@npm:1.7.2" + dependencies: + "@expo/json-file": ^9.0.2 + "@expo/spawn-async": ^1.7.2 + ansi-regex: ^5.0.0 + chalk: ^4.0.0 + find-up: ^5.0.0 + js-yaml: ^3.13.1 + micromatch: ^4.0.8 + npm-package-arg: ^11.0.0 + ora: ^3.4.0 + resolve-workspace-root: ^2.0.0 + split: ^1.0.1 + sudo-prompt: 9.1.1 + checksum: cbf95b5ea1bc4dfde02631d945b36f46540066acb44f6205873c559e0ebd8d5b6bf21e3fc46f5cbd5f06ea65d29708bf8bdb53d2e820a6e6134fcb535447f6d7 + languageName: node + linkType: hard + +"@expo/plist@npm:^0.2.2": + version: 0.2.2 + resolution: "@expo/plist@npm:0.2.2" + dependencies: + "@xmldom/xmldom": ~0.7.7 + base64-js: ^1.2.3 + xmlbuilder: ^14.0.0 + checksum: ccc8256f07352e327092132d885c3e2291f14b3ef6060065eb11080f130a575012cfff7ae92c579b5e04cc6b2587930caed70e277c2f1f5b63591e39366e659a + languageName: node + linkType: hard + +"@expo/prebuild-config@npm:^8.0.28": + version: 8.0.28 + resolution: "@expo/prebuild-config@npm:8.0.28" + dependencies: + "@expo/config": ~10.0.10 + "@expo/config-plugins": ~9.0.15 + "@expo/config-types": ^52.0.4 + "@expo/image-utils": ^0.6.5 + "@expo/json-file": ^9.0.2 + "@react-native/normalize-colors": 0.76.7 + debug: ^4.3.1 + fs-extra: ^9.0.0 + resolve-from: ^5.0.0 + semver: ^7.6.0 + xml2js: 0.6.0 + checksum: 30592c1dd4c8d73fdb2badb5b37e8d5040723a9c06877152f364516363ffca5d2cf624b31b1f7748bcaaac766c6b1d51f557addd25e93175f743d77fcec8d67c + languageName: node + linkType: hard + +"@expo/rudder-sdk-node@npm:^1.1.1": + version: 1.1.1 + resolution: "@expo/rudder-sdk-node@npm:1.1.1" + dependencies: + "@expo/bunyan": ^4.0.0 + "@segment/loosely-validate-event": ^2.0.0 + fetch-retry: ^4.1.1 + md5: ^2.2.1 + node-fetch: ^2.6.1 + remove-trailing-slash: ^0.1.0 + uuid: ^8.3.2 + checksum: 5ce50c1a82f899b135600cb29cddf3fab601938700c8203f16a1394d2ffbf9e2cdd246b92ff635f8415121072d99a7b4a370f715b78f6680594b5a630e8d78c6 + languageName: node + linkType: hard + +"@expo/sdk-runtime-versions@npm:^1.0.0": + version: 1.0.0 + resolution: "@expo/sdk-runtime-versions@npm:1.0.0" + checksum: 0942d5a356f590e8dc795761456cc48b3e2d6a38ad2a02d6774efcdc5a70424e05623b4e3e5d2fec0cdc30f40dde05c14391c781607eed3971bf8676518bfd9d + languageName: node + linkType: hard + +"@expo/spawn-async@npm:^1.7.2": + version: 1.7.2 + resolution: "@expo/spawn-async@npm:1.7.2" + dependencies: + cross-spawn: ^7.0.3 + checksum: d99e5ff6d303ec9b0105f97c4fa6c65bca526c7d4d0987997c35cc745fa8224adf009942d01808192ebb9fa30619a53316641958631e85cf17b773d9eeda2597 + languageName: node + linkType: hard + +"@expo/vector-icons@npm:^14.0.0": + version: 14.0.4 + resolution: "@expo/vector-icons@npm:14.0.4" + dependencies: + prop-types: ^15.8.1 + checksum: 31bd5d4e4e2f0b0620b7e8b55b0c5691875cf57c5737bd0ccef0017d0e7abee66352f3d66a58997b719bd0720cccf8f5119503c69fe1a30398747306ebefeb6e + languageName: node + linkType: hard + +"@expo/ws-tunnel@npm:^1.0.1": + version: 1.0.5 + resolution: "@expo/ws-tunnel@npm:1.0.5" + checksum: 28779c2ef34902044122c7c47400a58f971eb3dc2a8b36cc6529660936890cec7fa28628285c4738e9607a215214417df512c13302747f90b00be49493a3de14 + languageName: node + linkType: hard + +"@expo/xcpretty@npm:^4.3.0": + version: 4.3.2 + resolution: "@expo/xcpretty@npm:4.3.2" + dependencies: + "@babel/code-frame": 7.10.4 + chalk: ^4.1.0 + find-up: ^5.0.0 + js-yaml: ^4.1.0 + bin: + excpretty: build/cli.js + checksum: 8771b2812f0dfc49f6dab4338c986beaf4cf2ec20ed8fd598be6e3803fcbfc0a337dbb5b4dad9556b85ba2489f63c777735ad2c2ee6f5842ff68b9322e47f6a3 + languageName: node + linkType: hard + +"@isaacs/cliui@npm:^8.0.2": + version: 8.0.2 + resolution: "@isaacs/cliui@npm:8.0.2" + 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" + checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb + languageName: node + linkType: hard + +"@isaacs/fs-minipass@npm:^4.0.0": + version: 4.0.1 + resolution: "@isaacs/fs-minipass@npm:4.0.1" + dependencies: + minipass: ^7.0.4 + checksum: 5d36d289960e886484362d9eb6a51d1ea28baed5f5d0140bbe62b99bac52eaf06cc01c2bc0d3575977962f84f6b2c4387b043ee632216643d4787b0999465bf2 + languageName: node + linkType: hard + +"@isaacs/ttlcache@npm:^1.4.1": + version: 1.4.1 + resolution: "@isaacs/ttlcache@npm:1.4.1" + checksum: b99f0918faf1eba405b6bc3421584282b2edc46cca23f8d8e112a643bf6e4506c6c53a4525901118e229d19c5719bbec3028ec438d758fd71081f6c32af871ec + languageName: node + linkType: hard + +"@istanbuljs/load-nyc-config@npm:^1.0.0": + version: 1.1.0 + resolution: "@istanbuljs/load-nyc-config@npm:1.1.0" + dependencies: + camelcase: ^5.3.1 + find-up: ^4.1.0 + get-package-type: ^0.1.0 + js-yaml: ^3.13.1 + resolve-from: ^5.0.0 + checksum: d578da5e2e804d5c93228450a1380e1a3c691de4953acc162f387b717258512a3e07b83510a936d9fab03eac90817473917e24f5d16297af3867f59328d58568 + languageName: node + linkType: hard + +"@istanbuljs/schema@npm:^0.1.2": + version: 0.1.3 + resolution: "@istanbuljs/schema@npm:0.1.3" + checksum: 5282759d961d61350f33d9118d16bcaed914ebf8061a52f4fa474b2cb08720c9c81d165e13b82f2e5a8a212cc5af482f0c6fc1ac27b9e067e5394c9a6ed186c9 + languageName: node + linkType: hard + +"@jest/create-cache-key-function@npm:^29.6.3": + version: 29.7.0 + resolution: "@jest/create-cache-key-function@npm:29.7.0" + dependencies: + "@jest/types": ^29.6.3 + checksum: 681bc761fa1d6fa3dd77578d444f97f28296ea80755e90e46d1c8fa68661b9e67f54dd38b988742db636d26cf160450dc6011892cec98b3a7ceb58cad8ff3aae + languageName: node + linkType: hard + +"@jest/environment@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/environment@npm:29.7.0" + dependencies: + "@jest/fake-timers": ^29.7.0 + "@jest/types": ^29.6.3 + "@types/node": "*" + jest-mock: ^29.7.0 + checksum: 6fb398143b2543d4b9b8d1c6dbce83fa5247f84f550330604be744e24c2bd2178bb893657d62d1b97cf2f24baf85c450223f8237cccb71192c36a38ea2272934 + languageName: node + linkType: hard + +"@jest/fake-timers@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/fake-timers@npm:29.7.0" + dependencies: + "@jest/types": ^29.6.3 + "@sinonjs/fake-timers": ^10.0.2 + "@types/node": "*" + jest-message-util: ^29.7.0 + jest-mock: ^29.7.0 + jest-util: ^29.7.0 + checksum: caf2bbd11f71c9241b458d1b5a66cbe95debc5a15d96442444b5d5c7ba774f523c76627c6931cca5e10e76f0d08761f6f1f01a608898f4751a0eee54fc3d8d00 + languageName: node + linkType: hard + +"@jest/schemas@npm:^29.6.3": + version: 29.6.3 + resolution: "@jest/schemas@npm:29.6.3" + dependencies: + "@sinclair/typebox": ^0.27.8 + checksum: 910040425f0fc93cd13e68c750b7885590b8839066dfa0cd78e7def07bbb708ad869381f725945d66f2284de5663bbecf63e8fdd856e2ae6e261ba30b1687e93 + languageName: node + linkType: hard + +"@jest/transform@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/transform@npm:29.7.0" + dependencies: + "@babel/core": ^7.11.6 + "@jest/types": ^29.6.3 + "@jridgewell/trace-mapping": ^0.3.18 + babel-plugin-istanbul: ^6.1.1 + chalk: ^4.0.0 + convert-source-map: ^2.0.0 + fast-json-stable-stringify: ^2.1.0 + graceful-fs: ^4.2.9 + jest-haste-map: ^29.7.0 + jest-regex-util: ^29.6.3 + jest-util: ^29.7.0 + micromatch: ^4.0.4 + pirates: ^4.0.4 + slash: ^3.0.0 + write-file-atomic: ^4.0.2 + checksum: 0f8ac9f413903b3cb6d240102db848f2a354f63971ab885833799a9964999dd51c388162106a807f810071f864302cdd8e3f0c241c29ce02d85a36f18f3f40ab + languageName: node + linkType: hard + +"@jest/types@npm:^29.6.3": + version: 29.6.3 + resolution: "@jest/types@npm:29.6.3" + dependencies: + "@jest/schemas": ^29.6.3 + "@types/istanbul-lib-coverage": ^2.0.0 + "@types/istanbul-reports": ^3.0.0 + "@types/node": "*" + "@types/yargs": ^17.0.8 + chalk: ^4.0.0 + checksum: a0bcf15dbb0eca6bdd8ce61a3fb055349d40268622a7670a3b2eb3c3dbafe9eb26af59938366d520b86907b9505b0f9b29b85cec11579a9e580694b87cd90fcc + languageName: node + linkType: hard + +"@jridgewell/gen-mapping@npm:^0.3.2, @jridgewell/gen-mapping@npm:^0.3.5": + version: 0.3.8 + resolution: "@jridgewell/gen-mapping@npm:0.3.8" + dependencies: + "@jridgewell/set-array": ^1.2.1 + "@jridgewell/sourcemap-codec": ^1.4.10 + "@jridgewell/trace-mapping": ^0.3.24 + checksum: c0687b5227461717aa537fe71a42e356bcd1c43293b3353796a148bf3b0d6f59109def46c22f05b60e29a46f19b2e4676d027959a7c53a6c92b9d5b0d87d0420 + languageName: node + linkType: hard + +"@jridgewell/resolve-uri@npm:^3.1.0": + version: 3.1.2 + resolution: "@jridgewell/resolve-uri@npm:3.1.2" + checksum: 83b85f72c59d1c080b4cbec0fef84528963a1b5db34e4370fa4bd1e3ff64a0d80e0cee7369d11d73c704e0286fb2865b530acac7a871088fbe92b5edf1000870 + languageName: node + linkType: hard + +"@jridgewell/set-array@npm:^1.2.1": + version: 1.2.1 + resolution: "@jridgewell/set-array@npm:1.2.1" + checksum: 832e513a85a588f8ed4f27d1279420d8547743cc37fcad5a5a76fc74bb895b013dfe614d0eed9cb860048e6546b798f8f2652020b4b2ba0561b05caa8c654b10 + languageName: node + linkType: hard + +"@jridgewell/source-map@npm:^0.3.3": + version: 0.3.6 + resolution: "@jridgewell/source-map@npm:0.3.6" + dependencies: + "@jridgewell/gen-mapping": ^0.3.5 + "@jridgewell/trace-mapping": ^0.3.25 + checksum: c9dc7d899397df95e3c9ec287b93c0b56f8e4453cd20743e2b9c8e779b1949bc3cccf6c01bb302779e46560eb45f62ea38d19fedd25370d814734268450a9f30 + languageName: node + linkType: hard + +"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14": + version: 1.5.0 + resolution: "@jridgewell/sourcemap-codec@npm:1.5.0" + checksum: 05df4f2538b3b0f998ea4c1cd34574d0feba216fa5d4ccaef0187d12abf82eafe6021cec8b49f9bb4d90f2ba4582ccc581e72986a5fcf4176ae0cfeb04cf52ec + languageName: node + linkType: hard + +"@jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25": + version: 0.3.25 + resolution: "@jridgewell/trace-mapping@npm:0.3.25" + dependencies: + "@jridgewell/resolve-uri": ^3.1.0 + "@jridgewell/sourcemap-codec": ^1.4.14 + checksum: 9d3c40d225e139987b50c48988f8717a54a8c994d8a948ee42e1412e08988761d0754d7d10b803061cc3aebf35f92a5dbbab493bd0e1a9ef9e89a2130e83ba34 + languageName: node + linkType: hard + +"@nodelib/fs.scandir@npm:2.1.5": + version: 2.1.5 + resolution: "@nodelib/fs.scandir@npm:2.1.5" + dependencies: + "@nodelib/fs.stat": 2.0.5 + run-parallel: ^1.1.9 + checksum: a970d595bd23c66c880e0ef1817791432dbb7acbb8d44b7e7d0e7a22f4521260d4a83f7f9fd61d44fda4610105577f8f58a60718105fb38352baed612fd79e59 + languageName: node + linkType: hard + +"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2": + version: 2.0.5 + resolution: "@nodelib/fs.stat@npm:2.0.5" + checksum: 012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0 + languageName: node + linkType: hard + +"@nodelib/fs.walk@npm:^1.2.3": + version: 1.2.8 + resolution: "@nodelib/fs.walk@npm:1.2.8" + dependencies: + "@nodelib/fs.scandir": 2.1.5 + fastq: ^1.6.0 + checksum: 190c643f156d8f8f277bf2a6078af1ffde1fd43f498f187c2db24d35b4b4b5785c02c7dc52e356497b9a1b65b13edc996de08de0b961c32844364da02986dc53 + languageName: node + linkType: hard + +"@npmcli/agent@npm:^3.0.0": + version: 3.0.0 + resolution: "@npmcli/agent@npm:3.0.0" + dependencies: + agent-base: ^7.1.0 + http-proxy-agent: ^7.0.0 + https-proxy-agent: ^7.0.1 + lru-cache: ^10.0.1 + socks-proxy-agent: ^8.0.3 + checksum: e8fc25d536250ed3e669813b36e8c6d805628b472353c57afd8c4fde0fcfcf3dda4ffe22f7af8c9070812ec2e7a03fb41d7151547cef3508efe661a5a3add20f + languageName: node + linkType: hard + +"@npmcli/fs@npm:^3.1.0": + version: 3.1.1 + resolution: "@npmcli/fs@npm:3.1.1" + dependencies: + semver: ^7.3.5 + checksum: d960cab4b93adcb31ce223bfb75c5714edbd55747342efb67dcc2f25e023d930a7af6ece3e75f2f459b6f38fc14d031c766f116cd124fdc937fd33112579e820 + languageName: node + linkType: hard + +"@npmcli/fs@npm:^4.0.0": + version: 4.0.0 + resolution: "@npmcli/fs@npm:4.0.0" + dependencies: + semver: ^7.3.5 + checksum: 68951c589e9a4328698a35fd82fe71909a257d6f2ede0434d236fa55634f0fbcad9bb8755553ce5849bd25ee6f019f4d435921ac715c853582c4a7f5983c8d4a + languageName: node + linkType: hard + +"@pkgjs/parseargs@npm:^0.11.0": + version: 0.11.0 + resolution: "@pkgjs/parseargs@npm:0.11.0" + checksum: 6ad6a00fc4f2f2cfc6bff76fb1d88b8ee20bc0601e18ebb01b6d4be583733a860239a521a7fbca73b612e66705078809483549d2b18f370eb346c5155c8e4a0f + languageName: node + linkType: hard + +"@react-native/assets-registry@npm:0.76.3": + version: 0.76.3 + resolution: "@react-native/assets-registry@npm:0.76.3" + checksum: 0a5c3d63eec8ce9e29be9e0cca6aa0bc62580b9820caf948fc44574be75e166b836caa1cd4b53550c880996b36389fb8f2b18652c3e6abeddecc9ca835cd9296 + languageName: node + linkType: hard + +"@react-native/assets-registry@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/assets-registry@npm:0.76.7" + checksum: f197582ad2e2964f5a6afa5a8945b368b7a6fe05cd9fac78e4832ad969cd8b5ad72e048f0c652ce5b4dd1ed7bf28e36254e49d3b7317b16d4481600482259048 + languageName: node + linkType: hard + +"@react-native/babel-plugin-codegen@npm:0.76.3": + version: 0.76.3 + resolution: "@react-native/babel-plugin-codegen@npm:0.76.3" + dependencies: + "@react-native/codegen": 0.76.3 + checksum: db24d3d7f89d1aca30fd1a5050deb86982aba54c7df5ac5dc73bcae4ba07275a08af92db1ae383e44366ba206f941333d2a972672db8a57cbd825f4bacea5c0c + languageName: node + linkType: hard + +"@react-native/babel-plugin-codegen@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/babel-plugin-codegen@npm:0.76.7" + dependencies: + "@react-native/codegen": 0.76.7 + checksum: d19f45cc0d3f1de0cbe9fe4b3623d008284957829d7d471adf6c881f2450a3f40ecc152361185a076403419f19f53094f12624915d41fa79a9f214afdaf85e60 + languageName: node + linkType: hard + +"@react-native/babel-preset@npm:0.76.3": + version: 0.76.3 + resolution: "@react-native/babel-preset@npm:0.76.3" + dependencies: + "@babel/core": ^7.25.2 + "@babel/plugin-proposal-export-default-from": ^7.24.7 + "@babel/plugin-syntax-dynamic-import": ^7.8.3 + "@babel/plugin-syntax-export-default-from": ^7.24.7 + "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 + "@babel/plugin-syntax-optional-chaining": ^7.8.3 + "@babel/plugin-transform-arrow-functions": ^7.24.7 + "@babel/plugin-transform-async-generator-functions": ^7.25.4 + "@babel/plugin-transform-async-to-generator": ^7.24.7 + "@babel/plugin-transform-block-scoping": ^7.25.0 + "@babel/plugin-transform-class-properties": ^7.25.4 + "@babel/plugin-transform-classes": ^7.25.4 + "@babel/plugin-transform-computed-properties": ^7.24.7 + "@babel/plugin-transform-destructuring": ^7.24.8 + "@babel/plugin-transform-flow-strip-types": ^7.25.2 + "@babel/plugin-transform-for-of": ^7.24.7 + "@babel/plugin-transform-function-name": ^7.25.1 + "@babel/plugin-transform-literals": ^7.25.2 + "@babel/plugin-transform-logical-assignment-operators": ^7.24.7 + "@babel/plugin-transform-modules-commonjs": ^7.24.8 + "@babel/plugin-transform-named-capturing-groups-regex": ^7.24.7 + "@babel/plugin-transform-nullish-coalescing-operator": ^7.24.7 + "@babel/plugin-transform-numeric-separator": ^7.24.7 + "@babel/plugin-transform-object-rest-spread": ^7.24.7 + "@babel/plugin-transform-optional-catch-binding": ^7.24.7 + "@babel/plugin-transform-optional-chaining": ^7.24.8 + "@babel/plugin-transform-parameters": ^7.24.7 + "@babel/plugin-transform-private-methods": ^7.24.7 + "@babel/plugin-transform-private-property-in-object": ^7.24.7 + "@babel/plugin-transform-react-display-name": ^7.24.7 + "@babel/plugin-transform-react-jsx": ^7.25.2 + "@babel/plugin-transform-react-jsx-self": ^7.24.7 + "@babel/plugin-transform-react-jsx-source": ^7.24.7 + "@babel/plugin-transform-regenerator": ^7.24.7 + "@babel/plugin-transform-runtime": ^7.24.7 + "@babel/plugin-transform-shorthand-properties": ^7.24.7 + "@babel/plugin-transform-spread": ^7.24.7 + "@babel/plugin-transform-sticky-regex": ^7.24.7 + "@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.3 + babel-plugin-syntax-hermes-parser: ^0.25.1 + babel-plugin-transform-flow-enums: ^0.0.2 + react-refresh: ^0.14.0 + peerDependencies: + "@babel/core": "*" + checksum: 012476667ad1596a0ae45b0b0d0404af724766aa170b22a80f56c4302060e2f5b90bef24a41aef2dd12cbe672a31b8c5c13f72b974cfaad004aef452ac17995c + languageName: node + linkType: hard + +"@react-native/babel-preset@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/babel-preset@npm:0.76.7" + dependencies: + "@babel/core": ^7.25.2 + "@babel/plugin-proposal-export-default-from": ^7.24.7 + "@babel/plugin-syntax-dynamic-import": ^7.8.3 + "@babel/plugin-syntax-export-default-from": ^7.24.7 + "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 + "@babel/plugin-syntax-optional-chaining": ^7.8.3 + "@babel/plugin-transform-arrow-functions": ^7.24.7 + "@babel/plugin-transform-async-generator-functions": ^7.25.4 + "@babel/plugin-transform-async-to-generator": ^7.24.7 + "@babel/plugin-transform-block-scoping": ^7.25.0 + "@babel/plugin-transform-class-properties": ^7.25.4 + "@babel/plugin-transform-classes": ^7.25.4 + "@babel/plugin-transform-computed-properties": ^7.24.7 + "@babel/plugin-transform-destructuring": ^7.24.8 + "@babel/plugin-transform-flow-strip-types": ^7.25.2 + "@babel/plugin-transform-for-of": ^7.24.7 + "@babel/plugin-transform-function-name": ^7.25.1 + "@babel/plugin-transform-literals": ^7.25.2 + "@babel/plugin-transform-logical-assignment-operators": ^7.24.7 + "@babel/plugin-transform-modules-commonjs": ^7.24.8 + "@babel/plugin-transform-named-capturing-groups-regex": ^7.24.7 + "@babel/plugin-transform-nullish-coalescing-operator": ^7.24.7 + "@babel/plugin-transform-numeric-separator": ^7.24.7 + "@babel/plugin-transform-object-rest-spread": ^7.24.7 + "@babel/plugin-transform-optional-catch-binding": ^7.24.7 + "@babel/plugin-transform-optional-chaining": ^7.24.8 + "@babel/plugin-transform-parameters": ^7.24.7 + "@babel/plugin-transform-private-methods": ^7.24.7 + "@babel/plugin-transform-private-property-in-object": ^7.24.7 + "@babel/plugin-transform-react-display-name": ^7.24.7 + "@babel/plugin-transform-react-jsx": ^7.25.2 + "@babel/plugin-transform-react-jsx-self": ^7.24.7 + "@babel/plugin-transform-react-jsx-source": ^7.24.7 + "@babel/plugin-transform-regenerator": ^7.24.7 + "@babel/plugin-transform-runtime": ^7.24.7 + "@babel/plugin-transform-shorthand-properties": ^7.24.7 + "@babel/plugin-transform-spread": ^7.24.7 + "@babel/plugin-transform-sticky-regex": ^7.24.7 + "@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.7 + babel-plugin-syntax-hermes-parser: ^0.25.1 + babel-plugin-transform-flow-enums: ^0.0.2 + react-refresh: ^0.14.0 + peerDependencies: + "@babel/core": "*" + checksum: 29b48f80d32839d03f17d938e3f2b34f213d6ac3155de9556016132d4e3b9d55ce2b3d18fcd596ba6507f6bbe64174a76c5e94cc3737b39f00467c455de6b2d4 + languageName: node + linkType: hard + +"@react-native/codegen@npm:0.76.3": + version: 0.76.3 + resolution: "@react-native/codegen@npm:0.76.3" + dependencies: + "@babel/parser": ^7.25.3 + glob: ^7.1.1 + hermes-parser: 0.23.1 + invariant: ^2.2.4 + jscodeshift: ^0.14.0 + mkdirp: ^0.5.1 + nullthrows: ^1.1.1 + yargs: ^17.6.2 + peerDependencies: + "@babel/preset-env": ^7.1.6 + checksum: 5e9677695dcddabcd045ee448472cdecb13d6db216d021a21e29830487cfaef790ff6c1e59de06a7d70d18cc816dcd939c2cbbfa5c58b78b27d04f3cbacbc5ac + languageName: node + linkType: hard + +"@react-native/codegen@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/codegen@npm:0.76.7" + dependencies: + "@babel/parser": ^7.25.3 + glob: ^7.1.1 + hermes-parser: 0.23.1 + invariant: ^2.2.4 + jscodeshift: ^0.14.0 + mkdirp: ^0.5.1 + nullthrows: ^1.1.1 + yargs: ^17.6.2 + peerDependencies: + "@babel/preset-env": ^7.1.6 + checksum: f5f332c334b0bae892c7f3986c87f20c052b2b1ca9fc927fc91db012e1f062d8feaa01dc2e09d64454ce4e36dc0571d73ae3cb3a2d2aeba485ddc0c3d0e80aa1 + languageName: node + linkType: hard + +"@react-native/community-cli-plugin@npm:0.76.3": + version: 0.76.3 + resolution: "@react-native/community-cli-plugin@npm:0.76.3" + dependencies: + "@react-native/dev-middleware": 0.76.3 + "@react-native/metro-babel-transformer": 0.76.3 + chalk: ^4.0.0 + execa: ^5.1.1 + invariant: ^2.2.4 + metro: ^0.81.0 + metro-config: ^0.81.0 + metro-core: ^0.81.0 + node-fetch: ^2.2.0 + readline: ^1.3.0 + semver: ^7.1.3 + peerDependencies: + "@react-native-community/cli-server-api": "*" + peerDependenciesMeta: + "@react-native-community/cli-server-api": + optional: true + checksum: 7d3c76ac702f97a8d75ad1d8e0cedfef7061ed25ed26dde7d39214a26a42b8c594bc8ba9d1cfa8e83fae0069828340b207c771677431619bd1039aa99d9d8032 + languageName: node + linkType: hard + +"@react-native/community-cli-plugin@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/community-cli-plugin@npm:0.76.7" + dependencies: + "@react-native/dev-middleware": 0.76.7 + "@react-native/metro-babel-transformer": 0.76.7 + chalk: ^4.0.0 + execa: ^5.1.1 + invariant: ^2.2.4 + metro: ^0.81.0 + metro-config: ^0.81.0 + metro-core: ^0.81.0 + node-fetch: ^2.2.0 + readline: ^1.3.0 + semver: ^7.1.3 + peerDependencies: + "@react-native-community/cli-server-api": "*" + peerDependenciesMeta: + "@react-native-community/cli-server-api": + optional: true + checksum: e6bfaf10dc941388b4342335ba3058728cd48b11315bd419012540ca5a3b5f1141fa42b61eff8271ccbe127d33a4f2b4de5956c9d2225fc1dff27e9846592670 + languageName: node + linkType: hard + +"@react-native/debugger-frontend@npm:0.76.3": + version: 0.76.3 + resolution: "@react-native/debugger-frontend@npm:0.76.3" + checksum: 549fea784b9e03a0e4bb05befea92af096705595e34fa6540873b1f00641ceaac3dafaeda212dd80d049f82d0929852c7fb1870bd823158ad780a5c2edfdcf0a + languageName: node + linkType: hard + +"@react-native/debugger-frontend@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/debugger-frontend@npm:0.76.7" + checksum: 3ef73a8e5f281d73b17f2b5834d803665506726a77e660a610b0b6511aedf26c82e92fdcf782e1d214c79b70432323f8116f11977f81ed3969c2af9f68f5c903 + languageName: node + linkType: hard + +"@react-native/dev-middleware@npm:0.76.3": + version: 0.76.3 + resolution: "@react-native/dev-middleware@npm:0.76.3" + dependencies: + "@isaacs/ttlcache": ^1.4.1 + "@react-native/debugger-frontend": 0.76.3 + chrome-launcher: ^0.15.2 + chromium-edge-launcher: ^0.2.0 + connect: ^3.6.5 + debug: ^2.2.0 + nullthrows: ^1.1.1 + open: ^7.0.3 + selfsigned: ^2.4.1 + serve-static: ^1.13.1 + ws: ^6.2.3 + checksum: 77acfecd6b59594d892afb63efcc54474a38278f233db6163bdf66329603bdb485dc304e0c9a58c5c19c1d7397cfb6b76f08bd5f136d130052db9d73ae6b74b5 + languageName: node + linkType: hard + +"@react-native/dev-middleware@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/dev-middleware@npm:0.76.7" + dependencies: + "@isaacs/ttlcache": ^1.4.1 + "@react-native/debugger-frontend": 0.76.7 + chrome-launcher: ^0.15.2 + chromium-edge-launcher: ^0.2.0 + connect: ^3.6.5 + debug: ^2.2.0 + invariant: ^2.2.4 + nullthrows: ^1.1.1 + open: ^7.0.3 + selfsigned: ^2.4.1 + serve-static: ^1.13.1 + ws: ^6.2.3 + checksum: cc23a959299cd97e0960915a211ebe36a3c36161111bd8f627a5ab6c78a98ddbb893ac52313d6cd11b4c0c35324b8f2a0806676e255e2b0bf578e0aab71414a2 + languageName: node + linkType: hard + +"@react-native/gradle-plugin@npm:0.76.3": + version: 0.76.3 + resolution: "@react-native/gradle-plugin@npm:0.76.3" + checksum: 7bde3ae9cbf21f59adc5583cfe25d245ca2921f50d50361e763a59bb02398206c93e61c935a4605609de7e1fe49450594ff56b0b9ccecc07065dbe4c9e9217c6 + languageName: node + linkType: hard + +"@react-native/gradle-plugin@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/gradle-plugin@npm:0.76.7" + checksum: 4a0b1150a9338ade0fb75a036b63d681243ab93c19dea676ac02c59f7b16b28fafe8e2e6106ff0de33d0ad4a1ac358eb90fa9a2b6e9bbc55ffb449f1098329db + languageName: node + linkType: hard + +"@react-native/js-polyfills@npm:0.76.3": + version: 0.76.3 + resolution: "@react-native/js-polyfills@npm:0.76.3" + checksum: a33145ee39fe9de0e8b4b3a25cd263d775fe14ac3c4f77c4dc6a77a60c06febacdcefd7271c9aaa2a13336bada413601e3fa3de51eb7e44387b53055d99a1b69 + languageName: node + linkType: hard + +"@react-native/js-polyfills@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/js-polyfills@npm:0.76.7" + checksum: 6dbf035366c6a22e8f868c2e1f69ea6340d8e975e0d9ae6db6c469a37f58bdcdceb355684b3af53d3e76d7d7ff0db56dd6a5be39c9e54d7973c3256b80f1170e + languageName: node + linkType: hard + +"@react-native/metro-babel-transformer@npm:0.76.3": + version: 0.76.3 + resolution: "@react-native/metro-babel-transformer@npm:0.76.3" + dependencies: + "@babel/core": ^7.25.2 + "@react-native/babel-preset": 0.76.3 + hermes-parser: 0.23.1 + nullthrows: ^1.1.1 + peerDependencies: + "@babel/core": "*" + checksum: 26be14f178dbfac8f8c75c8c2a87e582e274f4f8fc8f8860e804de042167238b80d8606a1357296240aa59085a9275e4be6797a80afdeed2cbcaa7cf7d8c1793 + languageName: node + linkType: hard + +"@react-native/metro-babel-transformer@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/metro-babel-transformer@npm:0.76.7" + dependencies: + "@babel/core": ^7.25.2 + "@react-native/babel-preset": 0.76.7 + hermes-parser: 0.23.1 + nullthrows: ^1.1.1 + peerDependencies: + "@babel/core": "*" + checksum: 26af0564de9bc6c734dd5a08699d74ccded819c7afc0841b4a04e415ed7c4d2ea6f51edb3df23e86da8bd7601db8df38daf16aa83363c2aafee4dd4faf65857d + languageName: node + linkType: hard + +"@react-native/metro-config@npm:^0.76.3": + version: 0.76.7 + resolution: "@react-native/metro-config@npm:0.76.7" + dependencies: + "@react-native/js-polyfills": 0.76.7 + "@react-native/metro-babel-transformer": 0.76.7 + metro-config: ^0.81.0 + metro-runtime: ^0.81.0 + checksum: c954acb27030143a057b6adb5fc802befc9bc84ba33341ab79d2d43a7d4688967367d60dd4b18bc61ba0836177e05891361e958f7887df39d752d13f5fdbd079 + languageName: node + linkType: hard + +"@react-native/normalize-colors@npm:0.76.3": + version: 0.76.3 + resolution: "@react-native/normalize-colors@npm:0.76.3" + checksum: 71ce0cbaa52fc87552b0ad83dd3ebd0a76253b7aacdc82ead09a0ada6349457b9927ed10452cb63b89fc18d793852eafaec18f2c79603dbf9dcadb676b2db477 + languageName: node + linkType: hard + +"@react-native/normalize-colors@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/normalize-colors@npm:0.76.7" + checksum: 4840d1f3852d908520aa77733dae07bd7bcfaa393e0245ea74716246d626785a6abe3add9c4975cbdabc45f5eaf56bbb133fd63e471b48e975a07ca5c346c9bb + languageName: node + linkType: hard + +"@react-native/virtualized-lists@npm:0.76.3": + version: 0.76.3 + resolution: "@react-native/virtualized-lists@npm:0.76.3" + dependencies: + invariant: ^2.2.4 + nullthrows: ^1.1.1 + peerDependencies: + "@types/react": ^18.2.6 + react: "*" + react-native: "*" + peerDependenciesMeta: + "@types/react": + optional: true + checksum: b84df110406651a025b9d798cb4511bc7c6db37b44ec885c92bbbc9a220bdd77837a13116d54fe59c16d35ffff013e3c87c28ffa870eb9b9f840d779cef68f90 + languageName: node + linkType: hard + +"@react-native/virtualized-lists@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/virtualized-lists@npm:0.76.7" + dependencies: + invariant: ^2.2.4 + nullthrows: ^1.1.1 + peerDependencies: + "@types/react": ^18.2.6 + react: "*" + react-native: "*" + peerDependenciesMeta: + "@types/react": + optional: true + checksum: a25311d70a3ebb6fddd0e5257c9be3f24e7e67e0a86ed17864ff93cfb77d849a952996a613473bc9a6851e0eac16a1d45ac71a3a43719226851e4910907d726f + languageName: node + linkType: hard + +"@segment/loosely-validate-event@npm:^2.0.0": + version: 2.0.0 + resolution: "@segment/loosely-validate-event@npm:2.0.0" + dependencies: + component-type: ^1.2.1 + join-component: ^1.1.0 + checksum: 8c4aacc903fb717619b69ca7eecf8d4a7b928661b0e835c9cd98f1b858a85ce62c348369ad9a52cb2df8df02578c0525a73fce4c69a42ac414d9554cc6be7117 + languageName: node + linkType: hard + +"@sinclair/typebox@npm:^0.27.8": + version: 0.27.8 + resolution: "@sinclair/typebox@npm:0.27.8" + checksum: 00bd7362a3439021aa1ea51b0e0d0a0e8ca1351a3d54c606b115fdcc49b51b16db6e5f43b4fe7a28c38688523e22a94d49dd31168868b655f0d4d50f032d07a1 + languageName: node + linkType: hard + +"@sinonjs/commons@npm:^3.0.0": + version: 3.0.1 + resolution: "@sinonjs/commons@npm:3.0.1" + dependencies: + type-detect: 4.0.8 + checksum: a7c3e7cc612352f4004873747d9d8b2d4d90b13a6d483f685598c945a70e734e255f1ca5dc49702515533c403b32725defff148177453b3f3915bcb60e9d4601 + languageName: node + linkType: hard + +"@sinonjs/fake-timers@npm:^10.0.2": + version: 10.3.0 + resolution: "@sinonjs/fake-timers@npm:10.3.0" + dependencies: + "@sinonjs/commons": ^3.0.0 + checksum: 614d30cb4d5201550c940945d44c9e0b6d64a888ff2cd5b357f95ad6721070d6b8839cd10e15b76bf5e14af0bcc1d8f9ec00d49a46318f1f669a4bec1d7f3148 + languageName: node + linkType: hard + +"@svgr/babel-plugin-add-jsx-attribute@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/babel-plugin-add-jsx-attribute@npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3fc8e35d16f5abe0af5efe5851f27581225ac405d6a1ca44cda0df064cddfcc29a428c48c2e4bef6cebf627c9ac2f652a096030edb02cf5a120ce28d3c234710 + languageName: node + linkType: hard + +"@svgr/babel-plugin-remove-jsx-attribute@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/babel-plugin-remove-jsx-attribute@npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ff992893c6c4ac802713ba3a97c13be34e62e6d981c813af40daabcd676df68a72a61bd1e692bb1eda3587f1b1d700ea462222ae2153bb0f46886632d4f88d08 + languageName: node + linkType: hard + +"@svgr/babel-plugin-remove-jsx-empty-expression@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/babel-plugin-remove-jsx-empty-expression@npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 0fb691b63a21bac00da3aa2dccec50d0d5a5b347ff408d60803b84410d8af168f2656e4ba1ee1f24dab0ae4e4af77901f2928752bb0434c1f6788133ec599ec8 + languageName: node + linkType: hard + +"@svgr/babel-plugin-replace-jsx-attribute-value@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/babel-plugin-replace-jsx-attribute-value@npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 1edda65ef4f4dd8f021143c8ec276a08f6baa6f733b8e8ee2e7775597bf6b97afb47fdeefd579d6ae6c959fe2e634f55cd61d99377631212228c8cfb351b8921 + languageName: node + linkType: hard + +"@svgr/babel-plugin-svg-dynamic-title@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/babel-plugin-svg-dynamic-title@npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 876cec891488992e6a9aebb8155e2bea4ec461b4718c51de36e988e00e271c6d9d01ef6be17b9effd44b2b3d7db0b41c161a5904a46ae6f38b26b387ad7f3709 + languageName: node + linkType: hard + +"@svgr/babel-plugin-svg-em-dimensions@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/babel-plugin-svg-em-dimensions@npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: be0e2d391164428327d9ec469a52cea7d93189c6b0e2c290999e048f597d777852f701c64dca44cd45b31ed14a7f859520326e2e4ad7c3a4545d0aa235bc7e9a + languageName: node + linkType: hard + +"@svgr/babel-plugin-transform-react-native-svg@npm:8.1.0": + version: 8.1.0 + resolution: "@svgr/babel-plugin-transform-react-native-svg@npm:8.1.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 85b434a57572f53bd2b9f0606f253e1fcf57b4a8c554ec3f2d43ed17f50d8cae200cb3aaf1ec9d626e1456e8b135dce530ae047eb0bed6d4bf98a752d6640459 + languageName: node + linkType: hard + +"@svgr/babel-plugin-transform-svg-component@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/babel-plugin-transform-svg-component@npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 04e2023d75693eeb0890341c40e449881184663056c249be7e5c80168e4aabb0fadd255e8d5d2dbf54b8c2a6e700efba994377135bfa4060dc4a2e860116ef8c + languageName: node + linkType: hard + +"@svgr/babel-preset@npm:8.1.0": + version: 8.1.0 + resolution: "@svgr/babel-preset@npm:8.1.0" + dependencies: + "@svgr/babel-plugin-add-jsx-attribute": 8.0.0 + "@svgr/babel-plugin-remove-jsx-attribute": 8.0.0 + "@svgr/babel-plugin-remove-jsx-empty-expression": 8.0.0 + "@svgr/babel-plugin-replace-jsx-attribute-value": 8.0.0 + "@svgr/babel-plugin-svg-dynamic-title": 8.0.0 + "@svgr/babel-plugin-svg-em-dimensions": 8.0.0 + "@svgr/babel-plugin-transform-react-native-svg": 8.1.0 + "@svgr/babel-plugin-transform-svg-component": 8.0.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3a67930f080b8891e1e8e2595716b879c944d253112bae763dce59807ba23454d162216c8d66a0a0e3d4f38a649ecd6c387e545d1e1261dd69a68e9a3392ee08 + languageName: node + linkType: hard + +"@svgr/core@npm:^8.1.0": + version: 8.1.0 + resolution: "@svgr/core@npm:8.1.0" + dependencies: + "@babel/core": ^7.21.3 + "@svgr/babel-preset": 8.1.0 + camelcase: ^6.2.0 + cosmiconfig: ^8.1.3 + snake-case: ^3.0.4 + checksum: da4a12865c7dc59829d58df8bd232d6c85b7115fda40da0d2f844a1a51886e2e945560596ecfc0345d37837ac457de86a931e8b8d8550e729e0c688c02250d8a + languageName: node + linkType: hard + +"@svgr/hast-util-to-babel-ast@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/hast-util-to-babel-ast@npm:8.0.0" + dependencies: + "@babel/types": ^7.21.3 + entities: ^4.4.0 + checksum: 88401281a38bbc7527e65ff5437970414391a86158ef4b4046c89764c156d2d39ecd7cce77be8a51994c9fb3249170cb1eb8b9128b62faaa81743ef6ed3534ab + languageName: node + linkType: hard + +"@svgr/plugin-jsx@npm:^8.1.0": + version: 8.1.0 + resolution: "@svgr/plugin-jsx@npm:8.1.0" + dependencies: + "@babel/core": ^7.21.3 + "@svgr/babel-preset": 8.1.0 + "@svgr/hast-util-to-babel-ast": 8.0.0 + svg-parser: ^2.0.4 + peerDependencies: + "@svgr/core": "*" + checksum: 0418a9780753d3544912ee2dad5d2cf8d12e1ba74df8053651b3886aeda54d5f0f7d2dece0af5e0d838332c4f139a57f0dabaa3ca1afa4d1a765efce6a7656f2 + languageName: node + linkType: hard + +"@svgr/plugin-svgo@npm:^8.1.0": + version: 8.1.0 + resolution: "@svgr/plugin-svgo@npm:8.1.0" + dependencies: + cosmiconfig: ^8.1.3 + deepmerge: ^4.3.1 + svgo: ^3.0.2 + peerDependencies: + "@svgr/core": "*" + checksum: 59d9d214cebaacca9ca71a561f463d8b7e5a68ca9443e4792a42d903acd52259b1790c0680bc6afecc3f00a255a6cbd7ea278a9f625bac443620ea58a590c2d0 + languageName: node + linkType: hard + +"@trysound/sax@npm:0.2.0": + version: 0.2.0 + resolution: "@trysound/sax@npm:0.2.0" + checksum: 11226c39b52b391719a2a92e10183e4260d9651f86edced166da1d95f39a0a1eaa470e44d14ac685ccd6d3df7e2002433782872c0feeb260d61e80f21250e65c + languageName: node + linkType: hard + +"@types/babel__core@npm:^7.1.14": + version: 7.20.5 + resolution: "@types/babel__core@npm:7.20.5" + dependencies: + "@babel/parser": ^7.20.7 + "@babel/types": ^7.20.7 + "@types/babel__generator": "*" + "@types/babel__template": "*" + "@types/babel__traverse": "*" + checksum: a3226f7930b635ee7a5e72c8d51a357e799d19cbf9d445710fa39ab13804f79ab1a54b72ea7d8e504659c7dfc50675db974b526142c754398d7413aa4bc30845 + languageName: node + linkType: hard + +"@types/babel__generator@npm:*": + version: 7.6.8 + resolution: "@types/babel__generator@npm:7.6.8" + dependencies: + "@babel/types": ^7.0.0 + checksum: 5b332ea336a2efffbdeedb92b6781949b73498606ddd4205462f7d96dafd45ff3618770b41de04c4881e333dd84388bfb8afbdf6f2764cbd98be550d85c6bb48 + languageName: node + linkType: hard + +"@types/babel__template@npm:*": + version: 7.4.4 + resolution: "@types/babel__template@npm:7.4.4" + dependencies: + "@babel/parser": ^7.1.0 + "@babel/types": ^7.0.0 + checksum: d7a02d2a9b67e822694d8e6a7ddb8f2b71a1d6962dfd266554d2513eefbb205b33ca71a0d163b1caea3981ccf849211f9964d8bd0727124d18ace45aa6c9ae29 + languageName: node + linkType: hard + +"@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.0.6": + version: 7.20.6 + resolution: "@types/babel__traverse@npm:7.20.6" + dependencies: + "@babel/types": ^7.20.7 + checksum: 2bdc65eb62232c2d5c1086adeb0c31e7980e6fd7e50a3483b4a724a1a1029c84d9cb59749cf8de612f9afa2bc14c85b8f50e64e21f8a4398fa77eb9059a4283c + languageName: node + linkType: hard + +"@types/graceful-fs@npm:^4.1.3": + version: 4.1.9 + resolution: "@types/graceful-fs@npm:4.1.9" + dependencies: + "@types/node": "*" + checksum: 79d746a8f053954bba36bd3d94a90c78de995d126289d656fb3271dd9f1229d33f678da04d10bce6be440494a5a73438e2e363e92802d16b8315b051036c5256 + languageName: node + linkType: hard + +"@types/istanbul-lib-coverage@npm:*, @types/istanbul-lib-coverage@npm:^2.0.0": + version: 2.0.6 + resolution: "@types/istanbul-lib-coverage@npm:2.0.6" + checksum: 3feac423fd3e5449485afac999dcfcb3d44a37c830af898b689fadc65d26526460bedb889db278e0d4d815a670331796494d073a10ee6e3a6526301fe7415778 + languageName: node + linkType: hard + +"@types/istanbul-lib-report@npm:*": + version: 3.0.3 + resolution: "@types/istanbul-lib-report@npm:3.0.3" + dependencies: + "@types/istanbul-lib-coverage": "*" + checksum: b91e9b60f865ff08cb35667a427b70f6c2c63e88105eadd29a112582942af47ed99c60610180aa8dcc22382fa405033f141c119c69b95db78c4c709fbadfeeb4 + languageName: node + linkType: hard + +"@types/istanbul-reports@npm:^3.0.0": + version: 3.0.4 + resolution: "@types/istanbul-reports@npm:3.0.4" + dependencies: + "@types/istanbul-lib-report": "*" + checksum: 93eb18835770b3431f68ae9ac1ca91741ab85f7606f310a34b3586b5a34450ec038c3eed7ab19266635499594de52ff73723a54a72a75b9f7d6a956f01edee95 + languageName: node + linkType: hard + +"@types/node-forge@npm:^1.3.0": + version: 1.3.11 + resolution: "@types/node-forge@npm:1.3.11" + dependencies: + "@types/node": "*" + checksum: 1e86bd55b92a492eaafd75f6d01f31e7d86a5cdadd0c6bcdc0b1df4103b7f99bb75b832efd5217c7ddda5c781095dc086a868e20b9de00f5a427ddad4c296cd5 + languageName: node + linkType: hard + +"@types/node@npm:*": + version: 22.13.9 + resolution: "@types/node@npm:22.13.9" + dependencies: + undici-types: ~6.20.0 + checksum: d36ae841fa20aa01aefecfeb9363cbc9a5d7ede711fd6bdd9e872975987d6ce2720d4196c8cc7d2c53b3353a121250f96550873f18a73477de86b4198b25bab5 + languageName: node + linkType: hard + +"@types/prop-types@npm:*": + version: 15.7.14 + resolution: "@types/prop-types@npm:15.7.14" + checksum: d0c5407b9ccc3dd5fae0ccf9b1007e7622ba5e6f1c18399b4f24dff33619d469da4b9fa918a374f19dc0d9fe6a013362aab0b844b606cfc10676efba3f5f736d + languageName: node + linkType: hard + +"@types/react@npm:~18.3.12": + version: 18.3.18 + resolution: "@types/react@npm:18.3.18" + dependencies: + "@types/prop-types": "*" + csstype: ^3.0.2 + checksum: 5933597bc9f53e282f0438f0bb76d0f0fab60faabe760ea806e05ffe6f5c61b9b4d363e1a03a8fea47c510d493c6cf926cdeeba9f7074fa97b61940c350245e7 + languageName: node + linkType: hard + +"@types/stack-utils@npm:^2.0.0": + version: 2.0.3 + resolution: "@types/stack-utils@npm:2.0.3" + checksum: 72576cc1522090fe497337c2b99d9838e320659ac57fa5560fcbdcbafcf5d0216c6b3a0a8a4ee4fdb3b1f5e3420aa4f6223ab57b82fef3578bec3206425c6cf5 + languageName: node + linkType: hard + +"@types/yargs-parser@npm:*": + version: 21.0.3 + resolution: "@types/yargs-parser@npm:21.0.3" + checksum: ef236c27f9432983e91432d974243e6c4cdae227cb673740320eff32d04d853eed59c92ca6f1142a335cfdc0e17cccafa62e95886a8154ca8891cc2dec4ee6fc + languageName: node + linkType: hard + +"@types/yargs@npm:^17.0.8": + version: 17.0.33 + resolution: "@types/yargs@npm:17.0.33" + dependencies: + "@types/yargs-parser": "*" + checksum: ee013f257472ab643cb0584cf3e1ff9b0c44bca1c9ba662395300a7f1a6c55fa9d41bd40ddff42d99f5d95febb3907c9ff600fbcb92dadbec22c6a76de7e1236 + languageName: node + linkType: hard + +"@urql/core@npm:^5.0.6, @urql/core@npm:^5.1.1": + version: 5.1.1 + resolution: "@urql/core@npm:5.1.1" + dependencies: + "@0no-co/graphql.web": ^1.0.5 + wonka: ^6.3.2 + checksum: c28736706abe5d0a0172bcde1c80807aba44606041347beba8e73d5237598034301cccad0169c4f63ba08f5bffe7b3a3ad95ee4a53a0d719ad5525f44b84dbcc + languageName: node + linkType: hard + +"@urql/exchange-retry@npm:^1.3.0": + version: 1.3.1 + resolution: "@urql/exchange-retry@npm:1.3.1" + dependencies: + "@urql/core": ^5.1.1 + wonka: ^6.3.2 + peerDependencies: + "@urql/core": ^5.0.0 + checksum: c03c81900bdbd11211ce02e97ca4e8d1b36f08a3ad6fee9e9b23a60a59c9ff266500e2723b21a60d29927c0ba8cf5dec59600d2f615f6918ac50e10100d7e543 + languageName: node + linkType: hard + +"@xmldom/xmldom@npm:^0.8.8": + version: 0.8.10 + resolution: "@xmldom/xmldom@npm:0.8.10" + checksum: 4c136aec31fb3b49aaa53b6fcbfe524d02a1dc0d8e17ee35bd3bf35e9ce1344560481cd1efd086ad1a4821541482528672306d5e37cdbd187f33d7fadd3e2cf0 + languageName: node + linkType: hard + +"@xmldom/xmldom@npm:~0.7.7": + version: 0.7.13 + resolution: "@xmldom/xmldom@npm:0.7.13" + checksum: b4054078530e5fa8ede9677425deff0fce6d965f4c477ca73f8490d8a089e60b8498a15560425a1335f5ff99ecb851ed2c734b0a9a879299a5694302f212f37a + languageName: node + linkType: hard + +"abbrev@npm:^3.0.0": + version: 3.0.0 + resolution: "abbrev@npm:3.0.0" + checksum: 2500075b5ef85e97c095ab6ab2ea640dcf90bb388f46398f4d347b296f53399f984ec9462c74bee81df6bba56ef5fd9dbc2fb29076b1feb0023e0f52d43eb984 + languageName: node + linkType: hard + +"abort-controller@npm:^3.0.0": + version: 3.0.0 + resolution: "abort-controller@npm:3.0.0" + dependencies: + event-target-shim: ^5.0.0 + checksum: 170bdba9b47b7e65906a28c8ce4f38a7a369d78e2271706f020849c1bfe0ee2067d4261df8bbb66eb84f79208fd5b710df759d64191db58cfba7ce8ef9c54b75 + languageName: node + linkType: hard + +"accepts@npm:^1.3.7, accepts@npm:^1.3.8": + version: 1.3.8 + resolution: "accepts@npm:1.3.8" + dependencies: + mime-types: ~2.1.34 + negotiator: 0.6.3 + checksum: 50c43d32e7b50285ebe84b613ee4a3aa426715a7d131b65b786e2ead0fd76b6b60091b9916d3478a75f11f162628a2139991b6c03ab3f1d9ab7c86075dc8eab4 + languageName: node + linkType: hard + +"acorn@npm:^8.8.2": + version: 8.14.1 + resolution: "acorn@npm:8.14.1" + bin: + acorn: bin/acorn + checksum: 260d9bb6017a1b6e42d31364687f0258f78eb20210b36ef2baad38fd619d78d4e95ff7dde9b3dbe0d81f137f79a8d651a845363a26e6985997f7b71145dc5e94 + languageName: node + linkType: hard + +"agent-base@npm:^7.1.0, agent-base@npm:^7.1.2": + version: 7.1.3 + resolution: "agent-base@npm:7.1.3" + checksum: 87bb7ee54f5ecf0ccbfcba0b07473885c43ecd76cb29a8db17d6137a19d9f9cd443a2a7c5fd8a3f24d58ad8145f9eb49116344a66b107e1aeab82cf2383f4753 + languageName: node + linkType: hard + +"aggregate-error@npm:^3.0.0": + version: 3.1.0 + resolution: "aggregate-error@npm:3.1.0" + dependencies: + clean-stack: ^2.0.0 + indent-string: ^4.0.0 + checksum: 1101a33f21baa27a2fa8e04b698271e64616b886795fd43c31068c07533c7b3facfcaf4e9e0cab3624bd88f729a592f1c901a1a229c9e490eafce411a8644b79 + languageName: node + linkType: hard + +"anser@npm:^1.4.9": + version: 1.4.10 + resolution: "anser@npm:1.4.10" + checksum: 3823c64f8930d3d97f36e56cdf646fa6351f1227e25eee70c3a17697447cae4238fc3a309bb3bc2003cf930687fa72aed71426dbcf3c0a15565e120a7fee5507 + languageName: node + linkType: hard + +"ansi-escapes@npm:^4.2.1, ansi-escapes@npm:^4.3.2": + version: 4.3.2 + resolution: "ansi-escapes@npm:4.3.2" + dependencies: + type-fest: ^0.21.3 + checksum: 93111c42189c0a6bed9cdb4d7f2829548e943827ee8479c74d6e0b22ee127b2a21d3f8b5ca57723b8ef78ce011fbfc2784350eb2bde3ccfccf2f575fa8489815 + languageName: node + linkType: hard + +"ansi-regex@npm:^4.1.0": + version: 4.1.1 + resolution: "ansi-regex@npm:4.1.1" + checksum: b1a6ee44cb6ecdabaa770b2ed500542714d4395d71c7e5c25baa631f680fb2ad322eb9ba697548d498a6fd366949fc8b5bfcf48d49a32803611f648005b01888 + languageName: node + linkType: hard + +"ansi-regex@npm:^5.0.0, ansi-regex@npm:^5.0.1": + version: 5.0.1 + resolution: "ansi-regex@npm:5.0.1" + checksum: 2aa4bb54caf2d622f1afdad09441695af2a83aa3fe8b8afa581d205e57ed4261c183c4d3877cee25794443fde5876417d859c108078ab788d6af7e4fe52eb66b + languageName: node + linkType: hard + +"ansi-regex@npm:^6.0.1": + version: 6.1.0 + resolution: "ansi-regex@npm:6.1.0" + checksum: 495834a53b0856c02acd40446f7130cb0f8284f4a39afdab20d5dc42b2e198b1196119fe887beed8f9055c4ff2055e3b2f6d4641d0be018cdfb64fedf6fc1aac + languageName: node + linkType: hard + +"ansi-styles@npm:^3.2.1": + version: 3.2.1 + resolution: "ansi-styles@npm:3.2.1" + dependencies: + color-convert: ^1.9.0 + checksum: d85ade01c10e5dd77b6c89f34ed7531da5830d2cb5882c645f330079975b716438cd7ebb81d0d6e6b4f9c577f19ae41ab55f07f19786b02f9dfd9e0377395665 + languageName: node + linkType: hard + +"ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": + version: 4.3.0 + resolution: "ansi-styles@npm:4.3.0" + dependencies: + color-convert: ^2.0.1 + checksum: 513b44c3b2105dd14cc42a19271e80f386466c4be574bccf60b627432f9198571ebf4ab1e4c3ba17347658f4ee1711c163d574248c0c1cdc2d5917a0ad582ec4 + languageName: node + linkType: hard + +"ansi-styles@npm:^5.0.0": + version: 5.2.0 + resolution: "ansi-styles@npm:5.2.0" + checksum: d7f4e97ce0623aea6bc0d90dcd28881ee04cba06c570b97fd3391bd7a268eedfd9d5e2dd4fdcbdd82b8105df5faf6f24aaedc08eaf3da898e702db5948f63469 + languageName: node + linkType: hard + +"ansi-styles@npm:^6.1.0": + version: 6.2.1 + resolution: "ansi-styles@npm:6.2.1" + checksum: ef940f2f0ced1a6347398da88a91da7930c33ecac3c77b72c5905f8b8fe402c52e6fde304ff5347f616e27a742da3f1dc76de98f6866c69251ad0b07a66776d9 + languageName: node + linkType: hard + +"any-promise@npm:^1.0.0": + version: 1.3.0 + resolution: "any-promise@npm:1.3.0" + checksum: 0ee8a9bdbe882c90464d75d1f55cf027f5458650c4bd1f0467e65aec38ccccda07ca5844969ee77ed46d04e7dded3eaceb027e8d32f385688523fe305fa7e1de + languageName: node + linkType: hard + +"anymatch@npm:^3.0.3": + version: 3.1.3 + resolution: "anymatch@npm:3.1.3" + dependencies: + normalize-path: ^3.0.0 + picomatch: ^2.0.4 + checksum: 3e044fd6d1d26545f235a9fe4d7a534e2029d8e59fa7fd9f2a6eb21230f6b5380ea1eaf55136e60cbf8e613544b3b766e7a6fa2102e2a3a117505466e3025dc2 + languageName: node + linkType: hard + +"application-config-path@npm:^0.1.0": + version: 0.1.1 + resolution: "application-config-path@npm:0.1.1" + checksum: e478c1e4d515108de89693165d92dab11cfdc69dd0f3ccde034f14a3f4e50007946de9e4dd51cd77d2f7ba9752e75d8e4d937ef053a53e466425d9751c961a37 + languageName: node + linkType: hard + +"arg@npm:^5.0.2": + version: 5.0.2 + resolution: "arg@npm:5.0.2" + checksum: 6c69ada1a9943d332d9e5382393e897c500908d91d5cb735a01120d5f71daf1b339b7b8980cbeaba8fd1afc68e658a739746179e4315a26e8a28951ff9930078 + languageName: node + linkType: hard + +"argparse@npm:^1.0.7": + version: 1.0.10 + resolution: "argparse@npm:1.0.10" + dependencies: + sprintf-js: ~1.0.2 + checksum: 7ca6e45583a28de7258e39e13d81e925cfa25d7d4aacbf806a382d3c02fcb13403a07fb8aeef949f10a7cfe4a62da0e2e807b348a5980554cc28ee573ef95945 + languageName: node + linkType: hard + +"argparse@npm:^2.0.1": + version: 2.0.1 + resolution: "argparse@npm:2.0.1" + checksum: 83644b56493e89a254bae05702abf3a1101b4fa4d0ca31df1c9985275a5a5bd47b3c27b7fa0b71098d41114d8ca000e6ed90cad764b306f8a503665e4d517ced + languageName: node + linkType: hard + +"array-union@npm:^2.1.0": + version: 2.1.0 + resolution: "array-union@npm:2.1.0" + checksum: 5bee12395cba82da674931df6d0fea23c4aa4660cb3b338ced9f828782a65caa232573e6bf3968f23e0c5eb301764a382cef2f128b170a9dc59de0e36c39f98d + languageName: node + linkType: hard + +"asap@npm:~2.0.3, asap@npm:~2.0.6": + version: 2.0.6 + resolution: "asap@npm:2.0.6" + checksum: b296c92c4b969e973260e47523207cd5769abd27c245a68c26dc7a0fe8053c55bb04360237cb51cab1df52be939da77150ace99ad331fb7fb13b3423ed73ff3d + languageName: node + linkType: hard + +"ast-types@npm:0.15.2": + version: 0.15.2 + resolution: "ast-types@npm:0.15.2" + dependencies: + tslib: ^2.0.1 + checksum: 24f0d86bf9e4c8dae16fa24b13c1776f2c2677040bcfbd4eb4f27911db49020be4876885e45e6cfcc548ed4dfea3a0742d77e3346b84fae47379cb0b89e9daa0 + languageName: node + linkType: hard + +"async-limiter@npm:~1.0.0": + version: 1.0.1 + resolution: "async-limiter@npm:1.0.1" + checksum: 2b849695b465d93ad44c116220dee29a5aeb63adac16c1088983c339b0de57d76e82533e8e364a93a9f997f28bbfc6a92948cefc120652bd07f3b59f8d75cf2b + languageName: node + linkType: hard + +"asynckit@npm:^0.4.0": + version: 0.4.0 + resolution: "asynckit@npm:0.4.0" + checksum: 7b78c451df768adba04e2d02e63e2d0bf3b07adcd6e42b4cf665cb7ce899bedd344c69a1dcbce355b5f972d597b25aaa1c1742b52cffd9caccb22f348114f6be + languageName: node + linkType: hard + +"at-least-node@npm:^1.0.0": + version: 1.0.0 + resolution: "at-least-node@npm:1.0.0" + checksum: 463e2f8e43384f1afb54bc68485c436d7622acec08b6fad269b421cb1d29cebb5af751426793d0961ed243146fe4dc983402f6d5a51b720b277818dbf6f2e49e + languageName: node + linkType: hard + +"babel-core@npm:^7.0.0-bridge.0": + version: 7.0.0-bridge.0 + resolution: "babel-core@npm:7.0.0-bridge.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2a1cb879019dffb08d17bec36e13c3a6d74c94773f41c1fd8b14de13f149cc34b705b0a1e07b42fcf35917b49d78db6ff0c5c3b00b202a5235013d517b5c6bbb + languageName: node + linkType: hard + +"babel-jest@npm:^29.7.0": + version: 29.7.0 + resolution: "babel-jest@npm:29.7.0" + dependencies: + "@jest/transform": ^29.7.0 + "@types/babel__core": ^7.1.14 + babel-plugin-istanbul: ^6.1.1 + babel-preset-jest: ^29.6.3 + chalk: ^4.0.0 + graceful-fs: ^4.2.9 + slash: ^3.0.0 + peerDependencies: + "@babel/core": ^7.8.0 + checksum: ee6f8e0495afee07cac5e4ee167be705c711a8cc8a737e05a587a131fdae2b3c8f9aa55dfd4d9c03009ac2d27f2de63d8ba96d3e8460da4d00e8af19ef9a83f7 + languageName: node + linkType: hard + +"babel-plugin-istanbul@npm:^6.1.1": + version: 6.1.1 + resolution: "babel-plugin-istanbul@npm:6.1.1" + dependencies: + "@babel/helper-plugin-utils": ^7.0.0 + "@istanbuljs/load-nyc-config": ^1.0.0 + "@istanbuljs/schema": ^0.1.2 + istanbul-lib-instrument: ^5.0.4 + test-exclude: ^6.0.0 + checksum: cb4fd95738219f232f0aece1116628cccff16db891713c4ccb501cddbbf9272951a5df81f2f2658dfdf4b3e7b236a9d5cbcf04d5d8c07dd5077297339598061a + languageName: node + linkType: hard + +"babel-plugin-jest-hoist@npm:^29.6.3": + version: 29.6.3 + resolution: "babel-plugin-jest-hoist@npm:29.6.3" + dependencies: + "@babel/template": ^7.3.3 + "@babel/types": ^7.3.3 + "@types/babel__core": ^7.1.14 + "@types/babel__traverse": ^7.0.6 + checksum: 51250f22815a7318f17214a9d44650ba89551e6d4f47a2dc259128428324b52f5a73979d010cefd921fd5a720d8c1d55ad74ff601cd94c7bd44d5f6292fde2d1 + languageName: node + linkType: hard + +"babel-plugin-polyfill-corejs2@npm:^0.4.10": + version: 0.4.12 + resolution: "babel-plugin-polyfill-corejs2@npm:0.4.12" + dependencies: + "@babel/compat-data": ^7.22.6 + "@babel/helper-define-polyfill-provider": ^0.6.3 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 6e6e6a8b85fec80a310ded2f5c151385e4ac59118909dd6a952e1025e4a478eb79dda45a5a6322cc2e598fd696eb07d4e2fa52418b4101f3dc370bdf8c8939ba + languageName: node + linkType: hard + +"babel-plugin-polyfill-corejs3@npm:^0.10.6": + version: 0.10.6 + resolution: "babel-plugin-polyfill-corejs3@npm:0.10.6" + dependencies: + "@babel/helper-define-polyfill-provider": ^0.6.2 + core-js-compat: ^3.38.0 + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: f762f29f7acca576897c63149c850f0a72babd3fb9ea436a2e36f0c339161c4b912a77828541d8188ce8a91e50965c6687120cf36071eabb1b7aa92f279e2164 + languageName: node + linkType: hard + +"babel-plugin-polyfill-regenerator@npm:^0.6.1": + version: 0.6.3 + resolution: "babel-plugin-polyfill-regenerator@npm:0.6.3" + dependencies: + "@babel/helper-define-polyfill-provider": ^0.6.3 + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: d12696e6b3f280eb78fac551619ca4389262db62c7352cd54bf679d830df8b35596eef2de77cf00db6648eada1c99d49c4f40636dbc9c335a1e5420cfef96750 + languageName: node + linkType: hard + +"babel-plugin-react-native-web@npm:~0.19.13": + version: 0.19.13 + resolution: "babel-plugin-react-native-web@npm:0.19.13" + checksum: 899165793b6e3416b87e830633d98b2bec6e29c89d838b86419a5a6e40b7042d3db98098393dfe3fc9be507054f5bcbf83c420cccfe5dc47c7d962acd1d313d5 + languageName: node + linkType: hard + +"babel-plugin-syntax-hermes-parser@npm:^0.23.1": + version: 0.23.1 + resolution: "babel-plugin-syntax-hermes-parser@npm:0.23.1" + dependencies: + hermes-parser: 0.23.1 + checksum: 5412008e8e85b08cd0d78168f746ade68b8ed69c0068831ce5e3d028f01c644f546ca0e2b7c9a4a8c6b9d5f14aff84c2453ab44b19cbec55e4366b20bbba9040 + languageName: node + linkType: hard + +"babel-plugin-syntax-hermes-parser@npm:^0.25.1": + version: 0.25.1 + resolution: "babel-plugin-syntax-hermes-parser@npm:0.25.1" + dependencies: + hermes-parser: 0.25.1 + checksum: dc80fafde1aed8e60cf86ecd2e9920e7f35ffe02b33bd4e772daaa786167bcf508aac3fc1aea425ff4c7a0be94d82528f3fe8619b7f41dac853264272d640c04 + languageName: node + linkType: hard + +"babel-plugin-transform-flow-enums@npm:^0.0.2": + version: 0.0.2 + resolution: "babel-plugin-transform-flow-enums@npm:0.0.2" + dependencies: + "@babel/plugin-syntax-flow": ^7.12.1 + checksum: fd52aef54448e01948a9d1cca0c8f87d064970c8682458962b7a222c372704bc2ce26ae8109e0ab2566e7ea5106856460f04c1a5ed794ab3bcd2f42cae1d9845 + languageName: node + linkType: hard + +"babel-preset-current-node-syntax@npm:^1.0.0": + version: 1.1.0 + resolution: "babel-preset-current-node-syntax@npm:1.1.0" + dependencies: + "@babel/plugin-syntax-async-generators": ^7.8.4 + "@babel/plugin-syntax-bigint": ^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.10.4 + "@babel/plugin-syntax-nullish-coalescing-operator": ^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-private-property-in-object": ^7.14.5 + "@babel/plugin-syntax-top-level-await": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 9f93fac975eaba296c436feeca1031ca0539143c4066eaf5d1ba23525a31850f03b651a1049caea7287df837a409588c8252c15627ad3903f17864c8e25ed64b + languageName: node + linkType: hard + +"babel-preset-expo@npm:~12.0.9": + version: 12.0.9 + resolution: "babel-preset-expo@npm:12.0.9" + dependencies: + "@babel/plugin-proposal-decorators": ^7.12.9 + "@babel/plugin-transform-export-namespace-from": ^7.22.11 + "@babel/plugin-transform-object-rest-spread": ^7.12.13 + "@babel/plugin-transform-parameters": ^7.22.15 + "@babel/preset-react": ^7.22.15 + "@babel/preset-typescript": ^7.23.0 + "@react-native/babel-preset": 0.76.7 + babel-plugin-react-native-web: ~0.19.13 + react-refresh: ^0.14.2 + peerDependencies: + babel-plugin-react-compiler: ^19.0.0-beta-9ee70a1-20241017 + react-compiler-runtime: ^19.0.0-beta-8a03594-20241020 + peerDependenciesMeta: + babel-plugin-react-compiler: + optional: true + react-compiler-runtime: + optional: true + checksum: b62149d7a45814528acd02281edfc5428efafab18beca5551ecfca838dce48004a5976c95c588219db113aa31c3470fe6761a068577e35dcc9ffbe1a90f8d2e9 + languageName: node + linkType: hard + +"babel-preset-jest@npm:^29.6.3": + version: 29.6.3 + resolution: "babel-preset-jest@npm:29.6.3" + dependencies: + babel-plugin-jest-hoist: ^29.6.3 + babel-preset-current-node-syntax: ^1.0.0 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: aa4ff2a8a728d9d698ed521e3461a109a1e66202b13d3494e41eea30729a5e7cc03b3a2d56c594423a135429c37bf63a9fa8b0b9ce275298be3095a88c69f6fb + languageName: node + linkType: hard + +"balanced-match@npm:^1.0.0": + version: 1.0.2 + resolution: "balanced-match@npm:1.0.2" + checksum: 9706c088a283058a8a99e0bf91b0a2f75497f185980d9ffa8b304de1d9e58ebda7c72c07ebf01dadedaac5b2907b2c6f566f660d62bd336c3468e960403b9d65 + languageName: node + linkType: hard + +"base64-js@npm:^1.2.3, base64-js@npm:^1.3.1, base64-js@npm:^1.5.1": + version: 1.5.1 + resolution: "base64-js@npm:1.5.1" + checksum: 669632eb3745404c2f822a18fc3a0122d2f9a7a13f7fb8b5823ee19d1d2ff9ee5b52c53367176ea4ad093c332fd5ab4bd0ebae5a8e27917a4105a4cfc86b1005 + languageName: node + linkType: hard + +"better-opn@npm:~3.0.2": + version: 3.0.2 + resolution: "better-opn@npm:3.0.2" + dependencies: + open: ^8.0.4 + checksum: 1471552fa7f733561e7f49e812be074b421153006ca744de985fb6d38939807959fc5fe9cb819cf09f864782e294704fd3b31711ea14c115baf3330a2f1135de + languageName: node + linkType: hard + +"big-integer@npm:1.6.x": + version: 1.6.52 + resolution: "big-integer@npm:1.6.52" + checksum: 6e86885787a20fed96521958ae9086960e4e4b5e74d04f3ef7513d4d0ad631a9f3bde2730fc8aaa4b00419fc865f6ec573e5320234531ef37505da7da192c40b + languageName: node + linkType: hard + +"boolbase@npm:^1.0.0": + version: 1.0.0 + resolution: "boolbase@npm:1.0.0" + checksum: 3e25c80ef626c3a3487c73dbfc70ac322ec830666c9ad915d11b701142fab25ec1e63eff2c450c74347acfd2de854ccde865cd79ef4db1683f7c7b046ea43bb0 + languageName: node + linkType: hard + +"bplist-creator@npm:0.0.7": + version: 0.0.7 + resolution: "bplist-creator@npm:0.0.7" + dependencies: + stream-buffers: ~2.2.0 + checksum: 5bcf4091c5a0e5934d56643d9f2705b5149a0b0b62b8314762f6ad4b3208d313c75ad03bab97a3c42b6e17db3d73530d3642d082ca249b55f952c90056c2b2ad + languageName: node + linkType: hard + +"bplist-creator@npm:0.1.1": + version: 0.1.1 + resolution: "bplist-creator@npm:0.1.1" + dependencies: + stream-buffers: 2.2.x + checksum: b0d40d1d1623f1afdbb575cfc8075d742d2c4f0eb458574be809e3857752d1042a39553b3943d2d7f505dde92bcd43e1d7bdac61c9cd44475d696deb79f897ce + languageName: node + linkType: hard + +"bplist-parser@npm:0.3.2, bplist-parser@npm:^0.3.1": + version: 0.3.2 + resolution: "bplist-parser@npm:0.3.2" + dependencies: + big-integer: 1.6.x + checksum: fad0f6eb155a9b636b4096a1725ce972a0386490d7d38df7be11a3a5645372446b7c44aacbc6626d24d2c17d8b837765361520ebf2960aeffcaf56765811620e + languageName: node + linkType: hard + +"brace-expansion@npm:^1.1.7": + version: 1.1.11 + resolution: "brace-expansion@npm:1.1.11" + dependencies: + balanced-match: ^1.0.0 + concat-map: 0.0.1 + checksum: faf34a7bb0c3fcf4b59c7808bc5d2a96a40988addf2e7e09dfbb67a2251800e0d14cd2bfc1aa79174f2f5095c54ff27f46fb1289fe2d77dac755b5eb3434cc07 + languageName: node + linkType: hard + +"brace-expansion@npm:^2.0.1": + version: 2.0.1 + resolution: "brace-expansion@npm:2.0.1" + dependencies: + balanced-match: ^1.0.0 + checksum: a61e7cd2e8a8505e9f0036b3b6108ba5e926b4b55089eeb5550cd04a471fe216c96d4fe7e4c7f995c728c554ae20ddfc4244cad10aef255e72b62930afd233d1 + languageName: node + linkType: hard + +"braces@npm:^3.0.3": + version: 3.0.3 + resolution: "braces@npm:3.0.3" + dependencies: + fill-range: ^7.1.1 + checksum: b95aa0b3bd909f6cd1720ffcf031aeaf46154dd88b4da01f9a1d3f7ea866a79eba76a6d01cbc3c422b2ee5cdc39a4f02491058d5df0d7bf6e6a162a832df1f69 + languageName: node + linkType: hard + +"browserslist@npm:^4.24.0, browserslist@npm:^4.24.4": + version: 4.24.4 + resolution: "browserslist@npm:4.24.4" + dependencies: + caniuse-lite: ^1.0.30001688 + electron-to-chromium: ^1.5.73 + node-releases: ^2.0.19 + update-browserslist-db: ^1.1.1 + bin: + browserslist: cli.js + checksum: 64074bf6cf0a9ae3094d753270e3eae9cf925149db45d646f0bc67bacc2e46d7ded64a4e835b95f5fdcf0350f63a83c3755b32f80831f643a47f0886deb8a065 + languageName: node + linkType: hard + +"bser@npm:2.1.1": + version: 2.1.1 + resolution: "bser@npm:2.1.1" + dependencies: + node-int64: ^0.4.0 + checksum: 9ba4dc58ce86300c862bffc3ae91f00b2a03b01ee07f3564beeeaf82aa243b8b03ba53f123b0b842c190d4399b94697970c8e7cf7b1ea44b61aa28c3526a4449 + languageName: node + linkType: hard + +"buffer-alloc-unsafe@npm:^1.1.0": + version: 1.1.0 + resolution: "buffer-alloc-unsafe@npm:1.1.0" + checksum: c5e18bf51f67754ec843c9af3d4c005051aac5008a3992938dda1344e5cfec77c4b02b4ca303644d1e9a6e281765155ce6356d85c6f5ccc5cd21afc868def396 + languageName: node + linkType: hard + +"buffer-alloc@npm:^1.1.0": + version: 1.2.0 + resolution: "buffer-alloc@npm:1.2.0" + dependencies: + buffer-alloc-unsafe: ^1.1.0 + buffer-fill: ^1.0.0 + checksum: 560cd27f3cbe73c614867da373407d4506309c62fe18de45a1ce191f3785ec6ca2488d802ff82065798542422980ca25f903db078c57822218182c37c3576df5 + languageName: node + linkType: hard + +"buffer-fill@npm:^1.0.0": + version: 1.0.0 + resolution: "buffer-fill@npm:1.0.0" + checksum: c29b4723ddeab01e74b5d3b982a0c6828f2ded49cef049ddca3dac661c874ecdbcecb5dd8380cf0f4adbeb8cff90a7de724126750a1f1e5ebd4eb6c59a1315b1 + languageName: node + linkType: hard + +"buffer-from@npm:^1.0.0": + version: 1.1.2 + resolution: "buffer-from@npm:1.1.2" + checksum: 0448524a562b37d4d7ed9efd91685a5b77a50672c556ea254ac9a6d30e3403a517d8981f10e565db24e8339413b43c97ca2951f10e399c6125a0d8911f5679bb + languageName: node + linkType: hard + +"buffer@npm:^5.4.3": + version: 5.7.1 + resolution: "buffer@npm:5.7.1" + dependencies: + base64-js: ^1.3.1 + ieee754: ^1.1.13 + checksum: e2cf8429e1c4c7b8cbd30834ac09bd61da46ce35f5c22a78e6c2f04497d6d25541b16881e30a019c6fd3154150650ccee27a308eff3e26229d788bbdeb08ab84 + languageName: node + linkType: hard + +"buffer@npm:^6.0.3": + version: 6.0.3 + resolution: "buffer@npm:6.0.3" + dependencies: + base64-js: ^1.3.1 + ieee754: ^1.2.1 + checksum: 5ad23293d9a731e4318e420025800b42bf0d264004c0286c8cc010af7a270c7a0f6522e84f54b9ad65cbd6db20b8badbfd8d2ebf4f80fa03dab093b89e68c3f9 + languageName: node + linkType: hard + +"bytes@npm:3.1.2": + version: 3.1.2 + resolution: "bytes@npm:3.1.2" + checksum: e4bcd3948d289c5127591fbedf10c0b639ccbf00243504e4e127374a15c3bc8eed0d28d4aaab08ff6f1cf2abc0cce6ba3085ed32f4f90e82a5683ce0014e1b6e + languageName: node + linkType: hard + +"cacache@npm:^18.0.2": + version: 18.0.4 + resolution: "cacache@npm:18.0.4" + dependencies: + "@npmcli/fs": ^3.1.0 + fs-minipass: ^3.0.0 + glob: ^10.2.2 + lru-cache: ^10.0.1 + minipass: ^7.0.3 + minipass-collect: ^2.0.1 + minipass-flush: ^1.0.5 + minipass-pipeline: ^1.2.4 + p-map: ^4.0.0 + ssri: ^10.0.0 + tar: ^6.1.11 + unique-filename: ^3.0.0 + checksum: b7422c113b4ec750f33beeca0f426a0024c28e3172f332218f48f963e5b970647fa1ac05679fe5bb448832c51efea9fda4456b9a95c3a1af1105fe6c1833cde2 + languageName: node + linkType: hard + +"cacache@npm:^19.0.1": + version: 19.0.1 + resolution: "cacache@npm:19.0.1" + dependencies: + "@npmcli/fs": ^4.0.0 + fs-minipass: ^3.0.0 + glob: ^10.2.2 + lru-cache: ^10.0.1 + minipass: ^7.0.3 + minipass-collect: ^2.0.1 + minipass-flush: ^1.0.5 + minipass-pipeline: ^1.2.4 + p-map: ^7.0.2 + ssri: ^12.0.0 + tar: ^7.4.3 + unique-filename: ^4.0.0 + checksum: e95684717de6881b4cdaa949fa7574e3171946421cd8291769dd3d2417dbf7abf4aa557d1f968cca83dcbc95bed2a281072b09abfc977c942413146ef7ed4525 + languageName: node + linkType: hard + +"call-bind-apply-helpers@npm:^1.0.1, call-bind-apply-helpers@npm:^1.0.2": + version: 1.0.2 + resolution: "call-bind-apply-helpers@npm:1.0.2" + dependencies: + es-errors: ^1.3.0 + function-bind: ^1.1.2 + checksum: b2863d74fcf2a6948221f65d95b91b4b2d90cfe8927650b506141e669f7d5de65cea191bf788838bc40d13846b7886c5bc5c84ab96c3adbcf88ad69a72fcdc6b + languageName: node + linkType: hard + +"caller-callsite@npm:^2.0.0": + version: 2.0.0 + resolution: "caller-callsite@npm:2.0.0" + dependencies: + callsites: ^2.0.0 + checksum: b685e9d126d9247b320cfdfeb3bc8da0c4be28d8fb98c471a96bc51aab3130099898a2fe3bf0308f0fe048d64c37d6d09f563958b9afce1a1e5e63d879c128a2 + languageName: node + linkType: hard + +"caller-path@npm:^2.0.0": + version: 2.0.0 + resolution: "caller-path@npm:2.0.0" + dependencies: + caller-callsite: ^2.0.0 + checksum: 3e12ccd0c71ec10a057aac69e3ec175b721ca858c640df021ef0d25999e22f7c1d864934b596b7d47038e9b56b7ec315add042abbd15caac882998b50102fb12 + languageName: node + linkType: hard + +"callsites@npm:^2.0.0": + version: 2.0.0 + resolution: "callsites@npm:2.0.0" + checksum: be2f67b247df913732b7dec1ec0bbfcdbaea263e5a95968b19ec7965affae9496b970e3024317e6d4baa8e28dc6ba0cec03f46fdddc2fdcc51396600e53c2623 + languageName: node + linkType: hard + +"callsites@npm:^3.0.0": + version: 3.1.0 + resolution: "callsites@npm:3.1.0" + checksum: 072d17b6abb459c2ba96598918b55868af677154bec7e73d222ef95a8fdb9bbf7dae96a8421085cdad8cd190d86653b5b6dc55a4484f2e5b2e27d5e0c3fc15b3 + languageName: node + linkType: hard + +"camelcase@npm:^5.3.1": + version: 5.3.1 + resolution: "camelcase@npm:5.3.1" + checksum: e6effce26b9404e3c0f301498184f243811c30dfe6d0b9051863bd8e4034d09c8c2923794f280d6827e5aa055f6c434115ff97864a16a963366fb35fd673024b + languageName: node + linkType: hard + +"camelcase@npm:^6.2.0": + version: 6.3.0 + resolution: "camelcase@npm:6.3.0" + checksum: 8c96818a9076434998511251dcb2761a94817ea17dbdc37f47ac080bd088fc62c7369429a19e2178b993497132c8cbcf5cc1f44ba963e76782ba469c0474938d + languageName: node + linkType: hard + +"caniuse-lite@npm:^1.0.30001688": + version: 1.0.30001702 + resolution: "caniuse-lite@npm:1.0.30001702" + checksum: ba8e88f0ef09a16f36de805c9491c3047986ab6bb1e0dc66f03067dce5e197be1c98cfaed21867bad851985f775b8d4fa50e7e37537c116a5fe1ae623dfd400c + languageName: node + linkType: hard + +"chalk@npm:^2.0.1, chalk@npm:^2.4.2": + version: 2.4.2 + resolution: "chalk@npm:2.4.2" + dependencies: + ansi-styles: ^3.2.1 + escape-string-regexp: ^1.0.5 + supports-color: ^5.3.0 + checksum: ec3661d38fe77f681200f878edbd9448821924e0f93a9cefc0e26a33b145f1027a2084bf19967160d11e1f03bfe4eaffcabf5493b89098b2782c3fe0b03d80c2 + languageName: node + linkType: hard + +"chalk@npm:^4.0.0, chalk@npm:^4.1.0, chalk@npm:^4.1.2": + version: 4.1.2 + resolution: "chalk@npm:4.1.2" + dependencies: + ansi-styles: ^4.1.0 + supports-color: ^7.1.0 + checksum: fe75c9d5c76a7a98d45495b91b2172fa3b7a09e0cc9370e5c8feb1c567b85c4288e2b3fded7cfdd7359ac28d6b3844feb8b82b8686842e93d23c827c417e83fc + languageName: node + linkType: hard + +"charenc@npm:0.0.2": + version: 0.0.2 + resolution: "charenc@npm:0.0.2" + checksum: 81dcadbe57e861d527faf6dd3855dc857395a1c4d6781f4847288ab23cffb7b3ee80d57c15bba7252ffe3e5e8019db767757ee7975663ad2ca0939bb8fcaf2e5 + languageName: node + linkType: hard + +"chownr@npm:^2.0.0": + version: 2.0.0 + resolution: "chownr@npm:2.0.0" + checksum: c57cf9dd0791e2f18a5ee9c1a299ae6e801ff58fee96dc8bfd0dcb4738a6ce58dd252a3605b1c93c6418fe4f9d5093b28ffbf4d66648cb2a9c67eaef9679be2f + languageName: node + linkType: hard + +"chownr@npm:^3.0.0": + version: 3.0.0 + resolution: "chownr@npm:3.0.0" + checksum: fd73a4bab48b79e66903fe1cafbdc208956f41ea4f856df883d0c7277b7ab29fd33ee65f93b2ec9192fc0169238f2f8307b7735d27c155821d886b84aa97aa8d + languageName: node + linkType: hard + +"chrome-launcher@npm:^0.15.2": + version: 0.15.2 + resolution: "chrome-launcher@npm:0.15.2" + dependencies: + "@types/node": "*" + escape-string-regexp: ^4.0.0 + is-wsl: ^2.2.0 + lighthouse-logger: ^1.0.0 + bin: + print-chrome-path: bin/print-chrome-path.js + checksum: e1f8131b9f7bd931248ea85f413c6cdb93a0d41440ff5bf0987f36afb081d2b2c7b60ba6062ee7ae2dd9b052143f6b275b38c9eb115d11b49c3ea8829bad7db0 + languageName: node + linkType: hard + +"chromium-edge-launcher@npm:^0.2.0": + version: 0.2.0 + resolution: "chromium-edge-launcher@npm:0.2.0" + dependencies: + "@types/node": "*" + escape-string-regexp: ^4.0.0 + is-wsl: ^2.2.0 + lighthouse-logger: ^1.0.0 + mkdirp: ^1.0.4 + rimraf: ^3.0.2 + checksum: 9b56d1f8f18e84e34d6da89a4d97787ef323a1ade6551dcc83a6899af17c1bfc27a844c23422a29f51c6a315d1e04e2ad12595aaf07d3822335c2fce15914feb + languageName: node + linkType: hard + +"ci-info@npm:^2.0.0": + version: 2.0.0 + resolution: "ci-info@npm:2.0.0" + checksum: 3b374666a85ea3ca43fa49aa3a048d21c9b475c96eb13c133505d2324e7ae5efd6a454f41efe46a152269e9b6a00c9edbe63ec7fa1921957165aae16625acd67 + languageName: node + linkType: hard + +"ci-info@npm:^3.2.0, ci-info@npm:^3.3.0": + version: 3.9.0 + resolution: "ci-info@npm:3.9.0" + checksum: 6b19dc9b2966d1f8c2041a838217299718f15d6c4b63ae36e4674edd2bee48f780e94761286a56aa59eb305a85fbea4ddffb7630ec063e7ec7e7e5ad42549a87 + languageName: node + linkType: hard + +"clean-stack@npm:^2.0.0": + version: 2.2.0 + resolution: "clean-stack@npm:2.2.0" + checksum: 2ac8cd2b2f5ec986a3c743935ec85b07bc174d5421a5efc8017e1f146a1cf5f781ae962618f416352103b32c9cd7e203276e8c28241bbe946160cab16149fb68 + languageName: node + linkType: hard + +"cli-cursor@npm:^2.1.0": + version: 2.1.0 + resolution: "cli-cursor@npm:2.1.0" + dependencies: + restore-cursor: ^2.0.0 + checksum: d88e97bfdac01046a3ffe7d49f06757b3126559d7e44aa2122637eb179284dc6cd49fca2fac4f67c19faaf7e6dab716b6fe1dfcd309977407d8c7578ec2d044d + languageName: node + linkType: hard + +"cli-spinners@npm:^2.0.0": + version: 2.9.2 + resolution: "cli-spinners@npm:2.9.2" + checksum: 1bd588289b28432e4676cb5d40505cfe3e53f2e4e10fbe05c8a710a154d6fe0ce7836844b00d6858f740f2ffe67cdc36e0fce9c7b6a8430e80e6388d5aa4956c + languageName: node + linkType: hard + +"cliui@npm:^8.0.1": + version: 8.0.1 + resolution: "cliui@npm:8.0.1" + dependencies: + string-width: ^4.2.0 + strip-ansi: ^6.0.1 + wrap-ansi: ^7.0.0 + checksum: 79648b3b0045f2e285b76fb2e24e207c6db44323581e421c3acbd0e86454cba1b37aea976ab50195a49e7384b871e6dfb2247ad7dec53c02454ac6497394cb56 + languageName: node + linkType: hard + +"clone-deep@npm:^4.0.1": + version: 4.0.1 + resolution: "clone-deep@npm:4.0.1" + dependencies: + is-plain-object: ^2.0.4 + kind-of: ^6.0.2 + shallow-clone: ^3.0.0 + checksum: 770f912fe4e6f21873c8e8fbb1e99134db3b93da32df271d00589ea4a29dbe83a9808a322c93f3bcaf8584b8b4fa6fc269fc8032efbaa6728e0c9886c74467d2 + languageName: node + linkType: hard + +"clone@npm:^1.0.2": + version: 1.0.4 + resolution: "clone@npm:1.0.4" + checksum: d06418b7335897209e77bdd430d04f882189582e67bd1f75a04565f3f07f5b3f119a9d670c943b6697d0afb100f03b866b3b8a1f91d4d02d72c4ecf2bb64b5dd + languageName: node + linkType: hard + +"color-convert@npm:^1.9.0": + version: 1.9.3 + resolution: "color-convert@npm:1.9.3" + dependencies: + color-name: 1.1.3 + checksum: fd7a64a17cde98fb923b1dd05c5f2e6f7aefda1b60d67e8d449f9328b4e53b228a428fd38bfeaeb2db2ff6b6503a776a996150b80cdf224062af08a5c8a3a203 + languageName: node + linkType: hard + +"color-convert@npm:^2.0.1": + version: 2.0.1 + resolution: "color-convert@npm:2.0.1" + dependencies: + color-name: ~1.1.4 + checksum: 79e6bdb9fd479a205c71d89574fccfb22bd9053bd98c6c4d870d65c132e5e904e6034978e55b43d69fcaa7433af2016ee203ce76eeba9cfa554b373e7f7db336 + languageName: node + linkType: hard + +"color-name@npm:1.1.3": + version: 1.1.3 + resolution: "color-name@npm:1.1.3" + checksum: 09c5d3e33d2105850153b14466501f2bfb30324a2f76568a408763a3b7433b0e50e5b4ab1947868e65cb101bb7cb75029553f2c333b6d4b8138a73fcc133d69d + languageName: node + linkType: hard + +"color-name@npm:~1.1.4": + version: 1.1.4 + resolution: "color-name@npm:1.1.4" + checksum: b0445859521eb4021cd0fb0cc1a75cecf67fceecae89b63f62b201cca8d345baf8b952c966862a9d9a2632987d4f6581f0ec8d957dfacece86f0a7919316f610 + languageName: node + linkType: hard + +"combined-stream@npm:^1.0.8": + version: 1.0.8 + resolution: "combined-stream@npm:1.0.8" + dependencies: + delayed-stream: ~1.0.0 + checksum: 49fa4aeb4916567e33ea81d088f6584749fc90c7abec76fd516bf1c5aa5c79f3584b5ba3de6b86d26ddd64bae5329c4c7479343250cfe71c75bb366eae53bb7c + languageName: node + linkType: hard + +"command-exists@npm:^1.2.4": + version: 1.2.9 + resolution: "command-exists@npm:1.2.9" + checksum: 729ae3d88a2058c93c58840f30341b7f82688a573019535d198b57a4d8cb0135ced0ad7f52b591e5b28a90feb2c675080ce916e56254a0f7c15cb2395277cac3 + languageName: node + linkType: hard + +"commander@npm:^12.0.0": + version: 12.1.0 + resolution: "commander@npm:12.1.0" + checksum: 68e9818b00fc1ed9cdab9eb16905551c2b768a317ae69a5e3c43924c2b20ac9bb65b27e1cab36aeda7b6496376d4da908996ba2c0b5d79463e0fb1e77935d514 + languageName: node + linkType: hard + +"commander@npm:^2.20.0": + version: 2.20.3 + resolution: "commander@npm:2.20.3" + checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e + languageName: node + linkType: hard + +"commander@npm:^4.0.0": + version: 4.1.1 + resolution: "commander@npm:4.1.1" + checksum: d7b9913ff92cae20cb577a4ac6fcc121bd6223319e54a40f51a14740a681ad5c574fd29a57da478a5f234a6fa6c52cbf0b7c641353e03c648b1ae85ba670b977 + languageName: node + linkType: hard + +"commander@npm:^7.2.0": + version: 7.2.0 + resolution: "commander@npm:7.2.0" + checksum: 53501cbeee61d5157546c0bef0fedb6cdfc763a882136284bed9a07225f09a14b82d2a84e7637edfd1a679fb35ed9502fd58ef1d091e6287f60d790147f68ddc + languageName: node + linkType: hard + +"commondir@npm:^1.0.1": + version: 1.0.1 + resolution: "commondir@npm:1.0.1" + checksum: 59715f2fc456a73f68826285718503340b9f0dd89bfffc42749906c5cf3d4277ef11ef1cca0350d0e79204f00f1f6d83851ececc9095dc88512a697ac0b9bdcb + languageName: node + linkType: hard + +"component-type@npm:^1.2.1": + version: 1.2.2 + resolution: "component-type@npm:1.2.2" + checksum: ca5a9886a961985b9ebcc0a5b23f2526506eced1c2c932648e5f8960db22fffcc3a77442013c6aef0b5afa8e6b9de02ae2a23ce5c967374edaf99d74fd6d6c3e + languageName: node + linkType: hard + +"compressible@npm:~2.0.18": + version: 2.0.18 + resolution: "compressible@npm:2.0.18" + dependencies: + mime-db: ">= 1.43.0 < 2" + checksum: 58321a85b375d39230405654721353f709d0c1442129e9a17081771b816302a012471a9b8f4864c7dbe02eef7f2aaac3c614795197092262e94b409c9be108f0 + languageName: node + linkType: hard + +"compression@npm:^1.7.4": + version: 1.8.0 + resolution: "compression@npm:1.8.0" + dependencies: + bytes: 3.1.2 + compressible: ~2.0.18 + debug: 2.6.9 + negotiator: ~0.6.4 + on-headers: ~1.0.2 + safe-buffer: 5.2.1 + vary: ~1.1.2 + checksum: 12ca3e326b4ccb6b6e51e1d14d96fafd058ddb3be08fe888487d367d42fb4f81f25d4bf77acc517ba724370e7d74469280688baf2da8cad61062bdf62eb9fd45 + languageName: node + linkType: hard + +"concat-map@npm:0.0.1": + version: 0.0.1 + resolution: "concat-map@npm:0.0.1" + checksum: 902a9f5d8967a3e2faf138d5cb784b9979bad2e6db5357c5b21c568df4ebe62bcb15108af1b2253744844eb964fc023fbd9afbbbb6ddd0bcc204c6fb5b7bf3af + languageName: node + linkType: hard + +"connect@npm:^3.6.5, connect@npm:^3.7.0": + version: 3.7.0 + resolution: "connect@npm:3.7.0" + dependencies: + debug: 2.6.9 + finalhandler: 1.1.2 + parseurl: ~1.3.3 + utils-merge: 1.0.1 + checksum: 96e1c4effcf219b065c7823e57351c94366d2e2a6952fa95e8212bffb35c86f1d5a3f9f6c5796d4cd3a5fdda628368b1c3cc44bf19c66cfd68fe9f9cab9177e2 + languageName: node + linkType: hard + +"convert-source-map@npm:^2.0.0": + version: 2.0.0 + resolution: "convert-source-map@npm:2.0.0" + checksum: 63ae9933be5a2b8d4509daca5124e20c14d023c820258e484e32dc324d34c2754e71297c94a05784064ad27615037ef677e3f0c00469fb55f409d2bb21261035 + languageName: node + linkType: hard + +"core-js-compat@npm:^3.38.0": + version: 3.41.0 + resolution: "core-js-compat@npm:3.41.0" + dependencies: + browserslist: ^4.24.4 + checksum: 060f6d6ede3a5f201462ae6f54975ca4eefdb731c4983950c54bc81411fc1c2865a9e916091d034b5229d4dcb79e0f5f8aeda5eeb7a31d940550a5c14e8e8729 + languageName: node + linkType: hard + +"cosmiconfig@npm:^5.0.5": + version: 5.2.1 + resolution: "cosmiconfig@npm:5.2.1" + dependencies: + import-fresh: ^2.0.0 + is-directory: ^0.3.1 + js-yaml: ^3.13.1 + parse-json: ^4.0.0 + checksum: 8b6f1d3c8a5ffdf663a952f17af0761adf210b7a5933d0fe8988f3ca3a1f0e1e5cbbb74d5b419c15933dd2fdcaec31dbc5cc85cb8259a822342b93b529eff89c + languageName: node + linkType: hard + +"cosmiconfig@npm:^8.1.3": + version: 8.3.6 + resolution: "cosmiconfig@npm:8.3.6" + dependencies: + import-fresh: ^3.3.0 + js-yaml: ^4.1.0 + parse-json: ^5.2.0 + path-type: ^4.0.0 + peerDependencies: + typescript: ">=4.9.5" + peerDependenciesMeta: + typescript: + optional: true + checksum: dc339ebea427898c9e03bf01b56ba7afbac07fc7d2a2d5a15d6e9c14de98275a9565da949375aee1809591c152c0a3877bb86dbeaf74d5bd5aaa79955ad9e7a0 + languageName: node + linkType: hard + +"cross-fetch@npm:^3.1.5": + version: 3.2.0 + resolution: "cross-fetch@npm:3.2.0" + dependencies: + node-fetch: ^2.7.0 + checksum: 8ded5ea35f705e81e569e7db244a3f96e05e95996ff51877c89b0c1ec1163c76bb5dad77d0f8fba6bb35a0abacb36403d7271dc586d8b1f636110ee7a8d959fd + languageName: node + linkType: hard + +"cross-spawn@npm:^6.0.0": + version: 6.0.6 + resolution: "cross-spawn@npm:6.0.6" + dependencies: + nice-try: ^1.0.4 + path-key: ^2.0.1 + semver: ^5.5.0 + shebang-command: ^1.2.0 + which: ^1.2.9 + checksum: a6e2e5b04a0e0f806c1df45f92cd079b65f95fbe5a7650ee1ab60318c33a6c156a8a2f8b6898f57764f7363ec599a0625e9855dfa78d52d2d73dbd32eb11c25e + languageName: node + linkType: hard + +"cross-spawn@npm:^7.0.3, cross-spawn@npm:^7.0.6": + version: 7.0.6 + resolution: "cross-spawn@npm:7.0.6" + dependencies: + path-key: ^3.1.0 + shebang-command: ^2.0.0 + which: ^2.0.1 + checksum: 8d306efacaf6f3f60e0224c287664093fa9185680b2d195852ba9a863f85d02dcc737094c6e512175f8ee0161f9b87c73c6826034c2422e39de7d6569cf4503b + languageName: node + linkType: hard + +"crypt@npm:0.0.2": + version: 0.0.2 + resolution: "crypt@npm:0.0.2" + checksum: baf4c7bbe05df656ec230018af8cf7dbe8c14b36b98726939cef008d473f6fe7a4fad906cfea4062c93af516f1550a3f43ceb4d6615329612c6511378ed9fe34 + languageName: node + linkType: hard + +"crypto-random-string@npm:^2.0.0": + version: 2.0.0 + resolution: "crypto-random-string@npm:2.0.0" + checksum: 0283879f55e7c16fdceacc181f87a0a65c53bc16ffe1d58b9d19a6277adcd71900d02bb2c4843dd55e78c51e30e89b0fec618a7f170ebcc95b33182c28f05fd6 + languageName: node + linkType: hard + +"css-select@npm:^5.1.0": + version: 5.1.0 + resolution: "css-select@npm:5.1.0" + dependencies: + boolbase: ^1.0.0 + css-what: ^6.1.0 + domhandler: ^5.0.2 + domutils: ^3.0.1 + nth-check: ^2.0.1 + checksum: 2772c049b188d3b8a8159907192e926e11824aea525b8282981f72ba3f349cf9ecd523fdf7734875ee2cb772246c22117fc062da105b6d59afe8dcd5c99c9bda + languageName: node + linkType: hard + +"css-tree@npm:^1.1.3": + version: 1.1.3 + resolution: "css-tree@npm:1.1.3" + dependencies: + mdn-data: 2.0.14 + source-map: ^0.6.1 + checksum: 79f9b81803991b6977b7fcb1588799270438274d89066ce08f117f5cdb5e20019b446d766c61506dd772c839df84caa16042d6076f20c97187f5abe3b50e7d1f + languageName: node + linkType: hard + +"css-tree@npm:^2.3.1": + version: 2.3.1 + resolution: "css-tree@npm:2.3.1" + dependencies: + mdn-data: 2.0.30 + source-map-js: ^1.0.1 + checksum: 493cc24b5c22b05ee5314b8a0d72d8a5869491c1458017ae5ed75aeb6c3596637dbe1b11dac2548974624adec9f7a1f3a6cf40593dc1f9185eb0e8279543fbc0 + languageName: node + linkType: hard + +"css-tree@npm:~2.2.0": + version: 2.2.1 + resolution: "css-tree@npm:2.2.1" + dependencies: + mdn-data: 2.0.28 + source-map-js: ^1.0.1 + checksum: b94aa8cc2f09e6f66c91548411fcf74badcbad3e150345074715012d16333ce573596ff5dfca03c2a87edf1924716db765120f94247e919d72753628ba3aba27 + languageName: node + linkType: hard + +"css-what@npm:^6.1.0": + version: 6.1.0 + resolution: "css-what@npm:6.1.0" + checksum: b975e547e1e90b79625918f84e67db5d33d896e6de846c9b584094e529f0c63e2ab85ee33b9daffd05bff3a146a1916bec664e18bb76dd5f66cbff9fc13b2bbe + languageName: node + linkType: hard + +"csso@npm:^5.0.5": + version: 5.0.5 + resolution: "csso@npm:5.0.5" + dependencies: + css-tree: ~2.2.0 + checksum: 0ad858d36bf5012ed243e9ec69962a867509061986d2ee07cc040a4b26e4d062c00d4c07e5ba8d430706ceb02dd87edd30a52b5937fd45b1b6f2119c4993d59a + languageName: node + linkType: hard + +"csstype@npm:^3.0.2": + version: 3.1.3 + resolution: "csstype@npm:3.1.3" + checksum: 8db785cc92d259102725b3c694ec0c823f5619a84741b5c7991b8ad135dfaa66093038a1cc63e03361a6cd28d122be48f2106ae72334e067dd619a51f49eddf7 + languageName: node + linkType: hard + +"debug@npm:2.6.9, debug@npm:^2.2.0, debug@npm:^2.6.9": + version: 2.6.9 + resolution: "debug@npm:2.6.9" + dependencies: + ms: 2.0.0 + checksum: d2f51589ca66df60bf36e1fa6e4386b318c3f1e06772280eea5b1ae9fd3d05e9c2b7fd8a7d862457d00853c75b00451aa2d7459b924629ee385287a650f58fe6 + languageName: node + linkType: hard + +"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:^4.3.5": + version: 4.4.0 + resolution: "debug@npm:4.4.0" + dependencies: + ms: ^2.1.3 + peerDependenciesMeta: + supports-color: + optional: true + checksum: fb42df878dd0e22816fc56e1fdca9da73caa85212fbe40c868b1295a6878f9101ae684f4eeef516c13acfc700f5ea07f1136954f43d4cd2d477a811144136479 + languageName: node + linkType: hard + +"debug@npm:^3.1.0": + version: 3.2.7 + resolution: "debug@npm:3.2.7" + dependencies: + ms: ^2.1.1 + checksum: b3d8c5940799914d30314b7c3304a43305fd0715581a919dacb8b3176d024a782062368405b47491516d2091d6462d4d11f2f4974a405048094f8bfebfa3071c + languageName: node + linkType: hard + +"deep-extend@npm:^0.6.0": + version: 0.6.0 + resolution: "deep-extend@npm:0.6.0" + checksum: 7be7e5a8d468d6b10e6a67c3de828f55001b6eb515d014f7aeb9066ce36bd5717161eb47d6a0f7bed8a9083935b465bc163ee2581c8b128d29bf61092fdf57a7 + languageName: node + linkType: hard + +"deepmerge@npm:^4.3.1": + version: 4.3.1 + resolution: "deepmerge@npm:4.3.1" + checksum: 2024c6a980a1b7128084170c4cf56b0fd58a63f2da1660dcfe977415f27b17dbe5888668b59d0b063753f3220719d5e400b7f113609489c90160bb9a5518d052 + languageName: node + linkType: hard + +"default-gateway@npm:^4.2.0": + version: 4.2.0 + resolution: "default-gateway@npm:4.2.0" + dependencies: + execa: ^1.0.0 + ip-regex: ^2.1.0 + checksum: 1f5be765471689c6bab33e0c8b87363c3e2485cc1ab78904d383a8a8293a79f684da2a3303744b112503f986af4ea87d917c63a468ed913e9b0c31588c02d6a4 + languageName: node + linkType: hard + +"defaults@npm:^1.0.3": + version: 1.0.4 + resolution: "defaults@npm:1.0.4" + dependencies: + clone: ^1.0.2 + checksum: 3a88b7a587fc076b84e60affad8b85245c01f60f38fc1d259e7ac1d89eb9ce6abb19e27215de46b98568dd5bc48471730b327637e6f20b0f1bc85cf00440c80a + languageName: node + linkType: hard + +"define-lazy-prop@npm:^2.0.0": + version: 2.0.0 + resolution: "define-lazy-prop@npm:2.0.0" + checksum: 0115fdb065e0490918ba271d7339c42453d209d4cb619dfe635870d906731eff3e1ade8028bb461ea27ce8264ec5e22c6980612d332895977e89c1bbc80fcee2 + languageName: node + linkType: hard + +"del@npm:^6.0.0": + version: 6.1.1 + resolution: "del@npm:6.1.1" + dependencies: + globby: ^11.0.1 + graceful-fs: ^4.2.4 + is-glob: ^4.0.1 + is-path-cwd: ^2.2.0 + is-path-inside: ^3.0.2 + p-map: ^4.0.0 + rimraf: ^3.0.2 + slash: ^3.0.0 + checksum: 563288b73b8b19a7261c47fd21a330eeab6e2acd7c6208c49790dfd369127120dd7836cdf0c1eca216b77c94782a81507eac6b4734252d3bef2795cb366996b6 + languageName: node + linkType: hard + +"delayed-stream@npm:~1.0.0": + version: 1.0.0 + resolution: "delayed-stream@npm:1.0.0" + checksum: 46fe6e83e2cb1d85ba50bd52803c68be9bd953282fa7096f51fc29edd5d67ff84ff753c51966061e5ba7cb5e47ef6d36a91924eddb7f3f3483b1c560f77a0020 + languageName: node + linkType: hard + +"depd@npm:2.0.0": + version: 2.0.0 + resolution: "depd@npm:2.0.0" + checksum: abbe19c768c97ee2eed6282d8ce3031126662252c58d711f646921c9623f9052e3e1906443066beec1095832f534e57c523b7333f8e7e0d93051ab6baef5ab3a + languageName: node + linkType: hard + +"destroy@npm:1.2.0": + version: 1.2.0 + resolution: "destroy@npm:1.2.0" + checksum: 0acb300b7478a08b92d810ab229d5afe0d2f4399272045ab22affa0d99dbaf12637659411530a6fcd597a9bdac718fc94373a61a95b4651bbc7b83684a565e38 + languageName: node + linkType: hard + +"detect-libc@npm:^1.0.3": + version: 1.0.3 + resolution: "detect-libc@npm:1.0.3" + bin: + detect-libc: ./bin/detect-libc.js + checksum: daaaed925ffa7889bd91d56e9624e6c8033911bb60f3a50a74a87500680652969dbaab9526d1e200a4c94acf80fc862a22131841145a0a8482d60a99c24f4a3e + languageName: node + linkType: hard + +"dir-glob@npm:^3.0.1": + version: 3.0.1 + resolution: "dir-glob@npm:3.0.1" + dependencies: + path-type: ^4.0.0 + checksum: fa05e18324510d7283f55862f3161c6759a3f2f8dbce491a2fc14c8324c498286c54282c1f0e933cb930da8419b30679389499b919122952a4f8592362ef4615 + languageName: node + linkType: hard + +"dom-serializer@npm:^2.0.0": + version: 2.0.0 + resolution: "dom-serializer@npm:2.0.0" + dependencies: + domelementtype: ^2.3.0 + domhandler: ^5.0.2 + entities: ^4.2.0 + checksum: cd1810544fd8cdfbd51fa2c0c1128ec3a13ba92f14e61b7650b5de421b88205fd2e3f0cc6ace82f13334114addb90ed1c2f23074a51770a8e9c1273acbc7f3e6 + languageName: node + linkType: hard + +"domelementtype@npm:^2.3.0": + version: 2.3.0 + resolution: "domelementtype@npm:2.3.0" + checksum: ee837a318ff702622f383409d1f5b25dd1024b692ef64d3096ff702e26339f8e345820f29a68bcdcea8cfee3531776b3382651232fbeae95612d6f0a75efb4f6 + languageName: node + linkType: hard + +"domhandler@npm:^5.0.2, domhandler@npm:^5.0.3": + version: 5.0.3 + resolution: "domhandler@npm:5.0.3" + dependencies: + domelementtype: ^2.3.0 + checksum: 0f58f4a6af63e6f3a4320aa446d28b5790a009018707bce2859dcb1d21144c7876482b5188395a188dfa974238c019e0a1e610d2fc269a12b2c192ea2b0b131c + languageName: node + linkType: hard + +"domutils@npm:^3.0.1": + version: 3.2.2 + resolution: "domutils@npm:3.2.2" + dependencies: + dom-serializer: ^2.0.0 + domelementtype: ^2.3.0 + domhandler: ^5.0.3 + checksum: ae941d56f03d857077d55dde9297e960a625229fc2b933187cc4123084d7c2d2517f58283a7336567127029f1e008449bac8ac8506d44341e29e3bb18e02f906 + languageName: node + linkType: hard + +"dot-case@npm:^3.0.4": + version: 3.0.4 + resolution: "dot-case@npm:3.0.4" + dependencies: + no-case: ^3.0.4 + tslib: ^2.0.3 + checksum: a65e3519414856df0228b9f645332f974f2bf5433370f544a681122eab59e66038fc3349b4be1cdc47152779dac71a5864f1ccda2f745e767c46e9c6543b1169 + languageName: node + linkType: hard + +"dotenv-expand@npm:~11.0.6": + version: 11.0.7 + resolution: "dotenv-expand@npm:11.0.7" + dependencies: + dotenv: ^16.4.5 + checksum: 58455ad9ffedbf6180b49f8f35596da54f10b02efcaabcba5400363f432e1da057113eee39b42365535da41df1e794d54a4aa67b22b37c41686c3dce4e6a28c5 + languageName: node + linkType: hard + +"dotenv@npm:^16.4.5, dotenv@npm:~16.4.5": + version: 16.4.7 + resolution: "dotenv@npm:16.4.7" + checksum: c27419b5875a44addcc56cc69b7dc5b0e6587826ca85d5b355da9303c6fc317fc9989f1f18366a16378c9fdd9532d14117a1abe6029cc719cdbbef6eaef2cea4 + languageName: node + linkType: hard + +"dunder-proto@npm:^1.0.1": + version: 1.0.1 + resolution: "dunder-proto@npm:1.0.1" + dependencies: + call-bind-apply-helpers: ^1.0.1 + es-errors: ^1.3.0 + gopd: ^1.2.0 + checksum: 149207e36f07bd4941921b0ca929e3a28f1da7bd6b6ff8ff7f4e2f2e460675af4576eeba359c635723dc189b64cdd4787e0255897d5b135ccc5d15cb8685fc90 + languageName: node + linkType: hard + +"eastasianwidth@npm:^0.2.0": + version: 0.2.0 + resolution: "eastasianwidth@npm:0.2.0" + checksum: 7d00d7cd8e49b9afa762a813faac332dee781932d6f2c848dc348939c4253f1d4564341b7af1d041853bc3f32c2ef141b58e0a4d9862c17a7f08f68df1e0f1ed + languageName: node + linkType: hard + +"ee-first@npm:1.1.1": + version: 1.1.1 + resolution: "ee-first@npm:1.1.1" + checksum: 1b4cac778d64ce3b582a7e26b218afe07e207a0f9bfe13cc7395a6d307849cfe361e65033c3251e00c27dd060cab43014c2d6b2647676135e18b77d2d05b3f4f + languageName: node + linkType: hard + +"electron-to-chromium@npm:^1.5.73": + version: 1.5.112 + resolution: "electron-to-chromium@npm:1.5.112" + checksum: 626e9e0d919d2e23cb37b20ea9ff916be1b2ef96a4955bdfc18f8203a2c98e66fd9cc62a9d1969291538f4c962201add11cc124ca2cab6cde99360ed7802ef58 + languageName: node + linkType: hard + +"emoji-regex@npm:^8.0.0": + version: 8.0.0 + resolution: "emoji-regex@npm:8.0.0" + checksum: d4c5c39d5a9868b5fa152f00cada8a936868fd3367f33f71be515ecee4c803132d11b31a6222b2571b1e5f7e13890156a94880345594d0ce7e3c9895f560f192 + languageName: node + linkType: hard + +"emoji-regex@npm:^9.2.2": + version: 9.2.2 + resolution: "emoji-regex@npm:9.2.2" + checksum: 8487182da74aabd810ac6d6f1994111dfc0e331b01271ae01ec1eb0ad7b5ecc2bbbbd2f053c05cb55a1ac30449527d819bbfbf0e3de1023db308cbcb47f86601 + languageName: node + linkType: hard + +"encodeurl@npm:~1.0.2": + version: 1.0.2 + resolution: "encodeurl@npm:1.0.2" + checksum: e50e3d508cdd9c4565ba72d2012e65038e5d71bdc9198cb125beb6237b5b1ade6c0d343998da9e170fb2eae52c1bed37d4d6d98a46ea423a0cddbed5ac3f780c + languageName: node + linkType: hard + +"encodeurl@npm:~2.0.0": + version: 2.0.0 + resolution: "encodeurl@npm:2.0.0" + checksum: abf5cd51b78082cf8af7be6785813c33b6df2068ce5191a40ca8b1afe6a86f9230af9a9ce694a5ce4665955e5c1120871826df9c128a642e09c58d592e2807fe + languageName: node + linkType: hard + +"encoding@npm:^0.1.13": + version: 0.1.13 + resolution: "encoding@npm:0.1.13" + dependencies: + iconv-lite: ^0.6.2 + checksum: bb98632f8ffa823996e508ce6a58ffcf5856330fde839ae42c9e1f436cc3b5cc651d4aeae72222916545428e54fd0f6aa8862fd8d25bdbcc4589f1e3f3715e7f + languageName: node + linkType: hard + +"end-of-stream@npm:^1.1.0": + version: 1.4.4 + resolution: "end-of-stream@npm:1.4.4" + dependencies: + once: ^1.4.0 + checksum: 530a5a5a1e517e962854a31693dbb5c0b2fc40b46dad2a56a2deec656ca040631124f4795823acc68238147805f8b021abbe221f4afed5ef3c8e8efc2024908b + languageName: node + linkType: hard + +"entities@npm:^4.2.0, entities@npm:^4.4.0": + version: 4.5.0 + resolution: "entities@npm:4.5.0" + checksum: 853f8ebd5b425d350bffa97dd6958143179a5938352ccae092c62d1267c4e392a039be1bae7d51b6e4ffad25f51f9617531fedf5237f15df302ccfb452cbf2d7 + languageName: node + linkType: hard + +"env-editor@npm:^0.4.1": + version: 0.4.2 + resolution: "env-editor@npm:0.4.2" + checksum: d162e161d9a1bddaf63f68428c587b1d823afe7d56cde039ce403cc68706c68350c92b9db44692f4ecea1d67ec80de9ba01ca70568299ed929d3fa056c40aebf + languageName: node + linkType: hard + +"env-paths@npm:^2.2.0": + version: 2.2.1 + resolution: "env-paths@npm:2.2.1" + checksum: 65b5df55a8bab92229ab2b40dad3b387fad24613263d103a97f91c9fe43ceb21965cd3392b1ccb5d77088021e525c4e0481adb309625d0cb94ade1d1fb8dc17e + languageName: node + linkType: hard + +"eol@npm:^0.9.1": + version: 0.9.1 + resolution: "eol@npm:0.9.1" + checksum: ba9fa998bc8148b935dcf85585eacf049eeaf18d2ab6196710d4d1f59e7dfd0e87b18508dc67144ff8ba12f835a4a4989aeea64c98b13cca77b74b9d4b33bce5 + languageName: node + linkType: hard + +"err-code@npm:^2.0.2": + version: 2.0.3 + resolution: "err-code@npm:2.0.3" + checksum: 8b7b1be20d2de12d2255c0bc2ca638b7af5171142693299416e6a9339bd7d88fc8d7707d913d78e0993176005405a236b066b45666b27b797252c771156ace54 + languageName: node + linkType: hard + +"error-ex@npm:^1.3.1": + version: 1.3.2 + resolution: "error-ex@npm:1.3.2" + dependencies: + is-arrayish: ^0.2.1 + checksum: c1c2b8b65f9c91b0f9d75f0debaa7ec5b35c266c2cac5de412c1a6de86d4cbae04ae44e510378cb14d032d0645a36925d0186f8bb7367bcc629db256b743a001 + languageName: node + linkType: hard + +"error-stack-parser@npm:^2.0.6": + version: 2.1.4 + resolution: "error-stack-parser@npm:2.1.4" + dependencies: + stackframe: ^1.3.4 + checksum: 3b916d2d14c6682f287c8bfa28e14672f47eafe832701080e420e7cdbaebb2c50293868256a95706ac2330fe078cf5664713158b49bc30d7a5f2ac229ded0e18 + languageName: node + linkType: hard + +"es-define-property@npm:^1.0.1": + version: 1.0.1 + resolution: "es-define-property@npm:1.0.1" + checksum: 0512f4e5d564021c9e3a644437b0155af2679d10d80f21adaf868e64d30efdfbd321631956f20f42d655fedb2e3a027da479fad3fa6048f768eb453a80a5f80a + languageName: node + linkType: hard + +"es-errors@npm:^1.3.0": + version: 1.3.0 + resolution: "es-errors@npm:1.3.0" + checksum: ec1414527a0ccacd7f15f4a3bc66e215f04f595ba23ca75cdae0927af099b5ec865f9f4d33e9d7e86f512f252876ac77d4281a7871531a50678132429b1271b5 + languageName: node + linkType: hard + +"es-object-atoms@npm:^1.0.0, es-object-atoms@npm:^1.1.1": + version: 1.1.1 + resolution: "es-object-atoms@npm:1.1.1" + dependencies: + es-errors: ^1.3.0 + checksum: 214d3767287b12f36d3d7267ef342bbbe1e89f899cfd67040309fc65032372a8e60201410a99a1645f2f90c1912c8c49c8668066f6bdd954bcd614dda2e3da97 + languageName: node + linkType: hard + +"es-set-tostringtag@npm:^2.1.0": + version: 2.1.0 + resolution: "es-set-tostringtag@npm:2.1.0" + dependencies: + es-errors: ^1.3.0 + get-intrinsic: ^1.2.6 + has-tostringtag: ^1.0.2 + hasown: ^2.0.2 + checksum: 789f35de4be3dc8d11fdcb91bc26af4ae3e6d602caa93299a8c45cf05d36cc5081454ae2a6d3afa09cceca214b76c046e4f8151e092e6fc7feeb5efb9e794fc6 + languageName: node + linkType: hard + +"escalade@npm:^3.1.1, escalade@npm:^3.2.0": + version: 3.2.0 + resolution: "escalade@npm:3.2.0" + checksum: 47b029c83de01b0d17ad99ed766347b974b0d628e848de404018f3abee728e987da0d2d370ad4574aa3d5b5bfc368754fd085d69a30f8e75903486ec4b5b709e + languageName: node + linkType: hard + +"escape-html@npm:~1.0.3": + version: 1.0.3 + resolution: "escape-html@npm:1.0.3" + checksum: 6213ca9ae00d0ab8bccb6d8d4e0a98e76237b2410302cf7df70aaa6591d509a2a37ce8998008cbecae8fc8ffaadf3fb0229535e6a145f3ce0b211d060decbb24 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^1.0.5": + version: 1.0.5 + resolution: "escape-string-regexp@npm:1.0.5" + checksum: 6092fda75c63b110c706b6a9bfde8a612ad595b628f0bd2147eea1d3406723020810e591effc7db1da91d80a71a737a313567c5abb3813e8d9c71f4aa595b410 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^2.0.0": + version: 2.0.0 + resolution: "escape-string-regexp@npm:2.0.0" + checksum: 9f8a2d5743677c16e85c810e3024d54f0c8dea6424fad3c79ef6666e81dd0846f7437f5e729dfcdac8981bc9e5294c39b4580814d114076b8d36318f46ae4395 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^4.0.0": + version: 4.0.0 + resolution: "escape-string-regexp@npm:4.0.0" + checksum: 98b48897d93060f2322108bf29db0feba7dd774be96cd069458d1453347b25ce8682ecc39859d4bca2203cc0ab19c237bcc71755eff49a0f8d90beadeeba5cc5 + languageName: node + linkType: hard + +"esprima@npm:^4.0.0, esprima@npm:~4.0.0": + version: 4.0.1 + resolution: "esprima@npm:4.0.1" + bin: + esparse: ./bin/esparse.js + esvalidate: ./bin/esvalidate.js + checksum: b45bc805a613dbea2835278c306b91aff6173c8d034223fa81498c77dcbce3b2931bf6006db816f62eacd9fd4ea975dfd85a5b7f3c6402cfd050d4ca3c13a628 + languageName: node + linkType: hard + +"etag@npm:~1.8.1": + version: 1.8.1 + resolution: "etag@npm:1.8.1" + checksum: 571aeb3dbe0f2bbd4e4fadbdb44f325fc75335cd5f6f6b6a091e6a06a9f25ed5392f0863c5442acb0646787446e816f13cbfc6edce5b07658541dff573cab1ff + languageName: node + linkType: hard + +"event-target-shim@npm:^5.0.0, event-target-shim@npm:^5.0.1": + version: 5.0.1 + resolution: "event-target-shim@npm:5.0.1" + checksum: 1ffe3bb22a6d51bdeb6bf6f7cf97d2ff4a74b017ad12284cc9e6a279e727dc30a5de6bb613e5596ff4dc3e517841339ad09a7eec44266eccb1aa201a30448166 + languageName: node + linkType: hard + +"exec-async@npm:^2.2.0": + version: 2.2.0 + resolution: "exec-async@npm:2.2.0" + checksum: 5877d83c2d553994accb39c26f40f0a633bca10d9572696e524fd91b385060ba05d1edcc28d6e3899c451e65ed453fdc7e6b69bd5d5a27d914220a100f81bb3a + languageName: node + linkType: hard + +"execa@npm:^1.0.0": + version: 1.0.0 + resolution: "execa@npm:1.0.0" + dependencies: + cross-spawn: ^6.0.0 + get-stream: ^4.0.0 + is-stream: ^1.1.0 + npm-run-path: ^2.0.0 + p-finally: ^1.0.0 + signal-exit: ^3.0.0 + strip-eof: ^1.0.0 + checksum: ddf1342c1c7d02dd93b41364cd847640f6163350d9439071abf70bf4ceb1b9b2b2e37f54babb1d8dc1df8e0d8def32d0e81e74a2e62c3e1d70c303eb4c306bc4 + languageName: node + linkType: hard + +"execa@npm:^5.1.1": + version: 5.1.1 + resolution: "execa@npm:5.1.1" + dependencies: + cross-spawn: ^7.0.3 + get-stream: ^6.0.0 + human-signals: ^2.1.0 + is-stream: ^2.0.0 + merge-stream: ^2.0.0 + npm-run-path: ^4.0.1 + onetime: ^5.1.2 + signal-exit: ^3.0.3 + strip-final-newline: ^2.0.0 + checksum: fba9022c8c8c15ed862847e94c252b3d946036d7547af310e344a527e59021fd8b6bb0723883ea87044dc4f0201f949046993124a42ccb0855cae5bf8c786343 + languageName: node + linkType: hard + +"expo-asset@npm:^11.0.3, expo-asset@npm:~11.0.4": + version: 11.0.4 + resolution: "expo-asset@npm:11.0.4" + dependencies: + "@expo/image-utils": ^0.6.5 + expo-constants: ~17.0.7 + invariant: ^2.2.4 + md5-file: ^3.2.3 + peerDependencies: + expo: "*" + react: "*" + react-native: "*" + checksum: 21cf9b34e4e51c5af2e424de2445c9d4d5d5e010692f712300f8a7f3c8b89ff39ad92dfb0f177557592a1d49c5480eba0257ff5770f25b4568831cf955853db5 + languageName: node + linkType: hard + +"expo-constants@npm:~17.0.7": + version: 17.0.7 + resolution: "expo-constants@npm:17.0.7" + dependencies: + "@expo/config": ~10.0.10 + "@expo/env": ~0.4.2 + peerDependencies: + expo: "*" + react-native: "*" + checksum: 6b7d8536f7dd2a9531ccc1ee946a8cade67fa3a74e44d0bfb70f8098694e0e49a0d981d33760668d4d5475bf6bbf685024f9b2b9c19c9be47f17781aac53b28d + languageName: node + linkType: hard + +"expo-file-system@npm:^18.0.10, expo-file-system@npm:~18.0.11": + version: 18.0.11 + resolution: "expo-file-system@npm:18.0.11" + dependencies: + web-streams-polyfill: ^3.3.2 + peerDependencies: + expo: "*" + react-native: "*" + checksum: 2cbb30eee9b12a3eff867a425900f6bef47d4417c39744c24ab1d47ef7398c9cb952716db8dd59a4ddc474a9dab4bcfa903412c10a56144d64cb00a9afcc8c56 + languageName: node + linkType: hard + +"expo-font@npm:^13.0.1, expo-font@npm:~13.0.4": + version: 13.0.4 + resolution: "expo-font@npm:13.0.4" + dependencies: + fontfaceobserver: ^2.1.0 + peerDependencies: + expo: "*" + react: "*" + checksum: 36fa98d333c97a9a309f0ffa45827616167162caaaca6873f04d6e3d658c669da9e894fadd582b9bcc569f3b5b2043553ca204e4333d7496ad2e5843f0373b09 + languageName: node + linkType: hard + +"expo-keep-awake@npm:~14.0.3": + version: 14.0.3 + resolution: "expo-keep-awake@npm:14.0.3" + peerDependencies: + expo: "*" + react: "*" + checksum: 1f8c4c4fbc6030b4ea55fd51b6bb74ba926c71ab3c5350445b065d1433188553b67c64114230240055788df918c96d2d925d9987dcd9fc4045e45362adcbb110 + languageName: node + linkType: hard + +"expo-modules-autolinking@npm:2.0.8": + version: 2.0.8 + resolution: "expo-modules-autolinking@npm:2.0.8" + dependencies: + "@expo/spawn-async": ^1.7.2 + chalk: ^4.1.0 + commander: ^7.2.0 + fast-glob: ^3.2.5 + find-up: ^5.0.0 + fs-extra: ^9.1.0 + require-from-string: ^2.0.2 + resolve-from: ^5.0.0 + bin: + expo-modules-autolinking: bin/expo-modules-autolinking.js + checksum: 1e706d40163e0d3c239641c6d4a846c8006c0367007006cff1eb26a571e605d5fa5ce49c995b9118516d82c819be0e2e2849c2ae63df9b2921bf23bc9a4c2939 + languageName: node + linkType: hard + +"expo-modules-core@npm:2.2.2": + version: 2.2.2 + resolution: "expo-modules-core@npm:2.2.2" + dependencies: + invariant: ^2.2.4 + checksum: f6934b0519598a5c3f3b31a81d48e290823d714e371a2b8631d9ebcb6226a6e4b67968a1b4de6cdcfb6848f4abcb3eeaa1898ff10ebd79f5c21cd455b239cb22 + languageName: node + linkType: hard + +"expo-status-bar@npm:~2.0.0": + version: 2.0.1 + resolution: "expo-status-bar@npm:2.0.1" + peerDependencies: + react: "*" + react-native: "*" + checksum: 7e9c38c0e2a7a593958756572369fe515dc7bc7eb774eecbd2c008f994c420fa7196796c3ba32117bd801677b84b3335918c18e7e276981d49f1b7b8ebbbde95 + languageName: node + linkType: hard + +"expo@npm:^52.0.37, expo@npm:~52.0.17": + version: 52.0.37 + resolution: "expo@npm:52.0.37" + dependencies: + "@babel/runtime": ^7.20.0 + "@expo/cli": 0.22.18 + "@expo/config": ~10.0.10 + "@expo/config-plugins": ~9.0.15 + "@expo/fingerprint": 0.11.11 + "@expo/metro-config": 0.19.11 + "@expo/vector-icons": ^14.0.0 + babel-preset-expo: ~12.0.9 + expo-asset: ~11.0.4 + expo-constants: ~17.0.7 + expo-file-system: ~18.0.11 + expo-font: ~13.0.4 + expo-keep-awake: ~14.0.3 + expo-modules-autolinking: 2.0.8 + expo-modules-core: 2.2.2 + fbemitter: ^3.0.0 + web-streams-polyfill: ^3.3.2 + whatwg-url-without-unicode: 8.0.0-3 + peerDependencies: + "@expo/dom-webview": "*" + "@expo/metro-runtime": "*" + react: "*" + react-native: "*" + react-native-webview: "*" + peerDependenciesMeta: + "@expo/dom-webview": + optional: true + "@expo/metro-runtime": + optional: true + react-native-webview: + optional: true + bin: + expo: bin/cli + checksum: b1a93a1a642b735469077e87cac062626e49f7fdd326942e1514b56b95fcba29f442f04ad75f2cf781915254bdfd1facbf6367bd584a2636a4cbcc19980c3f28 + languageName: node + linkType: hard + +"exponential-backoff@npm:^3.1.1": + version: 3.1.2 + resolution: "exponential-backoff@npm:3.1.2" + checksum: 7e191e3dd6edd8c56c88f2c8037c98fbb8034fe48778be53ed8cb30ccef371a061a4e999a469aab939b92f8f12698f3b426d52f4f76b7a20da5f9f98c3cbc862 + languageName: node + linkType: hard + +"fast-glob@npm:^3.2.5, fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2": + version: 3.3.3 + resolution: "fast-glob@npm:3.3.3" + dependencies: + "@nodelib/fs.stat": ^2.0.2 + "@nodelib/fs.walk": ^1.2.3 + glob-parent: ^5.1.2 + merge2: ^1.3.0 + micromatch: ^4.0.8 + checksum: 0704d7b85c0305fd2cef37777337dfa26230fdd072dce9fb5c82a4b03156f3ffb8ed3e636033e65d45d2a5805a4e475825369a27404c0307f2db0c8eb3366fbd + languageName: node + linkType: hard + +"fast-json-stable-stringify@npm:^2.1.0": + version: 2.1.0 + resolution: "fast-json-stable-stringify@npm:2.1.0" + checksum: b191531e36c607977e5b1c47811158733c34ccb3bfde92c44798929e9b4154884378536d26ad90dfecd32e1ffc09c545d23535ad91b3161a27ddbb8ebe0cbecb + languageName: node + linkType: hard + +"fastq@npm:^1.6.0": + version: 1.19.1 + resolution: "fastq@npm:1.19.1" + dependencies: + reusify: ^1.0.4 + checksum: 7691d1794fb84ad0ec2a185f10e00f0e1713b894e2c9c4d42f0bc0ba5f8c00e6e655a202074ca0b91b9c3d977aab7c30c41a8dc069fb5368576ac0054870a0e6 + languageName: node + linkType: hard + +"fb-watchman@npm:^2.0.0": + version: 2.0.2 + resolution: "fb-watchman@npm:2.0.2" + dependencies: + bser: 2.1.1 + checksum: b15a124cef28916fe07b400eb87cbc73ca082c142abf7ca8e8de6af43eca79ca7bd13eb4d4d48240b3bd3136eaac40d16e42d6edf87a8e5d1dd8070626860c78 + languageName: node + linkType: hard + +"fbemitter@npm:^3.0.0": + version: 3.0.0 + resolution: "fbemitter@npm:3.0.0" + dependencies: + fbjs: ^3.0.0 + checksum: 069690b8cdff3521ade3c9beb92ba0a38d818a86ef36dff8690e66749aef58809db4ac0d6938eb1cacea2dbef5f2a508952d455669590264cdc146bbe839f605 + languageName: node + linkType: hard + +"fbjs-css-vars@npm:^1.0.0": + version: 1.0.2 + resolution: "fbjs-css-vars@npm:1.0.2" + checksum: 72baf6d22c45b75109118b4daecb6c8016d4c83c8c0f23f683f22e9d7c21f32fff6201d288df46eb561e3c7d4bb4489b8ad140b7f56444c453ba407e8bd28511 + languageName: node + linkType: hard + +"fbjs@npm:^3.0.0": + version: 3.0.5 + resolution: "fbjs@npm:3.0.5" + dependencies: + cross-fetch: ^3.1.5 + fbjs-css-vars: ^1.0.0 + loose-envify: ^1.0.0 + object-assign: ^4.1.0 + promise: ^7.1.1 + setimmediate: ^1.0.5 + ua-parser-js: ^1.0.35 + checksum: e609b5b64686bc96495a5c67728ed9b2710b9b3d695c5759c5f5e47c9483d1c323543ac777a86459e3694efc5712c6ce7212e944feb19752867d699568bb0e54 + languageName: node + linkType: hard + +"fetch-retry@npm:^4.1.1": + version: 4.1.1 + resolution: "fetch-retry@npm:4.1.1" + checksum: a06b6a0201efeb5082794713bcdc8dd2c8f1fd4ad5660de860b9c4e51738aa369be58ba7cfa67aa7aa4a3bf9d9b5a4cd2d2fdea88868856483fb81bacd70455b + languageName: node + linkType: hard + +"fill-range@npm:^7.1.1": + version: 7.1.1 + resolution: "fill-range@npm:7.1.1" + dependencies: + to-regex-range: ^5.0.1 + checksum: b4abfbca3839a3d55e4ae5ec62e131e2e356bf4859ce8480c64c4876100f4df292a63e5bb1618e1d7460282ca2b305653064f01654474aa35c68000980f17798 + languageName: node + linkType: hard + +"finalhandler@npm:1.1.2": + version: 1.1.2 + resolution: "finalhandler@npm:1.1.2" + dependencies: + debug: 2.6.9 + encodeurl: ~1.0.2 + escape-html: ~1.0.3 + on-finished: ~2.3.0 + parseurl: ~1.3.3 + statuses: ~1.5.0 + unpipe: ~1.0.0 + checksum: 617880460c5138dd7ccfd555cb5dde4d8f170f4b31b8bd51e4b646bb2946c30f7db716428a1f2882d730d2b72afb47d1f67cc487b874cb15426f95753a88965e + languageName: node + linkType: hard + +"find-cache-dir@npm:^2.0.0": + version: 2.1.0 + resolution: "find-cache-dir@npm:2.1.0" + dependencies: + commondir: ^1.0.1 + make-dir: ^2.0.0 + pkg-dir: ^3.0.0 + checksum: 60ad475a6da9f257df4e81900f78986ab367d4f65d33cf802c5b91e969c28a8762f098693d7a571b6e4dd4c15166c2da32ae2d18b6766a18e2071079448fdce4 + languageName: node + linkType: hard + +"find-up@npm:^3.0.0": + version: 3.0.0 + resolution: "find-up@npm:3.0.0" + dependencies: + locate-path: ^3.0.0 + checksum: 38eba3fe7a66e4bc7f0f5a1366dc25508b7cfc349f852640e3678d26ad9a6d7e2c43eff0a472287de4a9753ef58f066a0ea892a256fa3636ad51b3fe1e17fae9 + languageName: node + linkType: hard + +"find-up@npm:^4.1.0": + version: 4.1.0 + resolution: "find-up@npm:4.1.0" + dependencies: + locate-path: ^5.0.0 + path-exists: ^4.0.0 + checksum: 4c172680e8f8c1f78839486e14a43ef82e9decd0e74145f40707cc42e7420506d5ec92d9a11c22bd2c48fb0c384ea05dd30e10dd152fefeec6f2f75282a8b844 + languageName: node + linkType: hard + +"find-up@npm:^5.0.0": + version: 5.0.0 + resolution: "find-up@npm:5.0.0" + dependencies: + locate-path: ^6.0.0 + path-exists: ^4.0.0 + checksum: 07955e357348f34660bde7920783204ff5a26ac2cafcaa28bace494027158a97b9f56faaf2d89a6106211a8174db650dd9f503f9c0d526b1202d5554a00b9095 + languageName: node + linkType: hard + +"flow-enums-runtime@npm:^0.0.6": + version: 0.0.6 + resolution: "flow-enums-runtime@npm:0.0.6" + checksum: c60412ed6d43b26bf5dfa66be8e588c3ccdb20191fd269e02ca7e8e1d350c73a327cc9a7edb626c80c31eb906981945d12a87ca37118985f33406303806dab79 + languageName: node + linkType: hard + +"flow-parser@npm:0.*": + version: 0.263.0 + resolution: "flow-parser@npm:0.263.0" + checksum: ef69211b079280742708bbfd8602bc69f2907e7af0927518e2f65d398d518b6122366073a51af3a291f639765ca4302f4f46e20fb469638b7c45a343f018808e + languageName: node + linkType: hard + +"fontfaceobserver@npm:^2.1.0": + version: 2.3.0 + resolution: "fontfaceobserver@npm:2.3.0" + checksum: 5f14715974203b9d68f299f93a7623afd9d5701572d683e861cdbb7514573ac556f56e9b5d07d2d534e01aed19a3b0bbe568e735e0e5494cbea913fc3f12b856 + languageName: node + linkType: hard + +"foreground-child@npm:^3.1.0": + version: 3.3.1 + resolution: "foreground-child@npm:3.3.1" + dependencies: + cross-spawn: ^7.0.6 + signal-exit: ^4.0.1 + checksum: b2c1a6fc0bf0233d645d9fefdfa999abf37db1b33e5dab172b3cbfb0662b88bfbd2c9e7ab853533d199050ec6b65c03fcf078fc212d26e4990220e98c6930eef + languageName: node + linkType: hard + +"form-data@npm:^3.0.1": + version: 3.0.3 + resolution: "form-data@npm:3.0.3" + dependencies: + asynckit: ^0.4.0 + combined-stream: ^1.0.8 + es-set-tostringtag: ^2.1.0 + mime-types: ^2.1.35 + checksum: e79641abb58b3d7230816ed00645c2732cb64aa44172221644619238106556584aafd908bcc0d728fb06ef6a0d88261e72f4e01111bae3da6d2d7a429e4e1fd2 + languageName: node + linkType: hard + +"freeport-async@npm:^2.0.0": + version: 2.0.0 + resolution: "freeport-async@npm:2.0.0" + checksum: 03156ab2179fbbf5b7ff3aafc56f3e01c9d7df5cc366fbf3c29f26007773632e33ed90847fa4a979c5412ad55de8b21a7292601c531acaf8957933d96225c76d + languageName: node + linkType: hard + +"fresh@npm:0.5.2": + version: 0.5.2 + resolution: "fresh@npm:0.5.2" + checksum: 13ea8b08f91e669a64e3ba3a20eb79d7ca5379a81f1ff7f4310d54e2320645503cc0c78daedc93dfb6191287295f6479544a649c64d8e41a1c0fb0c221552346 + languageName: node + linkType: hard + +"fs-extra@npm:9.0.0": + version: 9.0.0 + resolution: "fs-extra@npm:9.0.0" + dependencies: + at-least-node: ^1.0.0 + graceful-fs: ^4.2.0 + jsonfile: ^6.0.1 + universalify: ^1.0.0 + checksum: c4269fbfd8d8d2a1edca4257fa28545caf7e5ad218d264f723c338a154d3624d2ef098c19915b9436d3186b7ac45d5b032371a2004008ec0cd4072512e853aa8 + languageName: node + linkType: hard + +"fs-extra@npm:^9.0.0, fs-extra@npm:^9.1.0": + version: 9.1.0 + resolution: "fs-extra@npm:9.1.0" + dependencies: + at-least-node: ^1.0.0 + graceful-fs: ^4.2.0 + jsonfile: ^6.0.1 + universalify: ^2.0.0 + checksum: ba71ba32e0faa74ab931b7a0031d1523c66a73e225de7426e275e238e312d07313d2da2d33e34a52aa406c8763ade5712eb3ec9ba4d9edce652bcacdc29e6b20 + languageName: node + linkType: hard + +"fs-extra@npm:~8.1.0": + version: 8.1.0 + resolution: "fs-extra@npm:8.1.0" + dependencies: + graceful-fs: ^4.2.0 + jsonfile: ^4.0.0 + universalify: ^0.1.0 + checksum: bf44f0e6cea59d5ce071bba4c43ca76d216f89e402dc6285c128abc0902e9b8525135aa808adad72c9d5d218e9f4bcc63962815529ff2f684ad532172a284880 + languageName: node + linkType: hard + +"fs-minipass@npm:^2.0.0": + version: 2.1.0 + resolution: "fs-minipass@npm:2.1.0" + dependencies: + minipass: ^3.0.0 + checksum: 1b8d128dae2ac6cc94230cc5ead341ba3e0efaef82dab46a33d171c044caaa6ca001364178d42069b2809c35a1c3c35079a32107c770e9ffab3901b59af8c8b1 + languageName: node + linkType: hard + +"fs-minipass@npm:^3.0.0": + version: 3.0.3 + resolution: "fs-minipass@npm:3.0.3" + dependencies: + minipass: ^7.0.3 + checksum: 8722a41109130851d979222d3ec88aabaceeaaf8f57b2a8f744ef8bd2d1ce95453b04a61daa0078822bc5cd21e008814f06fe6586f56fef511e71b8d2394d802 + languageName: node + linkType: hard + +"fs.realpath@npm:^1.0.0": + version: 1.0.0 + resolution: "fs.realpath@npm:1.0.0" + checksum: 99ddea01a7e75aa276c250a04eedeffe5662bce66c65c07164ad6264f9de18fb21be9433ead460e54cff20e31721c811f4fb5d70591799df5f85dce6d6746fd0 + languageName: node + linkType: hard + +"fsevents@npm:^2.3.2": + version: 2.3.3 + resolution: "fsevents@npm:2.3.3" + dependencies: + node-gyp: latest + checksum: 11e6ea6fea15e42461fc55b4b0e4a0a3c654faa567f1877dbd353f39156f69def97a69936d1746619d656c4b93de2238bf731f6085a03a50cabf287c9d024317 + conditions: os=darwin + languageName: node + linkType: hard + +"fsevents@patch:fsevents@^2.3.2#~builtin": + version: 2.3.3 + resolution: "fsevents@patch:fsevents@npm%3A2.3.3#~builtin::version=2.3.3&hash=df0bf1" + dependencies: + node-gyp: latest + conditions: os=darwin + languageName: node + linkType: hard + +"function-bind@npm:^1.1.2": + version: 1.1.2 + resolution: "function-bind@npm:1.1.2" + checksum: 2b0ff4ce708d99715ad14a6d1f894e2a83242e4a52ccfcefaee5e40050562e5f6dafc1adbb4ce2d4ab47279a45dc736ab91ea5042d843c3c092820dfe032efb1 + languageName: node + linkType: hard + +"gensync@npm:^1.0.0-beta.2": + version: 1.0.0-beta.2 + resolution: "gensync@npm:1.0.0-beta.2" + checksum: a7437e58c6be12aa6c90f7730eac7fa9833dc78872b4ad2963d2031b00a3367a93f98aec75f9aaac7220848e4026d67a8655e870b24f20a543d103c0d65952ec + languageName: node + linkType: hard + +"get-caller-file@npm:^2.0.5": + version: 2.0.5 + resolution: "get-caller-file@npm:2.0.5" + checksum: b9769a836d2a98c3ee734a88ba712e62703f1df31b94b784762c433c27a386dd6029ff55c2a920c392e33657d80191edbf18c61487e198844844516f843496b9 + languageName: node + linkType: hard + +"get-intrinsic@npm:^1.2.6": + version: 1.3.0 + resolution: "get-intrinsic@npm:1.3.0" + dependencies: + call-bind-apply-helpers: ^1.0.2 + es-define-property: ^1.0.1 + es-errors: ^1.3.0 + es-object-atoms: ^1.1.1 + function-bind: ^1.1.2 + get-proto: ^1.0.1 + gopd: ^1.2.0 + has-symbols: ^1.1.0 + hasown: ^2.0.2 + math-intrinsics: ^1.1.0 + checksum: 301008e4482bb9a9cb49e132b88fee093bff373b4e6def8ba219b1e96b60158a6084f273ef5cafe832e42cd93462f4accb46a618d35fe59a2b507f2388c5b79d + languageName: node + linkType: hard + +"get-package-type@npm:^0.1.0": + version: 0.1.0 + resolution: "get-package-type@npm:0.1.0" + checksum: bba0811116d11e56d702682ddef7c73ba3481f114590e705fc549f4d868972263896af313c57a25c076e3c0d567e11d919a64ba1b30c879be985fc9d44f96148 + languageName: node + linkType: hard + +"get-port@npm:^3.2.0": + version: 3.2.0 + resolution: "get-port@npm:3.2.0" + checksum: 31f530326569683ac4b7452eb7573c40e9dbe52aec14d80745c35475261e6389160da153d5b8ae911150b4ce99003472b30c69ba5be0cedeaa7865b95542d168 + languageName: node + linkType: hard + +"get-proto@npm:^1.0.1": + version: 1.0.1 + resolution: "get-proto@npm:1.0.1" + dependencies: + dunder-proto: ^1.0.1 + es-object-atoms: ^1.0.0 + checksum: 4fc96afdb58ced9a67558698b91433e6b037aaa6f1493af77498d7c85b141382cf223c0e5946f334fb328ee85dfe6edd06d218eaf09556f4bc4ec6005d7f5f7b + languageName: node + linkType: hard + +"get-stream@npm:^4.0.0": + version: 4.1.0 + resolution: "get-stream@npm:4.1.0" + dependencies: + pump: ^3.0.0 + checksum: 443e1914170c15bd52ff8ea6eff6dfc6d712b031303e36302d2778e3de2506af9ee964d6124010f7818736dcfde05c04ba7ca6cc26883106e084357a17ae7d73 + languageName: node + linkType: hard + +"get-stream@npm:^6.0.0": + version: 6.0.1 + resolution: "get-stream@npm:6.0.1" + checksum: e04ecece32c92eebf5b8c940f51468cd53554dcbb0ea725b2748be583c9523d00128137966afce410b9b051eb2ef16d657cd2b120ca8edafcf5a65e81af63cad + languageName: node + linkType: hard + +"getenv@npm:^1.0.0": + version: 1.0.0 + resolution: "getenv@npm:1.0.0" + checksum: 19ae5cad603a1cf1bcb8fa3bed48e00d062eb0572a4404c02334b67f3b3499f238383082b064bb42515e9e25c2b08aef1a3e3d2b6852347721aa8b174825bd56 + languageName: node + linkType: hard + +"glob-parent@npm:^5.1.2": + version: 5.1.2 + resolution: "glob-parent@npm:5.1.2" + dependencies: + is-glob: ^4.0.1 + checksum: f4f2bfe2425296e8a47e36864e4f42be38a996db40420fe434565e4480e3322f18eb37589617a98640c5dc8fdec1a387007ee18dbb1f3f5553409c34d17f425e + languageName: node + linkType: hard + +"glob@npm:^10.2.2, glob@npm:^10.3.10, glob@npm:^10.3.7, glob@npm:^10.4.2": + version: 10.4.5 + resolution: "glob@npm:10.4.5" + dependencies: + 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 + bin: + glob: dist/esm/bin.mjs + checksum: 0bc725de5e4862f9f387fd0f2b274baf16850dcd2714502ccf471ee401803997983e2c05590cb65f9675a3c6f2a58e7a53f9e365704108c6ad3cbf1d60934c4a + languageName: node + linkType: hard + +"glob@npm:^7.1.1, glob@npm:^7.1.3, glob@npm:^7.1.4": + version: 7.2.3 + resolution: "glob@npm:7.2.3" + dependencies: + fs.realpath: ^1.0.0 + inflight: ^1.0.4 + inherits: 2 + minimatch: ^3.1.1 + once: ^1.3.0 + path-is-absolute: ^1.0.0 + checksum: 29452e97b38fa704dabb1d1045350fb2467cf0277e155aa9ff7077e90ad81d1ea9d53d3ee63bd37c05b09a065e90f16aec4a65f5b8de401d1dac40bc5605d133 + languageName: node + linkType: hard + +"globals@npm:^11.1.0": + version: 11.12.0 + resolution: "globals@npm:11.12.0" + checksum: 67051a45eca3db904aee189dfc7cd53c20c7d881679c93f6146ddd4c9f4ab2268e68a919df740d39c71f4445d2b38ee360fc234428baea1dbdfe68bbcb46979e + languageName: node + linkType: hard + +"globby@npm:^11.0.1": + version: 11.1.0 + resolution: "globby@npm:11.1.0" + dependencies: + array-union: ^2.1.0 + dir-glob: ^3.0.1 + fast-glob: ^3.2.9 + ignore: ^5.2.0 + merge2: ^1.4.1 + slash: ^3.0.0 + checksum: b4be8885e0cfa018fc783792942d53926c35c50b3aefd3fdcfb9d22c627639dc26bd2327a40a0b74b074100ce95bb7187bfeae2f236856aa3de183af7a02aea6 + languageName: node + linkType: hard + +"gopd@npm:^1.2.0": + version: 1.2.0 + resolution: "gopd@npm:1.2.0" + checksum: cc6d8e655e360955bdccaca51a12a474268f95bb793fc3e1f2bdadb075f28bfd1fd988dab872daf77a61d78cbaf13744bc8727a17cfb1d150d76047d805375f3 + languageName: node + linkType: hard + +"graceful-fs@npm:^4.1.11, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6, graceful-fs@npm:^4.2.9": + version: 4.2.11 + resolution: "graceful-fs@npm:4.2.11" + checksum: ac85f94da92d8eb6b7f5a8b20ce65e43d66761c55ce85ac96df6865308390da45a8d3f0296dd3a663de65d30ba497bd46c696cc1e248c72b13d6d567138a4fc7 + languageName: node + linkType: hard + +"has-flag@npm:^3.0.0": + version: 3.0.0 + resolution: "has-flag@npm:3.0.0" + checksum: 4a15638b454bf086c8148979aae044dd6e39d63904cd452d970374fa6a87623423da485dfb814e7be882e05c096a7ccf1ebd48e7e7501d0208d8384ff4dea73b + languageName: node + linkType: hard + +"has-flag@npm:^4.0.0": + version: 4.0.0 + resolution: "has-flag@npm:4.0.0" + checksum: 261a1357037ead75e338156b1f9452c016a37dcd3283a972a30d9e4a87441ba372c8b81f818cd0fbcd9c0354b4ae7e18b9e1afa1971164aef6d18c2b6095a8ad + languageName: node + linkType: hard + +"has-symbols@npm:^1.0.3, has-symbols@npm:^1.1.0": + version: 1.1.0 + resolution: "has-symbols@npm:1.1.0" + checksum: b2316c7302a0e8ba3aaba215f834e96c22c86f192e7310bdf689dd0e6999510c89b00fbc5742571507cebf25764d68c988b3a0da217369a73596191ac0ce694b + languageName: node + linkType: hard + +"has-tostringtag@npm:^1.0.2": + version: 1.0.2 + resolution: "has-tostringtag@npm:1.0.2" + dependencies: + has-symbols: ^1.0.3 + checksum: 999d60bb753ad714356b2c6c87b7fb74f32463b8426e159397da4bde5bca7e598ab1073f4d8d4deafac297f2eb311484cd177af242776bf05f0d11565680468d + languageName: node + linkType: hard + +"hasown@npm:^2.0.2": + version: 2.0.2 + resolution: "hasown@npm:2.0.2" + dependencies: + function-bind: ^1.1.2 + checksum: e8516f776a15149ca6c6ed2ae3110c417a00b62260e222590e54aa367cbcd6ed99122020b37b7fbdf05748df57b265e70095d7bf35a47660587619b15ffb93db + languageName: node + linkType: hard + +"hermes-estree@npm:0.23.1": + version: 0.23.1 + resolution: "hermes-estree@npm:0.23.1" + checksum: 0f63edc365099304f4cd8e91a3666a4fb5a2a47baee751dc120df9201640112865944cae93617f554af71be9827e96547f9989f4972d6964ecc121527295fec6 + languageName: node + linkType: hard + +"hermes-estree@npm:0.25.1": + version: 0.25.1 + resolution: "hermes-estree@npm:0.25.1" + checksum: 97f42e9178dff61db017810b4f79f5a2cdbb3cde94b7d99ba84ed632ee2adfcae2244555587951b3151fc036676c68f48f57fbe2b49e253eb1f3f904d284a8b0 + languageName: node + linkType: hard + +"hermes-parser@npm:0.23.1": + version: 0.23.1 + resolution: "hermes-parser@npm:0.23.1" + dependencies: + hermes-estree: 0.23.1 + checksum: a08008928aea9ea9a2cab2c0fac3cffa21f7869ab3fabb68e5add0fe057737a0c352d7a446426f7956172ccc8f2d4a215b4fc20d1d08354fc8dc16772c248fce + languageName: node + linkType: hard + +"hermes-parser@npm:0.25.1": + version: 0.25.1 + resolution: "hermes-parser@npm:0.25.1" + dependencies: + hermes-estree: 0.25.1 + checksum: 4edcfaa3030931343b540182b83c432aba4cdcb1925952521ab4cfb7ab90c2c1543dfcb042ccd51d5e81e4bfe2809420e85902c2ff95ef7c6c64644ce17138ea + languageName: node + linkType: hard + +"hosted-git-info@npm:^7.0.0": + version: 7.0.2 + resolution: "hosted-git-info@npm:7.0.2" + dependencies: + lru-cache: ^10.0.1 + checksum: 467cf908a56556417b18e86ae3b8dee03c2360ef1d51e61c4028fe87f6f309b6ff038589c94b5666af207da9d972d5107698906aabeb78aca134641962a5c6f8 + languageName: node + linkType: hard + +"http-cache-semantics@npm:^4.1.1": + version: 4.1.1 + resolution: "http-cache-semantics@npm:4.1.1" + checksum: 83ac0bc60b17a3a36f9953e7be55e5c8f41acc61b22583060e8dedc9dd5e3607c823a88d0926f9150e571f90946835c7fe150732801010845c72cd8bbff1a236 + languageName: node + linkType: hard + +"http-errors@npm:2.0.0": + version: 2.0.0 + resolution: "http-errors@npm:2.0.0" + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 + checksum: 9b0a3782665c52ce9dc658a0d1560bcb0214ba5699e4ea15aefb2a496e2ca83db03ebc42e1cce4ac1f413e4e0d2d736a3fd755772c556a9a06853ba2a0b7d920 + languageName: node + linkType: hard + +"http-proxy-agent@npm:^7.0.0": + version: 7.0.2 + resolution: "http-proxy-agent@npm:7.0.2" + dependencies: + agent-base: ^7.1.0 + debug: ^4.3.4 + checksum: 670858c8f8f3146db5889e1fa117630910101db601fff7d5a8aa637da0abedf68c899f03d3451cac2f83bcc4c3d2dabf339b3aa00ff8080571cceb02c3ce02f3 + languageName: node + linkType: hard + +"https-proxy-agent@npm:^7.0.1": + version: 7.0.6 + resolution: "https-proxy-agent@npm:7.0.6" + dependencies: + agent-base: ^7.1.2 + debug: 4 + checksum: b882377a120aa0544846172e5db021fa8afbf83fea2a897d397bd2ddd8095ab268c24bc462f40a15f2a8c600bf4aa05ce52927f70038d4014e68aefecfa94e8d + languageName: node + linkType: hard + +"human-signals@npm:^2.1.0": + version: 2.1.0 + resolution: "human-signals@npm:2.1.0" + checksum: b87fd89fce72391625271454e70f67fe405277415b48bcc0117ca73d31fa23a4241787afdc8d67f5a116cf37258c052f59ea82daffa72364d61351423848e3b8 + languageName: node + linkType: hard + +"iconv-lite@npm:^0.6.2": + version: 0.6.3 + resolution: "iconv-lite@npm:0.6.3" + dependencies: + safer-buffer: ">= 2.1.2 < 3.0.0" + checksum: 3f60d47a5c8fc3313317edfd29a00a692cc87a19cac0159e2ce711d0ebc9019064108323b5e493625e25594f11c6236647d8e256fbe7a58f4a3b33b89e6d30bf + languageName: node + linkType: hard + +"ieee754@npm:^1.1.13, ieee754@npm:^1.2.1": + version: 1.2.1 + resolution: "ieee754@npm:1.2.1" + checksum: 5144c0c9815e54ada181d80a0b810221a253562422e7c6c3a60b1901154184f49326ec239d618c416c1c5945a2e197107aee8d986a3dd836b53dffefd99b5e7e + languageName: node + linkType: hard + +"ignore@npm:^5.2.0": + version: 5.3.2 + resolution: "ignore@npm:5.3.2" + checksum: 2acfd32a573260ea522ea0bfeff880af426d68f6831f973129e2ba7363f422923cf53aab62f8369cbf4667c7b25b6f8a3761b34ecdb284ea18e87a5262a865be + languageName: node + linkType: hard + +"image-size@npm:^1.0.2": + version: 1.2.0 + resolution: "image-size@npm:1.2.0" + dependencies: + queue: 6.0.2 + bin: + image-size: bin/image-size.js + checksum: 6264ae22ea6f349480c5305f84cd1e64f9757442abf4baac79e29519cba38f7ccab90488996e5e4d0c232b2f44dc720576fdf3e7e63c161e49eb1d099e563f82 + languageName: node + linkType: hard + +"import-fresh@npm:^2.0.0": + version: 2.0.0 + resolution: "import-fresh@npm:2.0.0" + dependencies: + caller-path: ^2.0.0 + resolve-from: ^3.0.0 + checksum: 610255f9753cc6775df00be08e9f43691aa39f7703e3636c45afe22346b8b545e600ccfe100c554607546fc8e861fa149a0d1da078c8adedeea30fff326eef79 + languageName: node + linkType: hard + +"import-fresh@npm:^3.3.0": + version: 3.3.1 + resolution: "import-fresh@npm:3.3.1" + dependencies: + parent-module: ^1.0.0 + resolve-from: ^4.0.0 + checksum: a06b19461b4879cc654d46f8a6244eb55eb053437afd4cbb6613cad6be203811849ed3e4ea038783092879487299fda24af932b86bdfff67c9055ba3612b8c87 + languageName: node + linkType: hard + +"imurmurhash@npm:^0.1.4": + version: 0.1.4 + resolution: "imurmurhash@npm:0.1.4" + checksum: 7cae75c8cd9a50f57dadd77482359f659eaebac0319dd9368bcd1714f55e65badd6929ca58569da2b6494ef13fdd5598cd700b1eba23f8b79c5f19d195a3ecf7 + languageName: node + linkType: hard + +"indent-string@npm:^4.0.0": + version: 4.0.0 + resolution: "indent-string@npm:4.0.0" + checksum: 824cfb9929d031dabf059bebfe08cf3137365e112019086ed3dcff6a0a7b698cb80cf67ccccde0e25b9e2d7527aa6cc1fed1ac490c752162496caba3e6699612 + languageName: node + linkType: hard + +"inflight@npm:^1.0.4": + version: 1.0.6 + resolution: "inflight@npm:1.0.6" + dependencies: + once: ^1.3.0 + wrappy: 1 + checksum: f4f76aa072ce19fae87ce1ef7d221e709afb59d445e05d47fba710e85470923a75de35bfae47da6de1b18afc3ce83d70facf44cfb0aff89f0a3f45c0a0244dfd + languageName: node + linkType: hard + +"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:~2.0.3": + version: 2.0.4 + resolution: "inherits@npm:2.0.4" + checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1 + languageName: node + linkType: hard + +"ini@npm:~1.3.0": + version: 1.3.8 + resolution: "ini@npm:1.3.8" + checksum: dfd98b0ca3a4fc1e323e38a6c8eb8936e31a97a918d3b377649ea15bdb15d481207a0dda1021efbd86b464cae29a0d33c1d7dcaf6c5672bee17fa849bc50a1b3 + languageName: node + linkType: hard + +"internal-ip@npm:^4.3.0": + version: 4.3.0 + resolution: "internal-ip@npm:4.3.0" + dependencies: + default-gateway: ^4.2.0 + ipaddr.js: ^1.9.0 + checksum: c970433c84d9a6b46e2c9f5ab7785d3105b856d0a566891bf919241b5a884c5c1c9bf8e915aebb822a86c14b1b6867e58c1eaf5cd49eb023368083069d1a4a9a + languageName: node + linkType: hard + +"invariant@npm:^2.2.4": + version: 2.2.4 + resolution: "invariant@npm:2.2.4" + dependencies: + loose-envify: ^1.0.0 + checksum: cc3182d793aad82a8d1f0af697b462939cb46066ec48bbf1707c150ad5fad6406137e91a262022c269702e01621f35ef60269f6c0d7fd178487959809acdfb14 + languageName: node + linkType: hard + +"ip-address@npm:^9.0.5": + version: 9.0.5 + resolution: "ip-address@npm:9.0.5" + dependencies: + jsbn: 1.1.0 + sprintf-js: ^1.1.3 + checksum: aa15f12cfd0ef5e38349744e3654bae649a34c3b10c77a674a167e99925d1549486c5b14730eebce9fea26f6db9d5e42097b00aa4f9f612e68c79121c71652dc + languageName: node + linkType: hard + +"ip-regex@npm:^2.1.0": + version: 2.1.0 + resolution: "ip-regex@npm:2.1.0" + checksum: 331d95052aa53ce245745ea0fc3a6a1e2e3c8d6da65fa8ea52bf73768c1b22a9ac50629d1d2b08c04e7b3ac4c21b536693c149ce2c2615ee4796030e5b3e3cba + languageName: node + linkType: hard + +"ipaddr.js@npm:^1.9.0": + version: 1.9.1 + resolution: "ipaddr.js@npm:1.9.1" + checksum: f88d3825981486f5a1942414c8d77dd6674dd71c065adcfa46f578d677edcb99fda25af42675cb59db492fdf427b34a5abfcde3982da11a8fd83a500b41cfe77 + languageName: node + linkType: hard + +"is-arrayish@npm:^0.2.1": + version: 0.2.1 + resolution: "is-arrayish@npm:0.2.1" + checksum: eef4417e3c10e60e2c810b6084942b3ead455af16c4509959a27e490e7aee87cfb3f38e01bbde92220b528a0ee1a18d52b787e1458ee86174d8c7f0e58cd488f + languageName: node + linkType: hard + +"is-buffer@npm:~1.1.6": + version: 1.1.6 + resolution: "is-buffer@npm:1.1.6" + checksum: 4a186d995d8bbf9153b4bd9ff9fd04ae75068fe695d29025d25e592d9488911eeece84eefbd8fa41b8ddcc0711058a71d4c466dcf6f1f6e1d83830052d8ca707 + languageName: node + linkType: hard + +"is-core-module@npm:^2.16.0": + version: 2.16.1 + resolution: "is-core-module@npm:2.16.1" + dependencies: + hasown: ^2.0.2 + checksum: 6ec5b3c42d9cbf1ac23f164b16b8a140c3cec338bf8f884c076ca89950c7cc04c33e78f02b8cae7ff4751f3247e3174b2330f1fe4de194c7210deb8b1ea316a7 + languageName: node + linkType: hard + +"is-directory@npm:^0.3.1": + version: 0.3.1 + resolution: "is-directory@npm:0.3.1" + checksum: dce9a9d3981e38f2ded2a80848734824c50ee8680cd09aa477bef617949715cfc987197a2ca0176c58a9fb192a1a0d69b535c397140d241996a609d5906ae524 + languageName: node + linkType: hard + +"is-docker@npm:^2.0.0, is-docker@npm:^2.1.1": + version: 2.2.1 + resolution: "is-docker@npm:2.2.1" + bin: + is-docker: cli.js + checksum: 3fef7ddbf0be25958e8991ad941901bf5922ab2753c46980b60b05c1bf9c9c2402d35e6dc32e4380b980ef5e1970a5d9d5e5aa2e02d77727c3b6b5e918474c56 + languageName: node + linkType: hard + +"is-extglob@npm:^2.1.1": + version: 2.1.1 + resolution: "is-extglob@npm:2.1.1" + checksum: df033653d06d0eb567461e58a7a8c9f940bd8c22274b94bf7671ab36df5719791aae15eef6d83bbb5e23283967f2f984b8914559d4449efda578c775c4be6f85 + languageName: node + linkType: hard + +"is-fullwidth-code-point@npm:^3.0.0": + version: 3.0.0 + resolution: "is-fullwidth-code-point@npm:3.0.0" + checksum: 44a30c29457c7fb8f00297bce733f0a64cd22eca270f83e58c105e0d015e45c019491a4ab2faef91ab51d4738c670daff901c799f6a700e27f7314029e99e348 + languageName: node + linkType: hard + +"is-glob@npm:^4.0.1": + version: 4.0.3 + resolution: "is-glob@npm:4.0.3" + dependencies: + is-extglob: ^2.1.1 + checksum: d381c1319fcb69d341cc6e6c7cd588e17cd94722d9a32dbd60660b993c4fb7d0f19438674e68dfec686d09b7c73139c9166b47597f846af387450224a8101ab4 + languageName: node + linkType: hard + +"is-number@npm:^7.0.0": + version: 7.0.0 + resolution: "is-number@npm:7.0.0" + checksum: 456ac6f8e0f3111ed34668a624e45315201dff921e5ac181f8ec24923b99e9f32ca1a194912dc79d539c97d33dba17dc635202ff0b2cf98326f608323276d27a + languageName: node + linkType: hard + +"is-path-cwd@npm:^2.2.0": + version: 2.2.0 + resolution: "is-path-cwd@npm:2.2.0" + checksum: 46a840921bb8cc0dc7b5b423a14220e7db338072a4495743a8230533ce78812dc152548c86f4b828411fe98c5451959f07cf841c6a19f611e46600bd699e8048 + languageName: node + linkType: hard + +"is-path-inside@npm:^3.0.2": + version: 3.0.3 + resolution: "is-path-inside@npm:3.0.3" + checksum: abd50f06186a052b349c15e55b182326f1936c89a78bf6c8f2b707412517c097ce04bc49a0ca221787bc44e1049f51f09a2ffb63d22899051988d3a618ba13e9 + languageName: node + linkType: hard + +"is-plain-object@npm:^2.0.4": + version: 2.0.4 + resolution: "is-plain-object@npm:2.0.4" + dependencies: + isobject: ^3.0.1 + checksum: 2a401140cfd86cabe25214956ae2cfee6fbd8186809555cd0e84574f88de7b17abacb2e477a6a658fa54c6083ecbda1e6ae404c7720244cd198903848fca70ca + languageName: node + linkType: hard + +"is-stream@npm:^1.1.0": + version: 1.1.0 + resolution: "is-stream@npm:1.1.0" + checksum: 063c6bec9d5647aa6d42108d4c59723d2bd4ae42135a2d4db6eadbd49b7ea05b750fd69d279e5c7c45cf9da753ad2c00d8978be354d65aa9f6bb434969c6a2ae + languageName: node + linkType: hard + +"is-stream@npm:^2.0.0": + version: 2.0.1 + resolution: "is-stream@npm:2.0.1" + checksum: b8e05ccdf96ac330ea83c12450304d4a591f9958c11fd17bed240af8d5ffe08aedafa4c0f4cfccd4d28dc9d4d129daca1023633d5c11601a6cbc77521f6fae66 + languageName: node + linkType: hard + +"is-wsl@npm:^2.1.1, is-wsl@npm:^2.2.0": + version: 2.2.0 + resolution: "is-wsl@npm:2.2.0" + dependencies: + is-docker: ^2.0.0 + checksum: 20849846ae414997d290b75e16868e5261e86ff5047f104027026fd61d8b5a9b0b3ade16239f35e1a067b3c7cc02f70183cb661010ed16f4b6c7c93dad1b19d8 + languageName: node + linkType: hard + +"isexe@npm:^2.0.0": + version: 2.0.0 + resolution: "isexe@npm:2.0.0" + checksum: 26bf6c5480dda5161c820c5b5c751ae1e766c587b1f951ea3fcfc973bafb7831ae5b54a31a69bd670220e42e99ec154475025a468eae58ea262f813fdc8d1c62 + languageName: node + linkType: hard + +"isexe@npm:^3.1.1": + version: 3.1.1 + resolution: "isexe@npm:3.1.1" + checksum: 7fe1931ee4e88eb5aa524cd3ceb8c882537bc3a81b02e438b240e47012eef49c86904d0f0e593ea7c3a9996d18d0f1f3be8d3eaa92333977b0c3a9d353d5563e + languageName: node + linkType: hard + +"isobject@npm:^3.0.1": + version: 3.0.1 + resolution: "isobject@npm:3.0.1" + checksum: db85c4c970ce30693676487cca0e61da2ca34e8d4967c2e1309143ff910c207133a969f9e4ddb2dc6aba670aabce4e0e307146c310350b298e74a31f7d464703 + languageName: node + linkType: hard + +"istanbul-lib-coverage@npm:^3.2.0": + version: 3.2.2 + resolution: "istanbul-lib-coverage@npm:3.2.2" + checksum: 2367407a8d13982d8f7a859a35e7f8dd5d8f75aae4bb5484ede3a9ea1b426dc245aff28b976a2af48ee759fdd9be374ce2bd2669b644f31e76c5f46a2e29a831 + languageName: node + linkType: hard + +"istanbul-lib-instrument@npm:^5.0.4": + version: 5.2.1 + resolution: "istanbul-lib-instrument@npm:5.2.1" + dependencies: + "@babel/core": ^7.12.3 + "@babel/parser": ^7.14.7 + "@istanbuljs/schema": ^0.1.2 + istanbul-lib-coverage: ^3.2.0 + semver: ^6.3.0 + checksum: bf16f1803ba5e51b28bbd49ed955a736488381e09375d830e42ddeb403855b2006f850711d95ad726f2ba3f1ae8e7366de7e51d2b9ac67dc4d80191ef7ddf272 + languageName: node + linkType: hard + +"jackspeak@npm:^3.1.2": + version: 3.4.3 + resolution: "jackspeak@npm:3.4.3" + dependencies: + "@isaacs/cliui": ^8.0.2 + "@pkgjs/parseargs": ^0.11.0 + dependenciesMeta: + "@pkgjs/parseargs": + optional: true + checksum: be31027fc72e7cc726206b9f560395604b82e0fddb46c4cbf9f97d049bcef607491a5afc0699612eaa4213ca5be8fd3e1e7cd187b3040988b65c9489838a7c00 + languageName: node + linkType: hard + +"jest-environment-node@npm:^29.6.3": + version: 29.7.0 + resolution: "jest-environment-node@npm:29.7.0" + dependencies: + "@jest/environment": ^29.7.0 + "@jest/fake-timers": ^29.7.0 + "@jest/types": ^29.6.3 + "@types/node": "*" + jest-mock: ^29.7.0 + jest-util: ^29.7.0 + checksum: 501a9966292cbe0ca3f40057a37587cb6def25e1e0c5e39ac6c650fe78d3c70a2428304341d084ac0cced5041483acef41c477abac47e9a290d5545fd2f15646 + languageName: node + linkType: hard + +"jest-get-type@npm:^29.6.3": + version: 29.6.3 + resolution: "jest-get-type@npm:29.6.3" + checksum: 88ac9102d4679d768accae29f1e75f592b760b44277df288ad76ce5bf038c3f5ce3719dea8aa0f035dac30e9eb034b848ce716b9183ad7cc222d029f03e92205 + languageName: node + linkType: hard + +"jest-haste-map@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-haste-map@npm:29.7.0" + dependencies: + "@jest/types": ^29.6.3 + "@types/graceful-fs": ^4.1.3 + "@types/node": "*" + anymatch: ^3.0.3 + fb-watchman: ^2.0.0 + fsevents: ^2.3.2 + graceful-fs: ^4.2.9 + jest-regex-util: ^29.6.3 + jest-util: ^29.7.0 + jest-worker: ^29.7.0 + micromatch: ^4.0.4 + walker: ^1.0.8 + dependenciesMeta: + fsevents: + optional: true + checksum: c2c8f2d3e792a963940fbdfa563ce14ef9e14d4d86da645b96d3cd346b8d35c5ce0b992ee08593939b5f718cf0a1f5a90011a056548a1dbf58397d4356786f01 + languageName: node + linkType: hard + +"jest-message-util@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-message-util@npm:29.7.0" + dependencies: + "@babel/code-frame": ^7.12.13 + "@jest/types": ^29.6.3 + "@types/stack-utils": ^2.0.0 + chalk: ^4.0.0 + graceful-fs: ^4.2.9 + micromatch: ^4.0.4 + pretty-format: ^29.7.0 + slash: ^3.0.0 + stack-utils: ^2.0.3 + checksum: a9d025b1c6726a2ff17d54cc694de088b0489456c69106be6b615db7a51b7beb66788bea7a59991a019d924fbf20f67d085a445aedb9a4d6760363f4d7d09930 + languageName: node + linkType: hard + +"jest-mock@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-mock@npm:29.7.0" + dependencies: + "@jest/types": ^29.6.3 + "@types/node": "*" + jest-util: ^29.7.0 + checksum: 81ba9b68689a60be1482212878973700347cb72833c5e5af09895882b9eb5c4e02843a1bbdf23f94c52d42708bab53a30c45a3482952c9eec173d1eaac5b86c5 + languageName: node + linkType: hard + +"jest-regex-util@npm:^29.6.3": + version: 29.6.3 + resolution: "jest-regex-util@npm:29.6.3" + checksum: 0518beeb9bf1228261695e54f0feaad3606df26a19764bc19541e0fc6e2a3737191904607fb72f3f2ce85d9c16b28df79b7b1ec9443aa08c3ef0e9efda6f8f2a + languageName: node + linkType: hard + +"jest-util@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-util@npm:29.7.0" + dependencies: + "@jest/types": ^29.6.3 + "@types/node": "*" + chalk: ^4.0.0 + ci-info: ^3.2.0 + graceful-fs: ^4.2.9 + picomatch: ^2.2.3 + checksum: 042ab4980f4ccd4d50226e01e5c7376a8556b472442ca6091a8f102488c0f22e6e8b89ea874111d2328a2080083bf3225c86f3788c52af0bd0345a00eb57a3ca + languageName: node + linkType: hard + +"jest-validate@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-validate@npm:29.7.0" + dependencies: + "@jest/types": ^29.6.3 + camelcase: ^6.2.0 + chalk: ^4.0.0 + jest-get-type: ^29.6.3 + leven: ^3.1.0 + pretty-format: ^29.7.0 + checksum: 191fcdc980f8a0de4dbdd879fa276435d00eb157a48683af7b3b1b98b0f7d9de7ffe12689b617779097ff1ed77601b9f7126b0871bba4f776e222c40f62e9dae + languageName: node + linkType: hard + +"jest-worker@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-worker@npm:29.7.0" + dependencies: + "@types/node": "*" + jest-util: ^29.7.0 + merge-stream: ^2.0.0 + supports-color: ^8.0.0 + checksum: 30fff60af49675273644d408b650fc2eb4b5dcafc5a0a455f238322a8f9d8a98d847baca9d51ff197b6747f54c7901daa2287799230b856a0f48287d131f8c13 + languageName: node + linkType: hard + +"jimp-compact@npm:0.16.1": + version: 0.16.1 + resolution: "jimp-compact@npm:0.16.1" + checksum: 5a1c62d70881b31f79ea65fecfe03617be0eb56139bc451f37e8972365c99ac3b52c5176c446ff27144c98ab664a99107ae08d347044e94e1de637f165b41a57 + languageName: node + linkType: hard + +"join-component@npm:^1.1.0": + version: 1.1.0 + resolution: "join-component@npm:1.1.0" + checksum: b904c2f98549e4195022caca3a7dc837f9706c670ff333f3d617f2aed23bce2841322a999734683b6ab8e202568ad810c11ff79b58a64df66888153f04750239 + languageName: node + linkType: hard + +"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": + version: 4.0.0 + resolution: "js-tokens@npm:4.0.0" + checksum: 8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78 + languageName: node + linkType: hard + +"js-yaml@npm:^3.13.1": + version: 3.14.1 + resolution: "js-yaml@npm:3.14.1" + dependencies: + argparse: ^1.0.7 + esprima: ^4.0.0 + bin: + js-yaml: bin/js-yaml.js + checksum: bef146085f472d44dee30ec34e5cf36bf89164f5d585435a3d3da89e52622dff0b188a580e4ad091c3341889e14cb88cac6e4deb16dc5b1e9623bb0601fc255c + languageName: node + linkType: hard + +"js-yaml@npm:^4.1.0": + version: 4.1.0 + resolution: "js-yaml@npm:4.1.0" + dependencies: + argparse: ^2.0.1 + bin: + js-yaml: bin/js-yaml.js + checksum: c7830dfd456c3ef2c6e355cc5a92e6700ceafa1d14bba54497b34a99f0376cecbb3e9ac14d3e5849b426d5a5140709a66237a8c991c675431271c4ce5504151a + languageName: node + linkType: hard + +"jsbn@npm:1.1.0": + version: 1.1.0 + resolution: "jsbn@npm:1.1.0" + checksum: 944f924f2bd67ad533b3850eee47603eed0f6ae425fd1ee8c760f477e8c34a05f144c1bd4f5a5dd1963141dc79a2c55f89ccc5ab77d039e7077f3ad196b64965 + languageName: node + linkType: hard + +"jsc-android@npm:^250231.0.0": + version: 250231.0.0 + resolution: "jsc-android@npm:250231.0.0" + checksum: 6c3f0f6f02fa37a19935b2fbe651e9d6ecc370eb30f2ecee76379337bbf084abb568a1ef1133fe622c5b76f43cf54bb7716f92a94dca010985da38edc48841e2 + languageName: node + linkType: hard + +"jsc-safe-url@npm:^0.2.2, jsc-safe-url@npm:^0.2.4": + version: 0.2.4 + resolution: "jsc-safe-url@npm:0.2.4" + checksum: 53b5741ba2c0a54da1722929dc80becb2c6fcc9525124fb6c2aec1a00f48e79afffd26816c278111e7b938e37ace029e33cbb8cdaa4ac1f528a87e58022284af + languageName: node + linkType: hard + +"jscodeshift@npm:^0.14.0": + version: 0.14.0 + resolution: "jscodeshift@npm:0.14.0" + dependencies: + "@babel/core": ^7.13.16 + "@babel/parser": ^7.13.16 + "@babel/plugin-proposal-class-properties": ^7.13.0 + "@babel/plugin-proposal-nullish-coalescing-operator": ^7.13.8 + "@babel/plugin-proposal-optional-chaining": ^7.13.12 + "@babel/plugin-transform-modules-commonjs": ^7.13.8 + "@babel/preset-flow": ^7.13.13 + "@babel/preset-typescript": ^7.13.0 + "@babel/register": ^7.13.16 + babel-core: ^7.0.0-bridge.0 + chalk: ^4.1.2 + flow-parser: 0.* + graceful-fs: ^4.2.4 + micromatch: ^4.0.4 + neo-async: ^2.5.0 + node-dir: ^0.1.17 + recast: ^0.21.0 + temp: ^0.8.4 + write-file-atomic: ^2.3.0 + peerDependencies: + "@babel/preset-env": ^7.1.6 + bin: + jscodeshift: bin/jscodeshift.js + checksum: 54ea6d639455883336f80b38a70648821c88b7942315dc0fbab01bc34a9ad0f0f78e3bd69304b5ab167e4262d6ed7e6284c6d32525ab01c89d9118df89b3e2a0 + languageName: node + linkType: hard + +"jsesc@npm:^3.0.2": + version: 3.1.0 + resolution: "jsesc@npm:3.1.0" + bin: + jsesc: bin/jsesc + checksum: 19c94095ea026725540c0d29da33ab03144f6bcf2d4159e4833d534976e99e0c09c38cefa9a575279a51fc36b31166f8d6d05c9fe2645d5f15851d690b41f17f + languageName: node + linkType: hard + +"jsesc@npm:~3.0.2": + version: 3.0.2 + resolution: "jsesc@npm:3.0.2" + bin: + jsesc: bin/jsesc + checksum: a36d3ca40574a974d9c2063bf68c2b6141c20da8f2a36bd3279fc802563f35f0527a6c828801295bdfb2803952cf2cf387786c2c90ed564f88d5782475abfe3c + languageName: node + linkType: hard + +"json-parse-better-errors@npm:^1.0.1": + version: 1.0.2 + resolution: "json-parse-better-errors@npm:1.0.2" + checksum: ff2b5ba2a70e88fd97a3cb28c1840144c5ce8fae9cbeeddba15afa333a5c407cf0e42300cd0a2885dbb055227fe68d405070faad941beeffbfde9cf3b2c78c5d + languageName: node + linkType: hard + +"json-parse-even-better-errors@npm:^2.3.0": + version: 2.3.1 + resolution: "json-parse-even-better-errors@npm:2.3.1" + checksum: 798ed4cf3354a2d9ccd78e86d2169515a0097a5c133337807cdf7f1fc32e1391d207ccfc276518cc1d7d8d4db93288b8a50ba4293d212ad1336e52a8ec0a941f + languageName: node + linkType: hard + +"json5@npm:^2.2.3": + version: 2.2.3 + resolution: "json5@npm:2.2.3" + bin: + json5: lib/cli.js + checksum: 2a7436a93393830bce797d4626275152e37e877b265e94ca69c99e3d20c2b9dab021279146a39cdb700e71b2dd32a4cebd1514cd57cee102b1af906ce5040349 + languageName: node + linkType: hard + +"jsonfile@npm:^4.0.0": + version: 4.0.0 + resolution: "jsonfile@npm:4.0.0" + dependencies: + graceful-fs: ^4.1.6 + dependenciesMeta: + graceful-fs: + optional: true + checksum: 6447d6224f0d31623eef9b51185af03ac328a7553efcee30fa423d98a9e276ca08db87d71e17f2310b0263fd3ffa6c2a90a6308367f661dc21580f9469897c9e + languageName: node + linkType: hard + +"jsonfile@npm:^6.0.1": + version: 6.1.0 + resolution: "jsonfile@npm:6.1.0" + dependencies: + graceful-fs: ^4.1.6 + universalify: ^2.0.0 + dependenciesMeta: + graceful-fs: + optional: true + checksum: 7af3b8e1ac8fe7f1eccc6263c6ca14e1966fcbc74b618d3c78a0a2075579487547b94f72b7a1114e844a1e15bb00d440e5d1720bfc4612d790a6f285d5ea8354 + languageName: node + linkType: hard + +"kind-of@npm:^6.0.2": + version: 6.0.3 + resolution: "kind-of@npm:6.0.3" + checksum: 3ab01e7b1d440b22fe4c31f23d8d38b4d9b91d9f291df683476576493d5dfd2e03848a8b05813dd0c3f0e835bc63f433007ddeceb71f05cb25c45ae1b19c6d3b + languageName: node + linkType: hard + +"kleur@npm:^3.0.3": + version: 3.0.3 + resolution: "kleur@npm:3.0.3" + checksum: df82cd1e172f957bae9c536286265a5cdbd5eeca487cb0a3b2a7b41ef959fc61f8e7c0e9aeea9c114ccf2c166b6a8dd45a46fd619c1c569d210ecd2765ad5169 + languageName: node + linkType: hard + +"leven@npm:^3.1.0": + version: 3.1.0 + resolution: "leven@npm:3.1.0" + checksum: 638401d534585261b6003db9d99afd244dfe82d75ddb6db5c0df412842d5ab30b2ef18de471aaec70fe69a46f17b4ae3c7f01d8a4e6580ef7adb9f4273ad1e55 + languageName: node + linkType: hard + +"lighthouse-logger@npm:^1.0.0": + version: 1.4.2 + resolution: "lighthouse-logger@npm:1.4.2" + dependencies: + debug: ^2.6.9 + marky: ^1.2.2 + checksum: ba6b73d93424318fab58b4e07c9ed246e3e969a3313f26b69515ed4c06457dd9a0b11bc706948398fdaef26aa4ba5e65cb848c37ce59f470d3c6c450b9b79a33 + languageName: node + linkType: hard + +"lightningcss-darwin-arm64@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-darwin-arm64@npm:1.27.0" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"lightningcss-darwin-x64@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-darwin-x64@npm:1.27.0" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"lightningcss-freebsd-x64@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-freebsd-x64@npm:1.27.0" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"lightningcss-linux-arm-gnueabihf@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-linux-arm-gnueabihf@npm:1.27.0" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"lightningcss-linux-arm64-gnu@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-linux-arm64-gnu@npm:1.27.0" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"lightningcss-linux-arm64-musl@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-linux-arm64-musl@npm:1.27.0" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"lightningcss-linux-x64-gnu@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-linux-x64-gnu@npm:1.27.0" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"lightningcss-linux-x64-musl@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-linux-x64-musl@npm:1.27.0" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"lightningcss-win32-arm64-msvc@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-win32-arm64-msvc@npm:1.27.0" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"lightningcss-win32-x64-msvc@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-win32-x64-msvc@npm:1.27.0" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"lightningcss@npm:~1.27.0": + version: 1.27.0 + resolution: "lightningcss@npm:1.27.0" + dependencies: + detect-libc: ^1.0.3 + lightningcss-darwin-arm64: 1.27.0 + lightningcss-darwin-x64: 1.27.0 + lightningcss-freebsd-x64: 1.27.0 + lightningcss-linux-arm-gnueabihf: 1.27.0 + lightningcss-linux-arm64-gnu: 1.27.0 + lightningcss-linux-arm64-musl: 1.27.0 + lightningcss-linux-x64-gnu: 1.27.0 + lightningcss-linux-x64-musl: 1.27.0 + lightningcss-win32-arm64-msvc: 1.27.0 + lightningcss-win32-x64-msvc: 1.27.0 + dependenciesMeta: + lightningcss-darwin-arm64: + optional: true + lightningcss-darwin-x64: + optional: true + lightningcss-freebsd-x64: + optional: true + lightningcss-linux-arm-gnueabihf: + optional: true + lightningcss-linux-arm64-gnu: + optional: true + lightningcss-linux-arm64-musl: + optional: true + lightningcss-linux-x64-gnu: + optional: true + lightningcss-linux-x64-musl: + optional: true + lightningcss-win32-arm64-msvc: + optional: true + lightningcss-win32-x64-msvc: + optional: true + checksum: 3761a4feb67ca250bf1b1cb1982a3d212dee56ea345dd487592908648e70d8c17da2f5918affaf08b6cdc4e4702eee29d800ff29e16d194e7af6300af1b28409 + languageName: node + linkType: hard + +"lines-and-columns@npm:^1.1.6": + version: 1.2.4 + resolution: "lines-and-columns@npm:1.2.4" + checksum: 0c37f9f7fa212b38912b7145e1cd16a5f3cd34d782441c3e6ca653485d326f58b3caccda66efce1c5812bde4961bbde3374fae4b0d11bf1226152337f3894aa5 + languageName: node + linkType: hard + +"locate-path@npm:^3.0.0": + version: 3.0.0 + resolution: "locate-path@npm:3.0.0" + dependencies: + p-locate: ^3.0.0 + path-exists: ^3.0.0 + checksum: 53db3996672f21f8b0bf2a2c645ae2c13ffdae1eeecfcd399a583bce8516c0b88dcb4222ca6efbbbeb6949df7e46860895be2c02e8d3219abd373ace3bfb4e11 + languageName: node + linkType: hard + +"locate-path@npm:^5.0.0": + version: 5.0.0 + resolution: "locate-path@npm:5.0.0" + dependencies: + p-locate: ^4.1.0 + checksum: 83e51725e67517287d73e1ded92b28602e3ae5580b301fe54bfb76c0c723e3f285b19252e375712316774cf52006cb236aed5704692c32db0d5d089b69696e30 + languageName: node + linkType: hard + +"locate-path@npm:^6.0.0": + version: 6.0.0 + resolution: "locate-path@npm:6.0.0" + dependencies: + p-locate: ^5.0.0 + checksum: 72eb661788a0368c099a184c59d2fee760b3831c9c1c33955e8a19ae4a21b4116e53fa736dc086cdeb9fce9f7cc508f2f92d2d3aae516f133e16a2bb59a39f5a + languageName: node + linkType: hard + +"lodash.debounce@npm:^4.0.8": + version: 4.0.8 + resolution: "lodash.debounce@npm:4.0.8" + checksum: a3f527d22c548f43ae31c861ada88b2637eb48ac6aa3eb56e82d44917971b8aa96fbb37aa60efea674dc4ee8c42074f90f7b1f772e9db375435f6c83a19b3bc6 + languageName: node + linkType: hard + +"lodash.throttle@npm:^4.1.1": + version: 4.1.1 + resolution: "lodash.throttle@npm:4.1.1" + checksum: 129c0a28cee48b348aef146f638ef8a8b197944d4e9ec26c1890c19d9bf5a5690fe11b655c77a4551268819b32d27f4206343e30c78961f60b561b8608c8c805 + languageName: node + linkType: hard + +"lodash@npm:^4.17.21": + version: 4.17.21 + resolution: "lodash@npm:4.17.21" + checksum: eb835a2e51d381e561e508ce932ea50a8e5a68f4ebdd771ea240d3048244a8d13658acbd502cd4829768c56f2e16bdd4340b9ea141297d472517b83868e677f7 + languageName: node + linkType: hard + +"log-symbols@npm:^2.2.0": + version: 2.2.0 + resolution: "log-symbols@npm:2.2.0" + dependencies: + chalk: ^2.0.1 + checksum: 4c95e3b65f0352dbe91dc4989c10baf7a44e2ef5b0db7e6721e1476268e2b6f7090c3aa880d4f833a05c5c3ff18f4ec5215a09bd0099986d64a8186cfeb48ac8 + languageName: node + linkType: hard + +"loose-envify@npm:^1.0.0, loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": + version: 1.4.0 + resolution: "loose-envify@npm:1.4.0" + dependencies: + js-tokens: ^3.0.0 || ^4.0.0 + bin: + loose-envify: cli.js + checksum: 6517e24e0cad87ec9888f500c5b5947032cdfe6ef65e1c1936a0c48a524b81e65542c9c3edc91c97d5bddc806ee2a985dbc79be89215d613b1de5db6d1cfe6f4 + languageName: node + linkType: hard + +"lower-case@npm:^2.0.2": + version: 2.0.2 + resolution: "lower-case@npm:2.0.2" + dependencies: + tslib: ^2.0.3 + checksum: 83a0a5f159ad7614bee8bf976b96275f3954335a84fad2696927f609ddae902802c4f3312d86668722e668bef41400254807e1d3a7f2e8c3eede79691aa1f010 + languageName: node + linkType: hard + +"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": + version: 10.4.3 + resolution: "lru-cache@npm:10.4.3" + checksum: 6476138d2125387a6d20f100608c2583d415a4f64a0fecf30c9e2dda976614f09cad4baa0842447bd37dd459a7bd27f57d9d8f8ce558805abd487c583f3d774a + languageName: node + linkType: hard + +"lru-cache@npm:^5.1.1": + version: 5.1.1 + resolution: "lru-cache@npm:5.1.1" + dependencies: + yallist: ^3.0.2 + checksum: c154ae1cbb0c2206d1501a0e94df349653c92c8cbb25236d7e85190bcaf4567a03ac6eb43166fabfa36fd35623694da7233e88d9601fbf411a9a481d85dbd2cb + languageName: node + linkType: hard + +"make-dir@npm:^2.0.0, make-dir@npm:^2.1.0": + version: 2.1.0 + resolution: "make-dir@npm:2.1.0" + dependencies: + pify: ^4.0.1 + semver: ^5.6.0 + checksum: 043548886bfaf1820323c6a2997e6d2fa51ccc2586ac14e6f14634f7458b4db2daf15f8c310e2a0abd3e0cddc64df1890d8fc7263033602c47bb12cbfcf86aab + languageName: node + linkType: hard + +"make-fetch-happen@npm:^14.0.3": + version: 14.0.3 + resolution: "make-fetch-happen@npm:14.0.3" + dependencies: + "@npmcli/agent": ^3.0.0 + cacache: ^19.0.1 + http-cache-semantics: ^4.1.1 + minipass: ^7.0.2 + minipass-fetch: ^4.0.0 + minipass-flush: ^1.0.5 + minipass-pipeline: ^1.2.4 + negotiator: ^1.0.0 + proc-log: ^5.0.0 + promise-retry: ^2.0.1 + ssri: ^12.0.0 + checksum: 6fb2fee6da3d98f1953b03d315826b5c5a4ea1f908481afc113782d8027e19f080c85ae998454de4e5f27a681d3ec58d57278f0868d4e0b736f51d396b661691 + languageName: node + linkType: hard + +"makeerror@npm:1.0.12": + version: 1.0.12 + resolution: "makeerror@npm:1.0.12" + dependencies: + tmpl: 1.0.5 + checksum: b38a025a12c8146d6eeea5a7f2bf27d51d8ad6064da8ca9405fcf7bf9b54acd43e3b30ddd7abb9b1bfa4ddb266019133313482570ddb207de568f71ecfcf6060 + languageName: node + linkType: hard + +"marky@npm:^1.2.2": + version: 1.2.5 + resolution: "marky@npm:1.2.5" + checksum: 823b946677749551cdfc3b5221685478b5d1b9cc0dc03eff977c6f9a615fb05c67559f9556cb3c0fcb941a9ea0e195e37befd83026443396ccee8b724f54f4c5 + languageName: node + linkType: hard + +"math-intrinsics@npm:^1.1.0": + version: 1.1.0 + resolution: "math-intrinsics@npm:1.1.0" + checksum: 0e513b29d120f478c85a70f49da0b8b19bc638975eca466f2eeae0071f3ad00454c621bf66e16dd435896c208e719fc91ad79bbfba4e400fe0b372e7c1c9c9a2 + languageName: node + linkType: hard + +"md5-file@npm:^3.2.3": + version: 3.2.3 + resolution: "md5-file@npm:3.2.3" + dependencies: + buffer-alloc: ^1.1.0 + bin: + md5-file: cli.js + checksum: a3738274ee0c5ce21e7c14a4b60e5de6b298740f8a37eeb502bb97a056e3f19ea0871418b4dd45ca9c70d2f1d6c79a19e9a320fba1c129b196cdf671e544c450 + languageName: node + linkType: hard + +"md5@npm:^2.2.1": + version: 2.3.0 + resolution: "md5@npm:2.3.0" + dependencies: + charenc: 0.0.2 + crypt: 0.0.2 + is-buffer: ~1.1.6 + checksum: a63cacf4018dc9dee08c36e6f924a64ced735b37826116c905717c41cebeb41a522f7a526ba6ad578f9c80f02cb365033ccd67fe186ffbcc1a1faeb75daa9b6e + languageName: node + linkType: hard + +"mdn-data@npm:2.0.14": + version: 2.0.14 + resolution: "mdn-data@npm:2.0.14" + checksum: 9d0128ed425a89f4cba8f787dca27ad9408b5cb1b220af2d938e2a0629d17d879a34d2cb19318bdb26c3f14c77dd5dfbae67211f5caaf07b61b1f2c5c8c7dc16 + languageName: node + linkType: hard + +"mdn-data@npm:2.0.28": + version: 2.0.28 + resolution: "mdn-data@npm:2.0.28" + checksum: f51d587a6ebe8e426c3376c74ea6df3e19ec8241ed8e2466c9c8a3904d5d04397199ea4f15b8d34d14524b5de926d8724ae85207984be47e165817c26e49e0aa + languageName: node + linkType: hard + +"mdn-data@npm:2.0.30": + version: 2.0.30 + resolution: "mdn-data@npm:2.0.30" + checksum: d6ac5ac7439a1607df44b22738ecf83f48e66a0874e4482d6424a61c52da5cde5750f1d1229b6f5fa1b80a492be89465390da685b11f97d62b8adcc6e88189aa + languageName: node + linkType: hard + +"memoize-one@npm:^5.0.0": + version: 5.2.1 + resolution: "memoize-one@npm:5.2.1" + checksum: a3cba7b824ebcf24cdfcd234aa7f86f3ad6394b8d9be4c96ff756dafb8b51c7f71320785fbc2304f1af48a0467cbbd2a409efc9333025700ed523f254cb52e3d + languageName: node + linkType: hard + +"merge-stream@npm:^2.0.0": + version: 2.0.0 + resolution: "merge-stream@npm:2.0.0" + checksum: 6fa4dcc8d86629705cea944a4b88ef4cb0e07656ebf223fa287443256414283dd25d91c1cd84c77987f2aec5927af1a9db6085757cb43d90eb170ebf4b47f4f4 + languageName: node + linkType: hard + +"merge2@npm:^1.3.0, merge2@npm:^1.4.1": + version: 1.4.1 + resolution: "merge2@npm:1.4.1" + checksum: 7268db63ed5169466540b6fb947aec313200bcf6d40c5ab722c22e242f651994619bcd85601602972d3c85bd2cc45a358a4c61937e9f11a061919a1da569b0c2 + languageName: node + linkType: hard + +"metro-babel-transformer@npm:0.81.3": + version: 0.81.3 + resolution: "metro-babel-transformer@npm:0.81.3" + dependencies: + "@babel/core": ^7.25.2 + flow-enums-runtime: ^0.0.6 + hermes-parser: 0.25.1 + nullthrows: ^1.1.1 + checksum: d893fa1a73f7a337772acb308a03f2223f0760fabd573c542dec1618f2bc7a0f45c2746586c5dce4ca1c7d941fde43b87cdfb35c0f37bcea0295c24fb7e16caa + languageName: node + linkType: hard + +"metro-cache-key@npm:0.81.3": + version: 0.81.3 + resolution: "metro-cache-key@npm:0.81.3" + dependencies: + flow-enums-runtime: ^0.0.6 + checksum: dd524555179a1a31872e23b99b1172aa3b5c933d26a07911b84fd33cdb5742888d09b98c0a5f5b7a74667723c20181201f5d8f018dabe6dc6a31b897b1a36bb9 + languageName: node + linkType: hard + +"metro-cache@npm:0.81.3": + version: 0.81.3 + resolution: "metro-cache@npm:0.81.3" + dependencies: + exponential-backoff: ^3.1.1 + flow-enums-runtime: ^0.0.6 + metro-core: 0.81.3 + checksum: 9a45adb519e43e3fa09e2da186b3fe5a6a865f33276f7bd4dc1fc7d34368d2a2986b4610c3f34a5ee2c51db3f0711b258b0d65b994d2e82d105c1f3bd3ad0d01 + languageName: node + linkType: hard + +"metro-config@npm:0.81.3, metro-config@npm:^0.81.0": + version: 0.81.3 + resolution: "metro-config@npm:0.81.3" + dependencies: + connect: ^3.6.5 + cosmiconfig: ^5.0.5 + flow-enums-runtime: ^0.0.6 + jest-validate: ^29.7.0 + metro: 0.81.3 + metro-cache: 0.81.3 + metro-core: 0.81.3 + metro-runtime: 0.81.3 + checksum: e8d249b46ffec27ce51d93bba214cb1008e83df75ec14dcf03cb37aa06ecedb8585d7fe8c1185fe1650ed6d6e119ac6154cdb0e8ece4be84efeb1e91242ec317 + languageName: node + linkType: hard + +"metro-core@npm:0.81.3, metro-core@npm:^0.81.0": + version: 0.81.3 + resolution: "metro-core@npm:0.81.3" + dependencies: + flow-enums-runtime: ^0.0.6 + lodash.throttle: ^4.1.1 + metro-resolver: 0.81.3 + checksum: 778db2c71e88c0214b167bfb3af519d998fccb4471ad3e987aafab18d5d861c66c104bfca5f164054a1fe3e5a59c1e7a52c1dc4be735ffb9aa5ac7ca2be12c08 + languageName: node + linkType: hard + +"metro-file-map@npm:0.81.3": + version: 0.81.3 + resolution: "metro-file-map@npm:0.81.3" + dependencies: + debug: ^2.2.0 + fb-watchman: ^2.0.0 + flow-enums-runtime: ^0.0.6 + graceful-fs: ^4.2.4 + invariant: ^2.2.4 + jest-worker: ^29.7.0 + micromatch: ^4.0.4 + nullthrows: ^1.1.1 + walker: ^1.0.7 + checksum: 4165cfb812da41859a604b16973db61b66456d4e6ecd6347d9de14ca3ebc75eb10dd2b565fe95bf3616eeada2faca2f5f8a9825acbd73f966dcea0a84057fdd9 + languageName: node + linkType: hard + +"metro-minify-terser@npm:0.81.3": + version: 0.81.3 + resolution: "metro-minify-terser@npm:0.81.3" + dependencies: + flow-enums-runtime: ^0.0.6 + terser: ^5.15.0 + checksum: 824c95e6500900647d1f142babe6e30098063972baa8623aa9a42ccdb52998dec7591cea322f6a188a4848a5e954044d71cea36611c01495c253d20c3df57256 + languageName: node + linkType: hard + +"metro-resolver@npm:0.81.3": + version: 0.81.3 + resolution: "metro-resolver@npm:0.81.3" + dependencies: + flow-enums-runtime: ^0.0.6 + checksum: bca83a3a6088ef5fbecd70846adffabe8059249d94520cf9f35b14e10155c8a8805ed094e28b978be21f44cb6fea6e90e6a604bcec4112b5927c7bd1b1b3d6be + languageName: node + linkType: hard + +"metro-runtime@npm:0.81.3, metro-runtime@npm:^0.81.0": + version: 0.81.3 + resolution: "metro-runtime@npm:0.81.3" + dependencies: + "@babel/runtime": ^7.25.0 + flow-enums-runtime: ^0.0.6 + checksum: 8c7f71e36d3ecf9534d69fcd972f9db8376331a3819eadaa7296b821751da6076d6d515c123a142cc1cb7ae14dc97aef165dbee71bd8078be7d130cb63a7e7e4 + languageName: node + linkType: hard + +"metro-source-map@npm:0.81.3, metro-source-map@npm:^0.81.0": + version: 0.81.3 + resolution: "metro-source-map@npm:0.81.3" + dependencies: + "@babel/traverse": ^7.25.3 + "@babel/traverse--for-generate-function-map": "npm:@babel/traverse@^7.25.3" + "@babel/types": ^7.25.2 + flow-enums-runtime: ^0.0.6 + invariant: ^2.2.4 + metro-symbolicate: 0.81.3 + nullthrows: ^1.1.1 + ob1: 0.81.3 + source-map: ^0.5.6 + vlq: ^1.0.0 + checksum: 83838e74342e034f834d24cbf83aae5ab82a420cd4f16002656ffe630515282d02dbb5e8b1163343f93c64d54b593d73a3bf2192024f40d4901f7f90a5378fc8 + languageName: node + linkType: hard + +"metro-symbolicate@npm:0.81.3": + version: 0.81.3 + resolution: "metro-symbolicate@npm:0.81.3" + dependencies: + flow-enums-runtime: ^0.0.6 + invariant: ^2.2.4 + metro-source-map: 0.81.3 + nullthrows: ^1.1.1 + source-map: ^0.5.6 + vlq: ^1.0.0 + bin: + metro-symbolicate: src/index.js + checksum: 90b48bf47294f74a91fa073345a12d2f3c8eeb018b1cb615a31f0252bd449b089cf75f34162e70c6a487f2470b53f0628a5884cc45912c2b0a201ba21d5430e8 + languageName: node + linkType: hard + +"metro-transform-plugins@npm:0.81.3": + version: 0.81.3 + resolution: "metro-transform-plugins@npm:0.81.3" + dependencies: + "@babel/core": ^7.25.2 + "@babel/generator": ^7.25.0 + "@babel/template": ^7.25.0 + "@babel/traverse": ^7.25.3 + flow-enums-runtime: ^0.0.6 + nullthrows: ^1.1.1 + checksum: 18a732d6aa14b0dd67729b845d4cbe0e8c8ace2f044b00260c2181a82cbbd45a95130699537db88fafc79530c79139bb4f319d435bfe04eeccc8ef88d6dcf9cd + languageName: node + linkType: hard + +"metro-transform-worker@npm:0.81.3": + version: 0.81.3 + resolution: "metro-transform-worker@npm:0.81.3" + dependencies: + "@babel/core": ^7.25.2 + "@babel/generator": ^7.25.0 + "@babel/parser": ^7.25.3 + "@babel/types": ^7.25.2 + flow-enums-runtime: ^0.0.6 + metro: 0.81.3 + metro-babel-transformer: 0.81.3 + metro-cache: 0.81.3 + metro-cache-key: 0.81.3 + metro-minify-terser: 0.81.3 + metro-source-map: 0.81.3 + metro-transform-plugins: 0.81.3 + nullthrows: ^1.1.1 + checksum: 698ee7fa3a2a8fea069bc4e62054c50ecd672601ca3d973217f05a293329e70fbb6fd5b4a6cd2d9f17f49ee736aeece1581035162f4de750bddcccf6ec79f1bc + languageName: node + linkType: hard + +"metro@npm:0.81.3, metro@npm:^0.81.0": + version: 0.81.3 + resolution: "metro@npm:0.81.3" + dependencies: + "@babel/code-frame": ^7.24.7 + "@babel/core": ^7.25.2 + "@babel/generator": ^7.25.0 + "@babel/parser": ^7.25.3 + "@babel/template": ^7.25.0 + "@babel/traverse": ^7.25.3 + "@babel/types": ^7.25.2 + accepts: ^1.3.7 + chalk: ^4.0.0 + ci-info: ^2.0.0 + connect: ^3.6.5 + debug: ^2.2.0 + error-stack-parser: ^2.0.6 + flow-enums-runtime: ^0.0.6 + graceful-fs: ^4.2.4 + hermes-parser: 0.25.1 + image-size: ^1.0.2 + invariant: ^2.2.4 + jest-worker: ^29.7.0 + jsc-safe-url: ^0.2.2 + lodash.throttle: ^4.1.1 + metro-babel-transformer: 0.81.3 + metro-cache: 0.81.3 + metro-cache-key: 0.81.3 + metro-config: 0.81.3 + metro-core: 0.81.3 + metro-file-map: 0.81.3 + metro-resolver: 0.81.3 + metro-runtime: 0.81.3 + metro-source-map: 0.81.3 + metro-symbolicate: 0.81.3 + metro-transform-plugins: 0.81.3 + metro-transform-worker: 0.81.3 + mime-types: ^2.1.27 + nullthrows: ^1.1.1 + serialize-error: ^2.1.0 + source-map: ^0.5.6 + throat: ^5.0.0 + ws: ^7.5.10 + yargs: ^17.6.2 + bin: + metro: src/cli.js + checksum: 3306e453bbe315fb8646fea110607ee03c556556ec5317b85e76840911455d0d7d069e189d1949f2454182a34effb7389052d53eae8f3b2f26f5f146d47574b5 + languageName: node + linkType: hard + +"micromatch@npm:^4.0.4, micromatch@npm:^4.0.8": + version: 4.0.8 + resolution: "micromatch@npm:4.0.8" + dependencies: + braces: ^3.0.3 + picomatch: ^2.3.1 + checksum: 79920eb634e6f400b464a954fcfa589c4e7c7143209488e44baf627f9affc8b1e306f41f4f0deedde97e69cb725920879462d3e750ab3bd3c1aed675bb3a8966 + languageName: node + linkType: hard + +"mime-db@npm:1.52.0": + version: 1.52.0 + resolution: "mime-db@npm:1.52.0" + checksum: 0d99a03585f8b39d68182803b12ac601d9c01abfa28ec56204fa330bc9f3d1c5e14beb049bafadb3dbdf646dfb94b87e24d4ec7b31b7279ef906a8ea9b6a513f + languageName: node + linkType: hard + +"mime-db@npm:>= 1.43.0 < 2": + version: 1.53.0 + resolution: "mime-db@npm:1.53.0" + checksum: 3fd9380bdc0b085d0b56b580e4f89ca4fc3b823722310d795c248f0806b9a80afd5d8f4347f015ad943b9ecfa7cc0b71dffa0db96fa776d01a13474821a2c7fb + languageName: node + linkType: hard + +"mime-types@npm:^2.1.27, mime-types@npm:^2.1.35, mime-types@npm:~2.1.34": + version: 2.1.35 + resolution: "mime-types@npm:2.1.35" + dependencies: + mime-db: 1.52.0 + checksum: 89a5b7f1def9f3af5dad6496c5ed50191ae4331cc5389d7c521c8ad28d5fdad2d06fd81baf38fed813dc4e46bb55c8145bb0ff406330818c9cf712fb2e9b3836 + languageName: node + linkType: hard + +"mime@npm:1.6.0": + version: 1.6.0 + resolution: "mime@npm:1.6.0" + bin: + mime: cli.js + checksum: fef25e39263e6d207580bdc629f8872a3f9772c923c7f8c7e793175cee22777bbe8bba95e5d509a40aaa292d8974514ce634ae35769faa45f22d17edda5e8557 + languageName: node + linkType: hard + +"mimic-fn@npm:^1.0.0": + version: 1.2.0 + resolution: "mimic-fn@npm:1.2.0" + checksum: 69c08205156a1f4906d9c46f9b4dc08d18a50176352e77fdeb645cedfe9f20c0b19865d465bd2dec27a5c432347f24dc07fc3695e11159d193f892834233e939 + languageName: node + linkType: hard + +"mimic-fn@npm:^2.1.0": + version: 2.1.0 + resolution: "mimic-fn@npm:2.1.0" + checksum: d2421a3444848ce7f84bd49115ddacff29c15745db73f54041edc906c14b131a38d05298dae3081667627a59b2eb1ca4b436ff2e1b80f69679522410418b478a + languageName: node + linkType: hard + +"minimatch@npm:^3.0.2, minimatch@npm:^3.0.4, minimatch@npm:^3.1.1": + version: 3.1.2 + resolution: "minimatch@npm:3.1.2" + dependencies: + brace-expansion: ^1.1.7 + checksum: c154e566406683e7bcb746e000b84d74465b3a832c45d59912b9b55cd50dee66e5c4b1e5566dba26154040e51672f9aa450a9aef0c97cfc7336b78b7afb9540a + languageName: node + linkType: hard + +"minimatch@npm:^9.0.4": + version: 9.0.5 + resolution: "minimatch@npm:9.0.5" + dependencies: + brace-expansion: ^2.0.1 + checksum: 2c035575eda1e50623c731ec6c14f65a85296268f749b9337005210bb2b34e2705f8ef1a358b188f69892286ab99dc42c8fb98a57bde55c8d81b3023c19cea28 + languageName: node + linkType: hard + +"minimist@npm:^1.2.0, minimist@npm:^1.2.6": + version: 1.2.8 + resolution: "minimist@npm:1.2.8" + checksum: 75a6d645fb122dad29c06a7597bddea977258957ed88d7a6df59b5cd3fe4a527e253e9bbf2e783e4b73657f9098b96a5fe96ab8a113655d4109108577ecf85b0 + languageName: node + linkType: hard + +"minipass-collect@npm:^2.0.1": + version: 2.0.1 + resolution: "minipass-collect@npm:2.0.1" + dependencies: + minipass: ^7.0.3 + checksum: b251bceea62090f67a6cced7a446a36f4cd61ee2d5cea9aee7fff79ba8030e416327a1c5aa2908dc22629d06214b46d88fdab8c51ac76bacbf5703851b5ad342 + languageName: node + linkType: hard + +"minipass-fetch@npm:^4.0.0": + version: 4.0.1 + resolution: "minipass-fetch@npm:4.0.1" + dependencies: + encoding: ^0.1.13 + minipass: ^7.0.3 + minipass-sized: ^1.0.3 + minizlib: ^3.0.1 + dependenciesMeta: + encoding: + optional: true + checksum: 3dfca705ce887ca9ff14d73e8d8593996dea1a1ecd8101fdbb9c10549d1f9670bc8fb66ad0192769ead4c2dc01b4f9ca1cf567ded365adff17827a303b948140 + languageName: node + linkType: hard + +"minipass-flush@npm:^1.0.5": + version: 1.0.5 + resolution: "minipass-flush@npm:1.0.5" + dependencies: + minipass: ^3.0.0 + checksum: 56269a0b22bad756a08a94b1ffc36b7c9c5de0735a4dd1ab2b06c066d795cfd1f0ac44a0fcae13eece5589b908ecddc867f04c745c7009be0b566421ea0944cf + languageName: node + linkType: hard + +"minipass-pipeline@npm:^1.2.4": + version: 1.2.4 + resolution: "minipass-pipeline@npm:1.2.4" + dependencies: + minipass: ^3.0.0 + checksum: b14240dac0d29823c3d5911c286069e36d0b81173d7bdf07a7e4a91ecdef92cdff4baaf31ea3746f1c61e0957f652e641223970870e2353593f382112257971b + languageName: node + linkType: hard + +"minipass-sized@npm:^1.0.3": + version: 1.0.3 + resolution: "minipass-sized@npm:1.0.3" + dependencies: + minipass: ^3.0.0 + checksum: 79076749fcacf21b5d16dd596d32c3b6bf4d6e62abb43868fac21674078505c8b15eaca4e47ed844985a4514854f917d78f588fcd029693709417d8f98b2bd60 + languageName: node + linkType: hard + +"minipass@npm:^3.0.0": + version: 3.3.6 + resolution: "minipass@npm:3.3.6" + dependencies: + yallist: ^4.0.0 + checksum: a30d083c8054cee83cdcdc97f97e4641a3f58ae743970457b1489ce38ee1167b3aaf7d815cd39ec7a99b9c40397fd4f686e83750e73e652b21cb516f6d845e48 + languageName: node + linkType: hard + +"minipass@npm:^5.0.0": + version: 5.0.0 + resolution: "minipass@npm:5.0.0" + checksum: 425dab288738853fded43da3314a0b5c035844d6f3097a8e3b5b29b328da8f3c1af6fc70618b32c29ff906284cf6406b6841376f21caaadd0793c1d5a6a620ea + languageName: node + linkType: hard + +"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4, minipass@npm:^7.1.2": + version: 7.1.2 + resolution: "minipass@npm:7.1.2" + checksum: 2bfd325b95c555f2b4d2814d49325691c7bee937d753814861b0b49d5edcda55cbbf22b6b6a60bb91eddac8668771f03c5ff647dcd9d0f798e9548b9cdc46ee3 + languageName: node + linkType: hard + +"minizlib@npm:^2.1.1": + version: 2.1.2 + resolution: "minizlib@npm:2.1.2" + dependencies: + minipass: ^3.0.0 + yallist: ^4.0.0 + checksum: f1fdeac0b07cf8f30fcf12f4b586795b97be856edea22b5e9072707be51fc95d41487faec3f265b42973a304fe3a64acd91a44a3826a963e37b37bafde0212c3 + languageName: node + linkType: hard + +"minizlib@npm:^3.0.1": + version: 3.0.1 + resolution: "minizlib@npm:3.0.1" + dependencies: + minipass: ^7.0.4 + rimraf: ^5.0.5 + checksum: da0a53899252380475240c587e52c824f8998d9720982ba5c4693c68e89230718884a209858c156c6e08d51aad35700a3589987e540593c36f6713fe30cd7338 + languageName: node + linkType: hard + +"mkdirp@npm:^0.5.1": + version: 0.5.6 + resolution: "mkdirp@npm:0.5.6" + dependencies: + minimist: ^1.2.6 + bin: + mkdirp: bin/cmd.js + checksum: 0c91b721bb12c3f9af4b77ebf73604baf350e64d80df91754dc509491ae93bf238581e59c7188360cec7cb62fc4100959245a42cfe01834efedc5e9d068376c2 + languageName: node + linkType: hard + +"mkdirp@npm:^1.0.3, mkdirp@npm:^1.0.4": + version: 1.0.4 + resolution: "mkdirp@npm:1.0.4" + bin: + mkdirp: bin/cmd.js + checksum: a96865108c6c3b1b8e1d5e9f11843de1e077e57737602de1b82030815f311be11f96f09cce59bd5b903d0b29834733e5313f9301e3ed6d6f6fba2eae0df4298f + languageName: node + linkType: hard + +"mkdirp@npm:^3.0.1": + version: 3.0.1 + resolution: "mkdirp@npm:3.0.1" + bin: + mkdirp: dist/cjs/src/bin.js + checksum: 972deb188e8fb55547f1e58d66bd6b4a3623bf0c7137802582602d73e6480c1c2268dcbafbfb1be466e00cc7e56ac514d7fd9334b7cf33e3e2ab547c16f83a8d + languageName: node + linkType: hard + +"ms@npm:2.0.0": + version: 2.0.0 + resolution: "ms@npm:2.0.0" + checksum: 0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4 + languageName: node + linkType: hard + +"ms@npm:2.1.3, ms@npm:^2.1.1, ms@npm:^2.1.3": + version: 2.1.3 + resolution: "ms@npm:2.1.3" + checksum: aa92de608021b242401676e35cfa5aa42dd70cbdc082b916da7fb925c542173e36bce97ea3e804923fe92c0ad991434e4a38327e15a1b5b5f945d66df615ae6d + languageName: node + linkType: hard + +"mz@npm:^2.7.0": + version: 2.7.0 + resolution: "mz@npm:2.7.0" + dependencies: + any-promise: ^1.0.0 + object-assign: ^4.0.1 + thenify-all: ^1.0.0 + checksum: 8427de0ece99a07e9faed3c0c6778820d7543e3776f9a84d22cf0ec0a8eb65f6e9aee9c9d353ff9a105ff62d33a9463c6ca638974cc652ee8140cd1e35951c87 + languageName: node + linkType: hard + +"nanoid@npm:^3.3.7": + version: 3.3.8 + resolution: "nanoid@npm:3.3.8" + bin: + nanoid: bin/nanoid.cjs + checksum: dfe0adbc0c77e9655b550c333075f51bb28cfc7568afbf3237249904f9c86c9aaaed1f113f0fddddba75673ee31c758c30c43d4414f014a52a7a626efc5958c9 + languageName: node + linkType: hard + +"negotiator@npm:0.6.3": + version: 0.6.3 + resolution: "negotiator@npm:0.6.3" + checksum: b8ffeb1e262eff7968fc90a2b6767b04cfd9842582a9d0ece0af7049537266e7b2506dfb1d107a32f06dd849ab2aea834d5830f7f4d0e5cb7d36e1ae55d021d9 + languageName: node + linkType: hard + +"negotiator@npm:^1.0.0": + version: 1.0.0 + resolution: "negotiator@npm:1.0.0" + checksum: 20ebfe79b2d2e7cf9cbc8239a72662b584f71164096e6e8896c8325055497c96f6b80cd22c258e8a2f2aa382a787795ec3ee8b37b422a302c7d4381b0d5ecfbb + languageName: node + linkType: hard + +"negotiator@npm:~0.6.4": + version: 0.6.4 + resolution: "negotiator@npm:0.6.4" + checksum: 7ded10aa02a0707d1d12a9973fdb5954f98547ca7beb60e31cb3a403cc6e8f11138db7a3b0128425cf836fc85d145ec4ce983b2bdf83dca436af879c2d683510 + languageName: node + linkType: hard + +"neo-async@npm:^2.5.0": + version: 2.6.2 + resolution: "neo-async@npm:2.6.2" + checksum: deac9f8d00eda7b2e5cd1b2549e26e10a0faa70adaa6fdadca701cc55f49ee9018e427f424bac0c790b7c7e2d3068db97f3093f1093975f2acb8f8818b936ed9 + languageName: node + linkType: hard + +"nested-error-stacks@npm:~2.0.1": + version: 2.0.1 + resolution: "nested-error-stacks@npm:2.0.1" + checksum: 8430d7d80ad69b1add2992ee2992a363db6c1a26a54740963bc99a004c5acb1d2a67049397062eab2caa3a312b4da89a0b85de3bdf82d7d472a6baa166311fe6 + languageName: node + linkType: hard + +"nice-try@npm:^1.0.4": + version: 1.0.5 + resolution: "nice-try@npm:1.0.5" + checksum: 0b4af3b5bb5d86c289f7a026303d192a7eb4417231fe47245c460baeabae7277bcd8fd9c728fb6bd62c30b3e15cd6620373e2cf33353b095d8b403d3e8a15aff + languageName: node + linkType: hard + +"no-case@npm:^3.0.4": + version: 3.0.4 + resolution: "no-case@npm:3.0.4" + dependencies: + lower-case: ^2.0.2 + tslib: ^2.0.3 + checksum: 0b2ebc113dfcf737d48dde49cfebf3ad2d82a8c3188e7100c6f375e30eafbef9e9124aadc3becef237b042fd5eb0aad2fd78669c20972d045bbe7fea8ba0be5c + languageName: node + linkType: hard + +"node-dir@npm:^0.1.17": + version: 0.1.17 + resolution: "node-dir@npm:0.1.17" + dependencies: + minimatch: ^3.0.2 + checksum: 29de9560e52cdac8d3f794d38d782f6799e13d4d11aaf96d3da8c28458e1c5e33bb5f8edfb42dc34172ec5516c50c5b8850c9e1526542616757a969267263328 + languageName: node + linkType: hard + +"node-fetch@npm:^2.2.0, node-fetch@npm:^2.6.1, node-fetch@npm:^2.7.0": + version: 2.7.0 + resolution: "node-fetch@npm:2.7.0" + dependencies: + whatwg-url: ^5.0.0 + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + checksum: d76d2f5edb451a3f05b15115ec89fc6be39de37c6089f1b6368df03b91e1633fd379a7e01b7ab05089a25034b2023d959b47e59759cb38d88341b2459e89d6e5 + languageName: node + linkType: hard + +"node-forge@npm:^1, node-forge@npm:^1.2.1, node-forge@npm:^1.3.1": + version: 1.3.1 + resolution: "node-forge@npm:1.3.1" + checksum: 08fb072d3d670599c89a1704b3e9c649ff1b998256737f0e06fbd1a5bf41cae4457ccaee32d95052d80bbafd9ffe01284e078c8071f0267dc9744e51c5ed42a9 + languageName: node + linkType: hard + +"node-gyp@npm:latest": + version: 11.1.0 + resolution: "node-gyp@npm:11.1.0" + dependencies: + env-paths: ^2.2.0 + exponential-backoff: ^3.1.1 + glob: ^10.3.10 + graceful-fs: ^4.2.6 + make-fetch-happen: ^14.0.3 + nopt: ^8.0.0 + proc-log: ^5.0.0 + semver: ^7.3.5 + tar: ^7.4.3 + which: ^5.0.0 + bin: + node-gyp: bin/node-gyp.js + checksum: b196da39a7a45f302d6e03cfdb579eeecbfffa1ab3796de45652c2c0dcbf46b83fde715b054e4d00aa53da5f33033ac5791e20cbb7cc11267dac4f8975ef276c + languageName: node + linkType: hard + +"node-int64@npm:^0.4.0": + version: 0.4.0 + resolution: "node-int64@npm:0.4.0" + checksum: d0b30b1ee6d961851c60d5eaa745d30b5c95d94bc0e74b81e5292f7c42a49e3af87f1eb9e89f59456f80645d679202537de751b7d72e9e40ceea40c5e449057e + languageName: node + linkType: hard + +"node-releases@npm:^2.0.19": + version: 2.0.19 + resolution: "node-releases@npm:2.0.19" + checksum: 917dbced519f48c6289a44830a0ca6dc944c3ee9243c468ebd8515a41c97c8b2c256edb7f3f750416bc37952cc9608684e6483c7b6c6f39f6bd8d86c52cfe658 + languageName: node + linkType: hard + +"nopt@npm:^8.0.0": + version: 8.1.0 + resolution: "nopt@npm:8.1.0" + dependencies: + abbrev: ^3.0.0 + bin: + nopt: bin/nopt.js + checksum: 49cfd3eb6f565e292bf61f2ff1373a457238804d5a5a63a8d786c923007498cba89f3648e3b952bc10203e3e7285752abf5b14eaf012edb821e84f24e881a92a + languageName: node + linkType: hard + +"normalize-path@npm:^3.0.0": + version: 3.0.0 + resolution: "normalize-path@npm:3.0.0" + checksum: 88eeb4da891e10b1318c4b2476b6e2ecbeb5ff97d946815ffea7794c31a89017c70d7f34b3c2ebf23ef4e9fc9fb99f7dffe36da22011b5b5c6ffa34f4873ec20 + languageName: node + linkType: hard + +"npm-package-arg@npm:^11.0.0": + version: 11.0.3 + resolution: "npm-package-arg@npm:11.0.3" + dependencies: + hosted-git-info: ^7.0.0 + proc-log: ^4.0.0 + semver: ^7.3.5 + validate-npm-package-name: ^5.0.0 + checksum: cc6f22c39201aa14dcceeddb81bfbf7fa0484f94bcd2b3ad038e18afec5167c843cdde90c897f6034dc368faa0100c1eeee6e3f436a89e0af32ba932af4a8c28 + languageName: node + linkType: hard + +"npm-run-path@npm:^2.0.0": + version: 2.0.2 + resolution: "npm-run-path@npm:2.0.2" + dependencies: + path-key: ^2.0.0 + checksum: acd5ad81648ba4588ba5a8effb1d98d2b339d31be16826a118d50f182a134ac523172101b82eab1d01cb4c2ba358e857d54cfafd8163a1ffe7bd52100b741125 + languageName: node + linkType: hard + +"npm-run-path@npm:^4.0.1": + version: 4.0.1 + resolution: "npm-run-path@npm:4.0.1" + dependencies: + path-key: ^3.0.0 + checksum: 5374c0cea4b0bbfdfae62da7bbdf1e1558d338335f4cacf2515c282ff358ff27b2ecb91ffa5330a8b14390ac66a1e146e10700440c1ab868208430f56b5f4d23 + languageName: node + linkType: hard + +"nth-check@npm:^2.0.1": + version: 2.1.1 + resolution: "nth-check@npm:2.1.1" + dependencies: + boolbase: ^1.0.0 + checksum: 5afc3dafcd1573b08877ca8e6148c52abd565f1d06b1eb08caf982e3fa289a82f2cae697ffb55b5021e146d60443f1590a5d6b944844e944714a5b549675bcd3 + languageName: node + linkType: hard + +"nullthrows@npm:^1.1.1": + version: 1.1.1 + resolution: "nullthrows@npm:1.1.1" + checksum: 10806b92121253eb1b08ecf707d92480f5331ba8ae5b23fa3eb0548ad24196eb797ed47606153006568a5733ea9e528a3579f21421f7828e09e7756f4bdd386f + languageName: node + linkType: hard + +"ob1@npm:0.81.3": + version: 0.81.3 + resolution: "ob1@npm:0.81.3" + dependencies: + flow-enums-runtime: ^0.0.6 + checksum: 562726c5bd82e002fd039f1a94df49424cf4e3ec24183448163b0043f064497bb06dc6cbb4b306f19868061dcfbcb0e3426afcd6acada76a3ff1b2d07c7d2a08 + languageName: node + linkType: hard + +"object-assign@npm:^4.0.1, object-assign@npm:^4.1.0, object-assign@npm:^4.1.1": + version: 4.1.1 + resolution: "object-assign@npm:4.1.1" + checksum: fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f + languageName: node + linkType: hard + +"on-finished@npm:2.4.1": + version: 2.4.1 + resolution: "on-finished@npm:2.4.1" + dependencies: + ee-first: 1.1.1 + checksum: d20929a25e7f0bb62f937a425b5edeb4e4cde0540d77ba146ec9357f00b0d497cdb3b9b05b9c8e46222407d1548d08166bff69cc56dfa55ba0e4469228920ff0 + languageName: node + linkType: hard + +"on-finished@npm:~2.3.0": + version: 2.3.0 + resolution: "on-finished@npm:2.3.0" + dependencies: + ee-first: 1.1.1 + checksum: 1db595bd963b0124d6fa261d18320422407b8f01dc65863840f3ddaaf7bcad5b28ff6847286703ca53f4ec19595bd67a2f1253db79fc4094911ec6aa8df1671b + languageName: node + linkType: hard + +"on-headers@npm:~1.0.2": + version: 1.0.2 + resolution: "on-headers@npm:1.0.2" + checksum: 2bf13467215d1e540a62a75021e8b318a6cfc5d4fc53af8e8f84ad98dbcea02d506c6d24180cd62e1d769c44721ba542f3154effc1f7579a8288c9f7873ed8e5 + languageName: node + linkType: hard + +"once@npm:^1.3.0, once@npm:^1.3.1, once@npm:^1.4.0": + version: 1.4.0 + resolution: "once@npm:1.4.0" + dependencies: + wrappy: 1 + checksum: cd0a88501333edd640d95f0d2700fbde6bff20b3d4d9bdc521bdd31af0656b5706570d6c6afe532045a20bb8dc0849f8332d6f2a416e0ba6d3d3b98806c7db68 + languageName: node + linkType: hard + +"onetime@npm:^2.0.0": + version: 2.0.1 + resolution: "onetime@npm:2.0.1" + dependencies: + mimic-fn: ^1.0.0 + checksum: bb44015ac7a525d0fb43b029a583d4ad359834632b4424ca209b438aacf6d669dda81b5edfbdb42c22636e607b276ba5589f46694a729e3bc27948ce26f4cc1a + languageName: node + linkType: hard + +"onetime@npm:^5.1.2": + version: 5.1.2 + resolution: "onetime@npm:5.1.2" + dependencies: + mimic-fn: ^2.1.0 + checksum: 2478859ef817fc5d4e9c2f9e5728512ddd1dbc9fb7829ad263765bb6d3b91ce699d6e2332eef6b7dff183c2f490bd3349f1666427eaba4469fba0ac38dfd0d34 + languageName: node + linkType: hard + +"open@npm:^7.0.3": + version: 7.4.2 + resolution: "open@npm:7.4.2" + dependencies: + is-docker: ^2.0.0 + is-wsl: ^2.1.1 + checksum: 3333900ec0e420d64c23b831bc3467e57031461d843c801f569b2204a1acc3cd7b3ec3c7897afc9dde86491dfa289708eb92bba164093d8bd88fb2c231843c91 + languageName: node + linkType: hard + +"open@npm:^8.0.4": + version: 8.4.2 + resolution: "open@npm:8.4.2" + dependencies: + define-lazy-prop: ^2.0.0 + is-docker: ^2.1.1 + is-wsl: ^2.2.0 + checksum: 6388bfff21b40cb9bd8f913f9130d107f2ed4724ea81a8fd29798ee322b361ca31fa2cdfb491a5c31e43a3996cfe9566741238c7a741ada8d7af1cb78d85cf26 + languageName: node + linkType: hard + +"ora@npm:^3.4.0": + version: 3.4.0 + resolution: "ora@npm:3.4.0" + dependencies: + chalk: ^2.4.2 + cli-cursor: ^2.1.0 + cli-spinners: ^2.0.0 + log-symbols: ^2.2.0 + strip-ansi: ^5.2.0 + wcwidth: ^1.0.1 + checksum: f1f8e7f290b766276dcd19ddf2159a1971b1ec37eec4a5556b8f5e4afbe513a965ed65c183d38956724263b6a20989b3d8fb71b95ac4a2d6a01db2f1ed8899e4 + languageName: node + linkType: hard + +"os-tmpdir@npm:~1.0.2": + version: 1.0.2 + resolution: "os-tmpdir@npm:1.0.2" + checksum: 5666560f7b9f10182548bf7013883265be33620b1c1b4a4d405c25be2636f970c5488ff3e6c48de75b55d02bde037249fe5dbfbb4c0fb7714953d56aed062e6d + languageName: node + linkType: hard + +"p-finally@npm:^1.0.0": + version: 1.0.0 + resolution: "p-finally@npm:1.0.0" + checksum: 93a654c53dc805dd5b5891bab16eb0ea46db8f66c4bfd99336ae929323b1af2b70a8b0654f8f1eae924b2b73d037031366d645f1fd18b3d30cbd15950cc4b1d4 + languageName: node + linkType: hard + +"p-limit@npm:^2.0.0, p-limit@npm:^2.2.0": + version: 2.3.0 + resolution: "p-limit@npm:2.3.0" + dependencies: + p-try: ^2.0.0 + checksum: 84ff17f1a38126c3314e91ecfe56aecbf36430940e2873dadaa773ffe072dc23b7af8e46d4b6485d302a11673fe94c6b67ca2cfbb60c989848b02100d0594ac1 + languageName: node + linkType: hard + +"p-limit@npm:^3.0.2, p-limit@npm:^3.1.0": + version: 3.1.0 + resolution: "p-limit@npm:3.1.0" + dependencies: + yocto-queue: ^0.1.0 + checksum: 7c3690c4dbf62ef625671e20b7bdf1cbc9534e83352a2780f165b0d3ceba21907e77ad63401708145ca4e25bfc51636588d89a8c0aeb715e6c37d1c066430360 + languageName: node + linkType: hard + +"p-locate@npm:^3.0.0": + version: 3.0.0 + resolution: "p-locate@npm:3.0.0" + dependencies: + p-limit: ^2.0.0 + checksum: 83991734a9854a05fe9dbb29f707ea8a0599391f52daac32b86f08e21415e857ffa60f0e120bfe7ce0cc4faf9274a50239c7895fc0d0579d08411e513b83a4ae + languageName: node + linkType: hard + +"p-locate@npm:^4.1.0": + version: 4.1.0 + resolution: "p-locate@npm:4.1.0" + dependencies: + p-limit: ^2.2.0 + checksum: 513bd14a455f5da4ebfcb819ef706c54adb09097703de6aeaa5d26fe5ea16df92b48d1ac45e01e3944ce1e6aa2a66f7f8894742b8c9d6e276e16cd2049a2b870 + languageName: node + linkType: hard + +"p-locate@npm:^5.0.0": + version: 5.0.0 + resolution: "p-locate@npm:5.0.0" + dependencies: + p-limit: ^3.0.2 + checksum: 1623088f36cf1cbca58e9b61c4e62bf0c60a07af5ae1ca99a720837356b5b6c5ba3eb1b2127e47a06865fee59dd0453cad7cc844cda9d5a62ac1a5a51b7c86d3 + languageName: node + linkType: hard + +"p-map@npm:^4.0.0": + version: 4.0.0 + resolution: "p-map@npm:4.0.0" + dependencies: + aggregate-error: ^3.0.0 + checksum: cb0ab21ec0f32ddffd31dfc250e3afa61e103ef43d957cc45497afe37513634589316de4eb88abdfd969fe6410c22c0b93ab24328833b8eb1ccc087fc0442a1c + languageName: node + linkType: hard + +"p-map@npm:^7.0.2": + version: 7.0.3 + resolution: "p-map@npm:7.0.3" + checksum: 8c92d533acf82f0d12f7e196edccff773f384098bbb048acdd55a08778ce4fc8889d8f1bde72969487bd96f9c63212698d79744c20bedfce36c5b00b46d369f8 + languageName: node + linkType: hard + +"p-try@npm:^2.0.0": + version: 2.2.0 + resolution: "p-try@npm:2.2.0" + checksum: f8a8e9a7693659383f06aec604ad5ead237c7a261c18048a6e1b5b85a5f8a067e469aa24f5bc009b991ea3b058a87f5065ef4176793a200d4917349881216cae + languageName: node + linkType: hard + +"package-json-from-dist@npm:^1.0.0": + version: 1.0.1 + resolution: "package-json-from-dist@npm:1.0.1" + checksum: 58ee9538f2f762988433da00e26acc788036914d57c71c246bf0be1b60cdbd77dd60b6a3e1a30465f0b248aeb80079e0b34cb6050b1dfa18c06953bb1cbc7602 + languageName: node + linkType: hard + +"parent-module@npm:^1.0.0": + version: 1.0.1 + resolution: "parent-module@npm:1.0.1" + dependencies: + callsites: ^3.0.0 + checksum: 6ba8b255145cae9470cf5551eb74be2d22281587af787a2626683a6c20fbb464978784661478dd2a3f1dad74d1e802d403e1b03c1a31fab310259eec8ac560ff + languageName: node + linkType: hard + +"parse-json@npm:^4.0.0": + version: 4.0.0 + resolution: "parse-json@npm:4.0.0" + dependencies: + error-ex: ^1.3.1 + json-parse-better-errors: ^1.0.1 + checksum: 0fe227d410a61090c247e34fa210552b834613c006c2c64d9a05cfe9e89cf8b4246d1246b1a99524b53b313e9ac024438d0680f67e33eaed7e6f38db64cfe7b5 + languageName: node + linkType: hard + +"parse-json@npm:^5.2.0": + version: 5.2.0 + resolution: "parse-json@npm:5.2.0" + dependencies: + "@babel/code-frame": ^7.0.0 + error-ex: ^1.3.1 + json-parse-even-better-errors: ^2.3.0 + lines-and-columns: ^1.1.6 + checksum: 62085b17d64da57f40f6afc2ac1f4d95def18c4323577e1eced571db75d9ab59b297d1d10582920f84b15985cbfc6b6d450ccbf317644cfa176f3ed982ad87e2 + languageName: node + linkType: hard + +"parse-png@npm:^2.1.0": + version: 2.1.0 + resolution: "parse-png@npm:2.1.0" + dependencies: + pngjs: ^3.3.0 + checksum: 0c6b6c42c8830cd16f6f9e9aedafd53111c0ad2ff350ba79c629996887567558f5639ad0c95764f96f7acd1f9ff63d4ac73737e80efa3911a6de9839ee520c96 + languageName: node + linkType: hard + +"parseurl@npm:~1.3.3": + version: 1.3.3 + resolution: "parseurl@npm:1.3.3" + checksum: 407cee8e0a3a4c5cd472559bca8b6a45b82c124e9a4703302326e9ab60fc1081442ada4e02628efef1eb16197ddc7f8822f5a91fd7d7c86b51f530aedb17dfa2 + languageName: node + linkType: hard + +"password-prompt@npm:^1.0.4": + version: 1.1.3 + resolution: "password-prompt@npm:1.1.3" + dependencies: + ansi-escapes: ^4.3.2 + cross-spawn: ^7.0.3 + checksum: 9a5fdbd7360db896809704c141acfe9258450a9982c4c177b82a1e6c69d204800cdab6064abac6736bd7d31142c80108deedf4484146594747cb3ce776816e97 + languageName: node + linkType: hard + +"path-dirname@npm:^1.0.2": + version: 1.0.2 + resolution: "path-dirname@npm:1.0.2" + checksum: 0d2f6604ae05a252a0025318685f290e2764ecf9c5436f203cdacfc8c0b17c24cdedaa449d766beb94ab88cc7fc70a09ec21e7933f31abc2b719180883e5e33f + languageName: node + linkType: hard + +"path-exists@npm:^3.0.0": + version: 3.0.0 + resolution: "path-exists@npm:3.0.0" + checksum: 96e92643aa34b4b28d0de1cd2eba52a1c5313a90c6542d03f62750d82480e20bfa62bc865d5cfc6165f5fcd5aeb0851043c40a39be5989646f223300021bae0a + languageName: node + linkType: hard + +"path-exists@npm:^4.0.0": + version: 4.0.0 + resolution: "path-exists@npm:4.0.0" + checksum: 505807199dfb7c50737b057dd8d351b82c033029ab94cb10a657609e00c1bc53b951cfdbccab8de04c5584d5eff31128ce6afd3db79281874a5ef2adbba55ed1 + languageName: node + linkType: hard + +"path-is-absolute@npm:^1.0.0": + version: 1.0.1 + resolution: "path-is-absolute@npm:1.0.1" + checksum: 060840f92cf8effa293bcc1bea81281bd7d363731d214cbe5c227df207c34cd727430f70c6037b5159c8a870b9157cba65e775446b0ab06fd5ecc7e54615a3b8 + languageName: node + linkType: hard + +"path-key@npm:^2.0.0, path-key@npm:^2.0.1": + version: 2.0.1 + resolution: "path-key@npm:2.0.1" + checksum: f7ab0ad42fe3fb8c7f11d0c4f849871e28fbd8e1add65c370e422512fc5887097b9cf34d09c1747d45c942a8c1e26468d6356e2df3f740bf177ab8ca7301ebfd + languageName: node + linkType: hard + +"path-key@npm:^3.0.0, path-key@npm:^3.1.0": + version: 3.1.1 + resolution: "path-key@npm:3.1.1" + checksum: 55cd7a9dd4b343412a8386a743f9c746ef196e57c823d90ca3ab917f90ab9f13dd0ded27252ba49dbdfcab2b091d998bc446f6220cd3cea65db407502a740020 + languageName: node + linkType: hard + +"path-parse@npm:^1.0.5, path-parse@npm:^1.0.7": + version: 1.0.7 + resolution: "path-parse@npm:1.0.7" + checksum: 49abf3d81115642938a8700ec580da6e830dde670be21893c62f4e10bd7dd4c3742ddc603fe24f898cba7eb0c6bc1777f8d9ac14185d34540c6d4d80cd9cae8a + languageName: node + linkType: hard + +"path-scurry@npm:^1.11.1": + version: 1.11.1 + resolution: "path-scurry@npm:1.11.1" + dependencies: + lru-cache: ^10.2.0 + minipass: ^5.0.0 || ^6.0.2 || ^7.0.0 + checksum: 890d5abcd593a7912dcce7cf7c6bf7a0b5648e3dee6caf0712c126ca0a65c7f3d7b9d769072a4d1baf370f61ce493ab5b038d59988688e0c5f3f646ee3c69023 + languageName: node + linkType: hard + +"path-type@npm:^4.0.0": + version: 4.0.0 + resolution: "path-type@npm:4.0.0" + checksum: 5b1e2daa247062061325b8fdbfd1fb56dde0a448fb1455453276ea18c60685bdad23a445dc148cf87bc216be1573357509b7d4060494a6fd768c7efad833ee45 + languageName: node + linkType: hard + +"picocolors@npm:^1.0.0, picocolors@npm:^1.1.1": + version: 1.1.1 + resolution: "picocolors@npm:1.1.1" + checksum: e1cf46bf84886c79055fdfa9dcb3e4711ad259949e3565154b004b260cd356c5d54b31a1437ce9782624bf766272fe6b0154f5f0c744fb7af5d454d2b60db045 + languageName: node + linkType: hard + +"picomatch@npm:^2.0.4, picomatch@npm:^2.2.3, picomatch@npm:^2.3.1": + version: 2.3.1 + resolution: "picomatch@npm:2.3.1" + checksum: 050c865ce81119c4822c45d3c84f1ced46f93a0126febae20737bd05ca20589c564d6e9226977df859ed5e03dc73f02584a2b0faad36e896936238238b0446cf + languageName: node + linkType: hard + +"picomatch@npm:^3.0.1": + version: 3.0.1 + resolution: "picomatch@npm:3.0.1" + checksum: b7fe18174bcc05bbf0ea09cc85623ae395676b3e6bc25636d4c20db79a948586237e429905453bf1ba385bc7a7aa5b56f1b351680e650d2b5c305ceb98dfc914 + languageName: node + linkType: hard + +"pify@npm:^4.0.1": + version: 4.0.1 + resolution: "pify@npm:4.0.1" + checksum: 9c4e34278cb09987685fa5ef81499c82546c033713518f6441778fbec623fc708777fe8ac633097c72d88470d5963094076c7305cafc7ad340aae27cfacd856b + languageName: node + linkType: hard + +"pirates@npm:^4.0.1, pirates@npm:^4.0.4, pirates@npm:^4.0.6": + version: 4.0.6 + resolution: "pirates@npm:4.0.6" + checksum: 46a65fefaf19c6f57460388a5af9ab81e3d7fd0e7bc44ca59d753cb5c4d0df97c6c6e583674869762101836d68675f027d60f841c105d72734df9dfca97cbcc6 + languageName: node + linkType: hard + +"pkg-dir@npm:^3.0.0": + version: 3.0.0 + resolution: "pkg-dir@npm:3.0.0" + dependencies: + find-up: ^3.0.0 + checksum: 70c9476ffefc77552cc6b1880176b71ad70bfac4f367604b2b04efd19337309a4eec985e94823271c7c0e83946fa5aeb18cd360d15d10a5d7533e19344bfa808 + languageName: node + linkType: hard + +"plist@npm:^3.0.5": + version: 3.1.0 + resolution: "plist@npm:3.1.0" + dependencies: + "@xmldom/xmldom": ^0.8.8 + base64-js: ^1.5.1 + xmlbuilder: ^15.1.1 + checksum: c8ea013da8646d4c50dff82f9be39488054621cc229957621bb00add42b5d4ce3657cf58d4b10c50f7dea1a81118f825838f838baeb4e6f17fab453ecf91d424 + languageName: node + linkType: hard + +"pngjs@npm:^3.3.0": + version: 3.4.0 + resolution: "pngjs@npm:3.4.0" + checksum: 8bd40bd698abd16b72c97b85cb858c80894fbedc76277ce72a784aa441e14795d45d9856e97333ca469b34b67528860ffc8a7317ca6beea349b645366df00bcd + languageName: node + linkType: hard + +"postcss@npm:~8.4.32": + version: 8.4.49 + resolution: "postcss@npm:8.4.49" + dependencies: + nanoid: ^3.3.7 + picocolors: ^1.1.1 + source-map-js: ^1.2.1 + checksum: eb5d6cbdca24f50399aafa5d2bea489e4caee4c563ea1edd5a2485bc5f84e9ceef3febf170272bc83a99c31d23a316ad179213e853f34c2a7a8ffa534559d63a + languageName: node + linkType: hard + +"pretty-bytes@npm:^5.6.0": + version: 5.6.0 + resolution: "pretty-bytes@npm:5.6.0" + checksum: 9c082500d1e93434b5b291bd651662936b8bd6204ec9fa17d563116a192d6d86b98f6d328526b4e8d783c07d5499e2614a807520249692da9ec81564b2f439cd + languageName: node + linkType: hard + +"pretty-format@npm:^29.7.0": + version: 29.7.0 + resolution: "pretty-format@npm:29.7.0" + dependencies: + "@jest/schemas": ^29.6.3 + ansi-styles: ^5.0.0 + react-is: ^18.0.0 + checksum: 032c1602383e71e9c0c02a01bbd25d6759d60e9c7cf21937dde8357aa753da348fcec5def5d1002c9678a8524d5fe099ad98861286550ef44de8808cc61e43b6 + languageName: node + linkType: hard + +"proc-log@npm:^4.0.0": + version: 4.2.0 + resolution: "proc-log@npm:4.2.0" + checksum: 98f6cd012d54b5334144c5255ecb941ee171744f45fca8b43b58ae5a0c1af07352475f481cadd9848e7f0250376ee584f6aa0951a856ff8f021bdfbff4eb33fc + languageName: node + linkType: hard + +"proc-log@npm:^5.0.0": + version: 5.0.0 + resolution: "proc-log@npm:5.0.0" + checksum: c78b26ecef6d5cce4a7489a1e9923d7b4b1679028c8654aef0463b27f4a90b0946cd598f55799da602895c52feb085ec76381d007ab8dcceebd40b89c2f9dfe0 + languageName: node + linkType: hard + +"progress@npm:^2.0.3": + version: 2.0.3 + resolution: "progress@npm:2.0.3" + checksum: f67403fe7b34912148d9252cb7481266a354bd99ce82c835f79070643bb3c6583d10dbcfda4d41e04bbc1d8437e9af0fb1e1f2135727878f5308682a579429b7 + languageName: node + linkType: hard + +"promise-retry@npm:^2.0.1": + version: 2.0.1 + resolution: "promise-retry@npm:2.0.1" + dependencies: + err-code: ^2.0.2 + retry: ^0.12.0 + checksum: f96a3f6d90b92b568a26f71e966cbbc0f63ab85ea6ff6c81284dc869b41510e6cdef99b6b65f9030f0db422bf7c96652a3fff9f2e8fb4a0f069d8f4430359429 + languageName: node + linkType: hard + +"promise@npm:^7.1.1": + version: 7.3.1 + resolution: "promise@npm:7.3.1" + dependencies: + asap: ~2.0.3 + checksum: 475bb069130179fbd27ed2ab45f26d8862376a137a57314cf53310bdd85cc986a826fd585829be97ebc0aaf10e9d8e68be1bfe5a4a0364144b1f9eedfa940cf1 + languageName: node + linkType: hard + +"promise@npm:^8.3.0": + version: 8.3.0 + resolution: "promise@npm:8.3.0" + dependencies: + asap: ~2.0.6 + checksum: a69f0ddbddf78ffc529cffee7ad950d307347615970564b17988ce43fbe767af5c738a9439660b24a9a8cbea106c0dcbb6c2b20e23b7e96a8e89e5c2679e94d5 + languageName: node + linkType: hard + +"prompts@npm:^2.3.2": + version: 2.4.2 + resolution: "prompts@npm:2.4.2" + dependencies: + kleur: ^3.0.3 + sisteransi: ^1.0.5 + checksum: d8fd1fe63820be2412c13bfc5d0a01909acc1f0367e32396962e737cb2fc52d004f3302475d5ce7d18a1e8a79985f93ff04ee03007d091029c3f9104bffc007d + languageName: node + linkType: hard + +"prop-types@npm:^15.8.1": + version: 15.8.1 + resolution: "prop-types@npm:15.8.1" + dependencies: + loose-envify: ^1.4.0 + object-assign: ^4.1.1 + react-is: ^16.13.1 + checksum: c056d3f1c057cb7ff8344c645450e14f088a915d078dcda795041765047fa080d38e5d626560ccaac94a4e16e3aa15f3557c1a9a8d1174530955e992c675e459 + languageName: node + linkType: hard + +"pump@npm:^3.0.0": + version: 3.0.2 + resolution: "pump@npm:3.0.2" + dependencies: + end-of-stream: ^1.1.0 + once: ^1.3.1 + checksum: e0c4216874b96bd25ddf31a0b61a5613e26cc7afa32379217cf39d3915b0509def3565f5f6968fafdad2894c8bbdbd67d340e84f3634b2a29b950cffb6442d9f + languageName: node + linkType: hard + +"punycode@npm:^2.1.1": + version: 2.3.1 + resolution: "punycode@npm:2.3.1" + checksum: bb0a0ceedca4c3c57a9b981b90601579058903c62be23c5e8e843d2c2d4148a3ecf029d5133486fb0e1822b098ba8bba09e89d6b21742d02fa26bda6441a6fb2 + languageName: node + linkType: hard + +"qrcode-terminal@npm:0.11.0": + version: 0.11.0 + resolution: "qrcode-terminal@npm:0.11.0" + bin: + qrcode-terminal: ./bin/qrcode-terminal.js + checksum: ad146ea1e339e1745402a3ea131631f64f40f0d1ff9cc6bd9c21677feaa1ca6dcd32eadf188fd3febdab8bf6191b3d24d533454903a72543645a72820e4d324c + languageName: node + linkType: hard + +"queue-microtask@npm:^1.2.2": + version: 1.2.3 + resolution: "queue-microtask@npm:1.2.3" + checksum: b676f8c040cdc5b12723ad2f91414d267605b26419d5c821ff03befa817ddd10e238d22b25d604920340fd73efd8ba795465a0377c4adf45a4a41e4234e42dc4 + languageName: node + linkType: hard + +"queue@npm:6.0.2": + version: 6.0.2 + resolution: "queue@npm:6.0.2" + dependencies: + inherits: ~2.0.3 + checksum: ebc23639248e4fe40a789f713c20548e513e053b3dc4924b6cb0ad741e3f264dcff948225c8737834dd4f9ec286dbc06a1a7c13858ea382d9379f4303bcc0916 + languageName: node + linkType: hard + +"range-parser@npm:~1.2.1": + version: 1.2.1 + resolution: "range-parser@npm:1.2.1" + checksum: 0a268d4fea508661cf5743dfe3d5f47ce214fd6b7dec1de0da4d669dd4ef3d2144468ebe4179049eff253d9d27e719c88dae55be64f954e80135a0cada804ec9 + languageName: node + linkType: hard + +"rc@npm:~1.2.7": + version: 1.2.8 + resolution: "rc@npm:1.2.8" + dependencies: + deep-extend: ^0.6.0 + ini: ~1.3.0 + minimist: ^1.2.0 + strip-json-comments: ~2.0.1 + bin: + rc: ./cli.js + checksum: 2e26e052f8be2abd64e6d1dabfbd7be03f80ec18ccbc49562d31f617d0015fbdbcf0f9eed30346ea6ab789e0fdfe4337f033f8016efdbee0df5354751842080e + languageName: node + linkType: hard + +"react-devtools-core@npm:^5.3.1": + version: 5.3.2 + resolution: "react-devtools-core@npm:5.3.2" + dependencies: + shell-quote: ^1.6.1 + ws: ^7 + checksum: 8ae15b34f69ea16a0c6b9966c195aecf61981099409ddfe1950e1686cfae6717f93dc63285bd8f1094cc783de81c3d1e73285a82e774d2b289a17ede93d6589b + languageName: node + linkType: hard + +"react-is@npm:^16.13.1": + version: 16.13.1 + resolution: "react-is@npm:16.13.1" + checksum: f7a19ac3496de32ca9ae12aa030f00f14a3d45374f1ceca0af707c831b2a6098ef0d6bdae51bd437b0a306d7f01d4677fcc8de7c0d331eb47ad0f46130e53c5f + languageName: node + linkType: hard + +"react-is@npm:^18.0.0": + version: 18.3.1 + resolution: "react-is@npm:18.3.1" + checksum: e20fe84c86ff172fc8d898251b7cc2c43645d108bf96d0b8edf39b98f9a2cae97b40520ee7ed8ee0085ccc94736c4886294456033304151c3f94978cec03df21 + languageName: node + linkType: hard + +"react-native-audio-api@npm:0.4.11": + version: 0.4.11 + resolution: "react-native-audio-api@npm:0.4.11" + peerDependencies: + react: "*" + react-native: "*" + checksum: 7e80da3fc61881f61dcb676da6dcf0255ee2ea2d35ee39b40d8a329efdc0e5dd483cd2f820cba0b014042f9118d4c1a3d12456d3cab8de6cceda751df3b5e885 + languageName: node + linkType: hard + +"react-native-device-info@npm:^14.0.4": + version: 14.0.4 + resolution: "react-native-device-info@npm:14.0.4" + peerDependencies: + react-native: "*" + checksum: aa839dbe7df1246a4b5f9bcfeb3d4cc4be585f13a0d3ff6a03f57a0c2cfe7590291ac292dda4c51fd8765f94c870857676463e8e2f1660b057f3ae2b4335db29 + languageName: node + linkType: hard + +"react-native-executorch@file:/Users/kopcion/swm-ai/react-native-executorch/react-native-executorch-0.3.274.tgz::locator=speech-to-text%40workspace%3A.": + version: 0.3.274 + resolution: "react-native-executorch@file:/Users/kopcion/swm-ai/react-native-executorch/react-native-executorch-0.3.274.tgz::locator=speech-to-text%40workspace%3A." + dependencies: + expo: ^52.0.37 + expo-asset: ^11.0.3 + expo-file-system: ^18.0.10 + react: 18.3.1 + react-native: 0.76.7 + react-native-audio-api: 0.4.11 + react-native-live-audio-stream: ^1.1.1 + peerDependencies: + react: "*" + react-native: "*" + checksum: 6bd0c225c1a186d0cddc49f6bb705d42eed48d7b6dd6140b93a2fbc70e7860074852fbf275094303e1ff7ed99a6c7cab50b6f83f092d0d542b9076362dff01e5 + languageName: node + linkType: hard + +"react-native-image-picker@npm:^7.2.2": + version: 7.2.3 + resolution: "react-native-image-picker@npm:7.2.3" + peerDependencies: + react: "*" + react-native: "*" + checksum: 96d67516e8e1c1768c593ca1b0a507d5212d8ac5df2610ad9d6f38c188b8d0720966559867849f74b6c19d2500664ce17c907e5fa37ab72487abd363cf493e7d + languageName: node + linkType: hard + +"react-native-is-edge-to-edge@npm:1.1.6": + version: 1.1.6 + resolution: "react-native-is-edge-to-edge@npm:1.1.6" + peerDependencies: + react: ">=18.2.0" + react-native: ">=0.73.0" + checksum: 4e07c1e34c01c8d50fd7c1d0460db06f6f0515197405230386a8ffb950cb724b10743af032310d1384df0a90059bfb8992ba2d93344ce86315315f0493feccc2 + languageName: node + linkType: hard + +"react-native-live-audio-stream@npm:^1.1.1": + version: 1.1.1 + resolution: "react-native-live-audio-stream@npm:1.1.1" + checksum: 1503fb1d9e2df58bf31bfa9ee3cf5167802a659ec64e3a6ca8ba2401b6388af158f9e04895699152e91eec66bcc949a3f35ae38fb63435ae28959b5be56bbd2e + languageName: node + linkType: hard + +"react-native-loading-spinner-overlay@npm:^3.0.1": + version: 3.0.1 + resolution: "react-native-loading-spinner-overlay@npm:3.0.1" + peerDependencies: + react: "*" + react-native: "*" + checksum: d9e5e10bc6170084c162e717a94db7bd60a35eb8110614529caa501790ab9ddfb551239d2e9120aaa15048bfd0af03da8bed0d1ea09e7ebb88a4b39d88ed6878 + languageName: node + linkType: hard + +"react-native-reanimated@npm:^3.16.3": + version: 3.17.1 + resolution: "react-native-reanimated@npm:3.17.1" + dependencies: + "@babel/plugin-transform-arrow-functions": ^7.0.0-0 + "@babel/plugin-transform-class-properties": ^7.0.0-0 + "@babel/plugin-transform-classes": ^7.0.0-0 + "@babel/plugin-transform-nullish-coalescing-operator": ^7.0.0-0 + "@babel/plugin-transform-optional-chaining": ^7.0.0-0 + "@babel/plugin-transform-shorthand-properties": ^7.0.0-0 + "@babel/plugin-transform-template-literals": ^7.0.0-0 + "@babel/plugin-transform-unicode-regex": ^7.0.0-0 + "@babel/preset-typescript": ^7.16.7 + convert-source-map: ^2.0.0 + invariant: ^2.2.4 + react-native-is-edge-to-edge: 1.1.6 + peerDependencies: + "@babel/core": ^7.0.0-0 + react: "*" + react-native: "*" + checksum: fd05040a3fc6a8f4efb387657c0cd6c314e5e6b50f859e127d6891d8f81c65b020ddcf78615aa0074b4e134e450d38c40db916c544e1e2efa26c50c82815607d + languageName: node + linkType: hard + +"react-native-safe-area-context@npm:^5.0.0": + version: 5.3.0 + resolution: "react-native-safe-area-context@npm:5.3.0" + peerDependencies: + react: "*" + react-native: "*" + checksum: 21f18b1286fc7bc6f38f864b7468848c16c58106ae429633e8f655dabb80571beba19ac8aa8bc5e1b2e926d75afddd7ded919a56450aa00c36d56f7fb421f782 + languageName: node + linkType: hard + +"react-native-svg-transformer@npm:^1.5.0": + version: 1.5.0 + resolution: "react-native-svg-transformer@npm:1.5.0" + dependencies: + "@svgr/core": ^8.1.0 + "@svgr/plugin-jsx": ^8.1.0 + "@svgr/plugin-svgo": ^8.1.0 + path-dirname: ^1.0.2 + peerDependencies: + react-native: ">=0.59.0" + react-native-svg: ">=12.0.0" + checksum: 6c2544ef095b098de68c45a1698bc79acea10935391009c6322699e0df96a48953949b75309fc6fc7bba32ce5e8c7df632f817b116dd05456e26a5938108a8e6 + languageName: node + linkType: hard + +"react-native-svg@npm:^15.9.0": + version: 15.11.2 + resolution: "react-native-svg@npm:15.11.2" + dependencies: + css-select: ^5.1.0 + css-tree: ^1.1.3 + warn-once: 0.1.1 + peerDependencies: + react: "*" + react-native: "*" + checksum: 7bc2d9a5b7ceb66905e358d995bf102d63ce017db40b024d31a6ada03c21733fd3620f9ad867d631b878e2380033ea8777e75c4f654bc5b420ea902695ed9ba8 + languageName: node + linkType: hard + +"react-native-wheel-scrollview-picker@npm:^2.0.6": + version: 2.0.9 + resolution: "react-native-wheel-scrollview-picker@npm:2.0.9" + peerDependencies: + "@types/react": "*" + "@types/react-native": "*" + react: "*" + react-native: "*" + typescript: "*" + checksum: 5200c211c523164859245d8f0c47565e0437488ec59d4bd9091f1435374a29ae13b2db7e4b6c4159d2ff5f3f9396904271b97669a22db1a045e87240dee9721b + languageName: node + linkType: hard + +"react-native@npm:0.76.3": + version: 0.76.3 + resolution: "react-native@npm:0.76.3" + dependencies: + "@jest/create-cache-key-function": ^29.6.3 + "@react-native/assets-registry": 0.76.3 + "@react-native/codegen": 0.76.3 + "@react-native/community-cli-plugin": 0.76.3 + "@react-native/gradle-plugin": 0.76.3 + "@react-native/js-polyfills": 0.76.3 + "@react-native/normalize-colors": 0.76.3 + "@react-native/virtualized-lists": 0.76.3 + abort-controller: ^3.0.0 + anser: ^1.4.9 + ansi-regex: ^5.0.0 + babel-jest: ^29.7.0 + babel-plugin-syntax-hermes-parser: ^0.23.1 + base64-js: ^1.5.1 + chalk: ^4.0.0 + commander: ^12.0.0 + event-target-shim: ^5.0.1 + flow-enums-runtime: ^0.0.6 + glob: ^7.1.1 + invariant: ^2.2.4 + jest-environment-node: ^29.6.3 + jsc-android: ^250231.0.0 + memoize-one: ^5.0.0 + metro-runtime: ^0.81.0 + metro-source-map: ^0.81.0 + mkdirp: ^0.5.1 + nullthrows: ^1.1.1 + pretty-format: ^29.7.0 + promise: ^8.3.0 + react-devtools-core: ^5.3.1 + react-refresh: ^0.14.0 + regenerator-runtime: ^0.13.2 + scheduler: 0.24.0-canary-efb381bbf-20230505 + semver: ^7.1.3 + stacktrace-parser: ^0.1.10 + whatwg-fetch: ^3.0.0 + ws: ^6.2.3 + yargs: ^17.6.2 + peerDependencies: + "@types/react": ^18.2.6 + react: ^18.2.0 + peerDependenciesMeta: + "@types/react": + optional: true + bin: + react-native: cli.js + checksum: 0a2fbb7c1ff0057f69b23447980e912bc42df1c1e6c4be504f8e1d4c7c2182b3ca02b5f217bdf89b82a07d523b1e0e0f3124f3cf5f5876f5fa47f845cdba1c7a + languageName: node + linkType: hard + +"react-native@npm:0.76.7": + version: 0.76.7 + resolution: "react-native@npm:0.76.7" + dependencies: + "@jest/create-cache-key-function": ^29.6.3 + "@react-native/assets-registry": 0.76.7 + "@react-native/codegen": 0.76.7 + "@react-native/community-cli-plugin": 0.76.7 + "@react-native/gradle-plugin": 0.76.7 + "@react-native/js-polyfills": 0.76.7 + "@react-native/normalize-colors": 0.76.7 + "@react-native/virtualized-lists": 0.76.7 + abort-controller: ^3.0.0 + anser: ^1.4.9 + ansi-regex: ^5.0.0 + babel-jest: ^29.7.0 + babel-plugin-syntax-hermes-parser: ^0.23.1 + base64-js: ^1.5.1 + chalk: ^4.0.0 + commander: ^12.0.0 + event-target-shim: ^5.0.1 + flow-enums-runtime: ^0.0.6 + glob: ^7.1.1 + invariant: ^2.2.4 + jest-environment-node: ^29.6.3 + jsc-android: ^250231.0.0 + memoize-one: ^5.0.0 + metro-runtime: ^0.81.0 + metro-source-map: ^0.81.0 + mkdirp: ^0.5.1 + nullthrows: ^1.1.1 + pretty-format: ^29.7.0 + promise: ^8.3.0 + react-devtools-core: ^5.3.1 + react-refresh: ^0.14.0 + regenerator-runtime: ^0.13.2 + scheduler: 0.24.0-canary-efb381bbf-20230505 + semver: ^7.1.3 + stacktrace-parser: ^0.1.10 + whatwg-fetch: ^3.0.0 + ws: ^6.2.3 + yargs: ^17.6.2 + peerDependencies: + "@types/react": ^18.2.6 + react: ^18.2.0 + peerDependenciesMeta: + "@types/react": + optional: true + bin: + react-native: cli.js + checksum: a3ec730c2b5583420e8f99fd53da38dbfc2f440ebbc0480453d43338076eb67f7dc9f06d7b1ed32113bf3efb62b7cf64e04f29b19370cf9bcb16b756dcec9874 + languageName: node + linkType: hard + +"react-refresh@npm:^0.14.0, react-refresh@npm:^0.14.2": + version: 0.14.2 + resolution: "react-refresh@npm:0.14.2" + checksum: d80db4bd40a36dab79010dc8aa317a5b931f960c0d83c4f3b81f0552cbcf7f29e115b84bb7908ec6a1eb67720fff7023084eff73ece8a7ddc694882478464382 + languageName: node + linkType: hard + +"react@npm:18.3.1": + version: 18.3.1 + resolution: "react@npm:18.3.1" + dependencies: + loose-envify: ^1.1.0 + checksum: a27bcfa8ff7c15a1e50244ad0d0c1cb2ad4375eeffefd266a64889beea6f6b64c4966c9b37d14ee32d6c9fcd5aa6ba183b6988167ab4d127d13e7cb5b386a376 + languageName: node + linkType: hard + +"readline@npm:^1.3.0": + version: 1.3.0 + resolution: "readline@npm:1.3.0" + checksum: dfaf8e6ac20408ea00d650e95f7bb47f77c4c62dd12ed7fb51731ee84532a2f3675fcdc4cab4923dc1eef227520a2e082a093215190907758bea9f585b19438e + languageName: node + linkType: hard + +"recast@npm:^0.21.0": + version: 0.21.5 + resolution: "recast@npm:0.21.5" + dependencies: + ast-types: 0.15.2 + esprima: ~4.0.0 + source-map: ~0.6.1 + tslib: ^2.0.1 + checksum: 03cc7f57562238ba258d468be67bf7446ce7a707bc87a087891dad15afead46c36e9aaeedf2130e2ab5a465244a9c62bfd4127849761cf8f4085abe2f3e5f485 + languageName: node + linkType: hard + +"regenerate-unicode-properties@npm:^10.2.0": + version: 10.2.0 + resolution: "regenerate-unicode-properties@npm:10.2.0" + dependencies: + regenerate: ^1.4.2 + checksum: d5c5fc13f8b8d7e16e791637a4bfef741f8d70e267d51845ee7d5404a32fa14c75b181c4efba33e4bff8b0000a2f13e9773593713dfe5b66597df4259275ce63 + languageName: node + linkType: hard + +"regenerate@npm:^1.4.2": + version: 1.4.2 + resolution: "regenerate@npm:1.4.2" + checksum: 3317a09b2f802da8db09aa276e469b57a6c0dd818347e05b8862959c6193408242f150db5de83c12c3fa99091ad95fb42a6db2c3329bfaa12a0ea4cbbeb30cb0 + languageName: node + linkType: hard + +"regenerator-runtime@npm:^0.13.2": + version: 0.13.11 + resolution: "regenerator-runtime@npm:0.13.11" + checksum: 27481628d22a1c4e3ff551096a683b424242a216fee44685467307f14d58020af1e19660bf2e26064de946bad7eff28950eae9f8209d55723e2d9351e632bbb4 + languageName: node + linkType: hard + +"regenerator-runtime@npm:^0.14.0": + version: 0.14.1 + resolution: "regenerator-runtime@npm:0.14.1" + checksum: 9f57c93277b5585d3c83b0cf76be47b473ae8c6d9142a46ce8b0291a04bb2cf902059f0f8445dcabb3fb7378e5fe4bb4ea1e008876343d42e46d3b484534ce38 + languageName: node + linkType: hard + +"regenerator-transform@npm:^0.15.2": + version: 0.15.2 + resolution: "regenerator-transform@npm:0.15.2" + dependencies: + "@babel/runtime": ^7.8.4 + checksum: 20b6f9377d65954980fe044cfdd160de98df415b4bff38fbade67b3337efaf078308c4fed943067cd759827cc8cfeca9cb28ccda1f08333b85d6a2acbd022c27 + languageName: node + linkType: hard + +"regexpu-core@npm:^6.2.0": + version: 6.2.0 + resolution: "regexpu-core@npm:6.2.0" + dependencies: + regenerate: ^1.4.2 + regenerate-unicode-properties: ^10.2.0 + regjsgen: ^0.8.0 + regjsparser: ^0.12.0 + unicode-match-property-ecmascript: ^2.0.0 + unicode-match-property-value-ecmascript: ^2.1.0 + checksum: 67d3c4a3f6c99bc80b5d690074a27e6f675be1c1739f8a9acf028fbc36f1a468472574ea65e331e217995198ba4404d7878f3cb3739a73552dd3c70d3fb7f8e6 + languageName: node + linkType: hard + +"regjsgen@npm:^0.8.0": + version: 0.8.0 + resolution: "regjsgen@npm:0.8.0" + checksum: a1d925ff14a4b2be774e45775ee6b33b256f89c42d480e6d85152d2133f18bd3d6af662161b226fa57466f7efec367eaf7ccd2a58c0ec2a1306667ba2ad07b0d + languageName: node + linkType: hard + +"regjsparser@npm:^0.12.0": + version: 0.12.0 + resolution: "regjsparser@npm:0.12.0" + dependencies: + jsesc: ~3.0.2 + bin: + regjsparser: bin/parser + checksum: 094b55b0ab3e1fd58f8ce5132a1d44dab08d91f7b0eea4132b0157b303ebb8ded20a9cbd893d25402d2aeddb23fac1f428ab4947b295d6fa51dd1c334a9e76f0 + languageName: node + linkType: hard + +"remove-trailing-slash@npm:^0.1.0": + version: 0.1.1 + resolution: "remove-trailing-slash@npm:0.1.1" + checksum: dd200c6b7d6f2b49d12b3eff3abc7089917e8a268cefcd5bf67ff23f8c2ad9f866fbe2f3566e1a8dbdc4f4b1171e2941f7dd00852f8de549bb73c3df53b09d96 + languageName: node + linkType: hard + +"require-directory@npm:^2.1.1": + version: 2.1.1 + resolution: "require-directory@npm:2.1.1" + checksum: fb47e70bf0001fdeabdc0429d431863e9475e7e43ea5f94ad86503d918423c1543361cc5166d713eaa7029dd7a3d34775af04764bebff99ef413111a5af18c80 + languageName: node + linkType: hard + +"require-from-string@npm:^2.0.2": + version: 2.0.2 + resolution: "require-from-string@npm:2.0.2" + checksum: a03ef6895445f33a4015300c426699bc66b2b044ba7b670aa238610381b56d3f07c686251740d575e22f4c87531ba662d06937508f0f3c0f1ddc04db3130560b + languageName: node + linkType: hard + +"requireg@npm:^0.2.2": + version: 0.2.2 + resolution: "requireg@npm:0.2.2" + dependencies: + nested-error-stacks: ~2.0.1 + rc: ~1.2.7 + resolve: ~1.7.1 + checksum: 99b420a02e7272717153cdf75891cbb133c02c04b287721eb1bdb0668b6a98aa1da38c08d8148fc8b1443a668d939eeb622d390538ac8da17b18a977ebe998ae + languageName: node + linkType: hard + +"resolve-from@npm:^3.0.0": + version: 3.0.0 + resolution: "resolve-from@npm:3.0.0" + checksum: fff9819254d2d62b57f74e5c2ca9c0bdd425ca47287c4d801bc15f947533148d858229ded7793b0f59e61e49e782fffd6722048add12996e1bd4333c29669062 + languageName: node + linkType: hard + +"resolve-from@npm:^4.0.0": + version: 4.0.0 + resolution: "resolve-from@npm:4.0.0" + checksum: f4ba0b8494846a5066328ad33ef8ac173801a51739eb4d63408c847da9a2e1c1de1e6cbbf72699211f3d13f8fc1325648b169bd15eb7da35688e30a5fb0e4a7f + languageName: node + linkType: hard + +"resolve-from@npm:^5.0.0": + version: 5.0.0 + resolution: "resolve-from@npm:5.0.0" + checksum: 4ceeb9113e1b1372d0cd969f3468fa042daa1dd9527b1b6bb88acb6ab55d8b9cd65dbf18819f9f9ddf0db804990901dcdaade80a215e7b2c23daae38e64f5bdf + languageName: node + linkType: hard + +"resolve-workspace-root@npm:^2.0.0": + version: 2.0.0 + resolution: "resolve-workspace-root@npm:2.0.0" + checksum: c7222391a35ecb3514fa04d753334a86f984d8ffe06ce87506582c4c5671ac608273b8f5e6faa2055be6e196785bf751ede9a48d484de53889d721b814c097ab + languageName: node + linkType: hard + +"resolve.exports@npm:^2.0.3": + version: 2.0.3 + resolution: "resolve.exports@npm:2.0.3" + checksum: abfb9f98278dcd0c19b8a49bb486abfafa23df4636d49128ea270dc982053c3ef230a530aecda1fae1322873fdfa6c97674fc539651ddfdb375ac58e0b8ef6df + languageName: node + linkType: hard + +"resolve@npm:^1.14.2, resolve@npm:^1.22.2": + version: 1.22.10 + resolution: "resolve@npm:1.22.10" + dependencies: + is-core-module: ^2.16.0 + path-parse: ^1.0.7 + supports-preserve-symlinks-flag: ^1.0.0 + bin: + resolve: bin/resolve + checksum: ab7a32ff4046fcd7c6fdd525b24a7527847d03c3650c733b909b01b757f92eb23510afa9cc3e9bf3f26a3e073b48c88c706dfd4c1d2fb4a16a96b73b6328ddcf + languageName: node + linkType: hard + +"resolve@npm:~1.7.1": + version: 1.7.1 + resolution: "resolve@npm:1.7.1" + dependencies: + path-parse: ^1.0.5 + checksum: afb829d4b923f9b17aaf55320c2feaf8d44577674a3a71510d299f832fb80f6703e5a701e01cf774c3241fe8663d4b2b99053cfbca7995488d18ea9f8c7ac309 + languageName: node + linkType: hard + +"resolve@patch:resolve@^1.14.2#~builtin, resolve@patch:resolve@^1.22.2#~builtin": + version: 1.22.10 + resolution: "resolve@patch:resolve@npm%3A1.22.10#~builtin::version=1.22.10&hash=c3c19d" + dependencies: + is-core-module: ^2.16.0 + path-parse: ^1.0.7 + supports-preserve-symlinks-flag: ^1.0.0 + bin: + resolve: bin/resolve + checksum: 8aac1e4e4628bd00bf4b94b23de137dd3fe44097a8d528fd66db74484be929936e20c696e1a3edf4488f37e14180b73df6f600992baea3e089e8674291f16c9d + languageName: node + linkType: hard + +"resolve@patch:resolve@~1.7.1#~builtin": + version: 1.7.1 + resolution: "resolve@patch:resolve@npm%3A1.7.1#~builtin::version=1.7.1&hash=3bafbf" + dependencies: + path-parse: ^1.0.5 + checksum: c2a6f0e3856ac1ddc8297091c20ca6c36d99bf289ddea366c46bd2a7ed8b31075c7f9d01ff5d390ebed1fe41b9fabe57a79ae087992ba92e3592f0c3be07c1ac + languageName: node + linkType: hard + +"restore-cursor@npm:^2.0.0": + version: 2.0.0 + resolution: "restore-cursor@npm:2.0.0" + dependencies: + onetime: ^2.0.0 + signal-exit: ^3.0.2 + checksum: 482e13d02d834b6e5e3aa90304a8b5e840775d6f06916cc92a50038adf9f098dcc72405b567da8a37e137ae40ad3e31896fa3136ae62f7a426c2fbf53d036536 + languageName: node + linkType: hard + +"retry@npm:^0.12.0": + version: 0.12.0 + resolution: "retry@npm:0.12.0" + checksum: 623bd7d2e5119467ba66202d733ec3c2e2e26568074923bc0585b6b99db14f357e79bdedb63cab56cec47491c4a0da7e6021a7465ca6dc4f481d3898fdd3158c + languageName: node + linkType: hard + +"reusify@npm:^1.0.4": + version: 1.1.0 + resolution: "reusify@npm:1.1.0" + checksum: 64cb3142ac5e9ad689aca289585cb41d22521f4571f73e9488af39f6b1bd62f0cbb3d65e2ecc768ec6494052523f473f1eb4b55c3e9014b3590c17fc6a03e22a + languageName: node + linkType: hard + +"rimraf@npm:^3.0.2": + version: 3.0.2 + resolution: "rimraf@npm:3.0.2" + dependencies: + glob: ^7.1.3 + bin: + rimraf: bin.js + checksum: 87f4164e396f0171b0a3386cc1877a817f572148ee13a7e113b238e48e8a9f2f31d009a92ec38a591ff1567d9662c6b67fd8818a2dbbaed74bc26a87a2a4a9a0 + languageName: node + linkType: hard + +"rimraf@npm:^5.0.5": + version: 5.0.10 + resolution: "rimraf@npm:5.0.10" + dependencies: + glob: ^10.3.7 + bin: + rimraf: dist/esm/bin.mjs + checksum: 50e27388dd2b3fa6677385fc1e2966e9157c89c86853b96d02e6915663a96b7ff4d590e14f6f70e90f9b554093aa5dbc05ac3012876be558c06a65437337bc05 + languageName: node + linkType: hard + +"rimraf@npm:~2.6.2": + version: 2.6.3 + resolution: "rimraf@npm:2.6.3" + dependencies: + glob: ^7.1.3 + bin: + rimraf: ./bin.js + checksum: 3ea587b981a19016297edb96d1ffe48af7e6af69660e3b371dbfc73722a73a0b0e9be5c88089fbeeb866c389c1098e07f64929c7414290504b855f54f901ab10 + languageName: node + linkType: hard + +"run-parallel@npm:^1.1.9": + version: 1.2.0 + resolution: "run-parallel@npm:1.2.0" + dependencies: + queue-microtask: ^1.2.2 + checksum: cb4f97ad25a75ebc11a8ef4e33bb962f8af8516bb2001082ceabd8902e15b98f4b84b4f8a9b222e5d57fc3bd1379c483886ed4619367a7680dad65316993021d + languageName: node + linkType: hard + +"safe-buffer@npm:5.2.1": + version: 5.2.1 + resolution: "safe-buffer@npm:5.2.1" + checksum: b99c4b41fdd67a6aaf280fcd05e9ffb0813654894223afb78a31f14a19ad220bba8aba1cb14eddce1fcfb037155fe6de4e861784eb434f7d11ed58d1e70dd491 + languageName: node + linkType: hard + +"safer-buffer@npm:>= 2.1.2 < 3.0.0": + version: 2.1.2 + resolution: "safer-buffer@npm:2.1.2" + checksum: cab8f25ae6f1434abee8d80023d7e72b598cf1327164ddab31003c51215526801e40b66c5e65d658a0af1e9d6478cadcb4c745f4bd6751f97d8644786c0978b0 + languageName: node + linkType: hard + +"sax@npm:>=0.6.0": + version: 1.4.1 + resolution: "sax@npm:1.4.1" + checksum: 3ad64df16b743f0f2eb7c38ced9692a6d924f1cd07bbe45c39576c2cf50de8290d9d04e7b2228f924c7d05fecc4ec5cf651423278e0c7b63d260c387ef3af84a + languageName: node + linkType: hard + +"scheduler@npm:0.24.0-canary-efb381bbf-20230505": + version: 0.24.0-canary-efb381bbf-20230505 + resolution: "scheduler@npm:0.24.0-canary-efb381bbf-20230505" + dependencies: + loose-envify: ^1.1.0 + checksum: 232149125c10f10193b1340ec4bbf14a8e6a845152790d6fd6f58207642db801abdb5a21227561a0a93871b98ba47539a6233b4e6155aae72d6db6db9f9f09b3 + languageName: node + linkType: hard + +"selfsigned@npm:^2.4.1": + version: 2.4.1 + resolution: "selfsigned@npm:2.4.1" + dependencies: + "@types/node-forge": ^1.3.0 + node-forge: ^1 + checksum: 38b91c56f1d7949c0b77f9bbe4545b19518475cae15e7d7f0043f87b1626710b011ce89879a88969651f650a19d213bb15b7d5b4c2877df9eeeff7ba8f8b9bfa + languageName: node + linkType: hard + +"semver@npm:^5.5.0, semver@npm:^5.6.0": + version: 5.7.2 + resolution: "semver@npm:5.7.2" + bin: + semver: bin/semver + checksum: fb4ab5e0dd1c22ce0c937ea390b4a822147a9c53dbd2a9a0132f12fe382902beef4fbf12cf51bb955248d8d15874ce8cd89532569756384f994309825f10b686 + languageName: node + linkType: hard + +"semver@npm:^6.3.0, semver@npm:^6.3.1": + version: 6.3.1 + resolution: "semver@npm:6.3.1" + bin: + semver: bin/semver.js + checksum: ae47d06de28836adb9d3e25f22a92943477371292d9b665fb023fae278d345d508ca1958232af086d85e0155aee22e313e100971898bbb8d5d89b8b1d4054ca2 + languageName: node + linkType: hard + +"semver@npm:^7.1.3, semver@npm:^7.3.5, semver@npm:^7.5.4, semver@npm:^7.6.0": + version: 7.7.1 + resolution: "semver@npm:7.7.1" + bin: + semver: bin/semver.js + checksum: 586b825d36874007c9382d9e1ad8f93888d8670040add24a28e06a910aeebd673a2eb9e3bf169c6679d9245e66efb9057e0852e70d9daa6c27372aab1dda7104 + languageName: node + linkType: hard + +"send@npm:0.19.0": + version: 0.19.0 + resolution: "send@npm:0.19.0" + dependencies: + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: ~1.0.2 + escape-html: ~1.0.3 + etag: ~1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: ~1.2.1 + statuses: 2.0.1 + checksum: 5ae11bd900c1c2575525e2aa622e856804e2f96a09281ec1e39610d089f53aa69e13fd8db84b52f001d0318cf4bb0b3b904ad532fc4c0014eb90d32db0cff55f + languageName: node + linkType: hard + +"send@npm:^0.19.0": + version: 0.19.1 + resolution: "send@npm:0.19.1" + dependencies: + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: ~2.0.0 + escape-html: ~1.0.3 + etag: ~1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: ~1.2.1 + statuses: 2.0.1 + checksum: 2a1991c8ac23a9b47c4477fbed056f1e4503ef683c669e9113303f793965c42f462d763755378eef9ad8b8c0e0cfbcf7789e2e517fa8d7451bc2cf8b3feca01e + languageName: node + linkType: hard + +"serialize-error@npm:^2.1.0": + version: 2.1.0 + resolution: "serialize-error@npm:2.1.0" + checksum: 28464a6f65e6becd6e49fb782aff06573fdbf3d19f161a20228179842fed05c75a34110e54c3ee020b00240f9e11d8bee9b9fee5d04e0bc0bef1fdbf2baa297e + languageName: node + linkType: hard + +"serve-static@npm:^1.13.1": + version: 1.16.2 + resolution: "serve-static@npm:1.16.2" + dependencies: + encodeurl: ~2.0.0 + escape-html: ~1.0.3 + parseurl: ~1.3.3 + send: 0.19.0 + checksum: dffc52feb4cc5c68e66d0c7f3c1824d4e989f71050aefc9bd5f822a42c54c9b814f595fc5f2b717f4c7cc05396145f3e90422af31186a93f76cf15f707019759 + languageName: node + linkType: hard + +"setimmediate@npm:^1.0.5": + version: 1.0.5 + resolution: "setimmediate@npm:1.0.5" + checksum: c9a6f2c5b51a2dabdc0247db9c46460152ffc62ee139f3157440bd48e7c59425093f42719ac1d7931f054f153e2d26cf37dfeb8da17a794a58198a2705e527fd + languageName: node + linkType: hard + +"setprototypeof@npm:1.2.0": + version: 1.2.0 + resolution: "setprototypeof@npm:1.2.0" + checksum: be18cbbf70e7d8097c97f713a2e76edf84e87299b40d085c6bf8b65314e994cc15e2e317727342fa6996e38e1f52c59720b53fe621e2eb593a6847bf0356db89 + languageName: node + linkType: hard + +"shallow-clone@npm:^3.0.0": + version: 3.0.1 + resolution: "shallow-clone@npm:3.0.1" + dependencies: + kind-of: ^6.0.2 + checksum: 39b3dd9630a774aba288a680e7d2901f5c0eae7b8387fc5c8ea559918b29b3da144b7bdb990d7ccd9e11be05508ac9e459ce51d01fd65e583282f6ffafcba2e7 + languageName: node + linkType: hard + +"shebang-command@npm:^1.2.0": + version: 1.2.0 + resolution: "shebang-command@npm:1.2.0" + dependencies: + shebang-regex: ^1.0.0 + checksum: 9eed1750301e622961ba5d588af2212505e96770ec376a37ab678f965795e995ade7ed44910f5d3d3cb5e10165a1847f52d3348c64e146b8be922f7707958908 + languageName: node + linkType: hard + +"shebang-command@npm:^2.0.0": + version: 2.0.0 + resolution: "shebang-command@npm:2.0.0" + dependencies: + shebang-regex: ^3.0.0 + checksum: 6b52fe87271c12968f6a054e60f6bde5f0f3d2db483a1e5c3e12d657c488a15474121a1d55cd958f6df026a54374ec38a4a963988c213b7570e1d51575cea7fa + languageName: node + linkType: hard + +"shebang-regex@npm:^1.0.0": + version: 1.0.0 + resolution: "shebang-regex@npm:1.0.0" + checksum: 404c5a752cd40f94591dfd9346da40a735a05139dac890ffc229afba610854d8799aaa52f87f7e0c94c5007f2c6af55bdcaeb584b56691926c5eaf41dc8f1372 + languageName: node + linkType: hard + +"shebang-regex@npm:^3.0.0": + version: 3.0.0 + resolution: "shebang-regex@npm:3.0.0" + checksum: 1a2bcae50de99034fcd92ad4212d8e01eedf52c7ec7830eedcf886622804fe36884278f2be8be0ea5fde3fd1c23911643a4e0f726c8685b61871c8908af01222 + languageName: node + linkType: hard + +"shell-quote@npm:^1.6.1": + version: 1.8.2 + resolution: "shell-quote@npm:1.8.2" + checksum: 1e97b62ced1c4c5135015978ebf273bed1f425a68cf84163e83fbb0f34b3ff9471e656720dab2b7cbb4ae0f58998e686d17d166c28dfb3662acd009e8bd7faed + languageName: node + linkType: hard + +"signal-exit@npm:^3.0.0, signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3, signal-exit@npm:^3.0.7": + version: 3.0.7 + resolution: "signal-exit@npm:3.0.7" + checksum: a2f098f247adc367dffc27845853e9959b9e88b01cb301658cfe4194352d8d2bb32e18467c786a7fe15f1d44b233ea35633d076d5e737870b7139949d1ab6318 + languageName: node + linkType: hard + +"signal-exit@npm:^4.0.1": + version: 4.1.0 + resolution: "signal-exit@npm:4.1.0" + checksum: 64c757b498cb8629ffa5f75485340594d2f8189e9b08700e69199069c8e3070fb3e255f7ab873c05dc0b3cec412aea7402e10a5990cb6a050bd33ba062a6c549 + languageName: node + linkType: hard + +"simple-plist@npm:^1.1.0": + version: 1.4.0 + resolution: "simple-plist@npm:1.4.0" + dependencies: + bplist-creator: 0.1.1 + bplist-parser: 0.3.2 + plist: ^3.0.5 + checksum: fa8086f6b781c289f1abad21306481dda4af6373b32a5d998a70e53c2b7218a1d21ebb5ae3e736baae704c21d311d3d39d01d0e6a2387eda01b4020b9ebd909e + languageName: node + linkType: hard + +"sisteransi@npm:^1.0.5": + version: 1.0.5 + resolution: "sisteransi@npm:1.0.5" + checksum: aba6438f46d2bfcef94cf112c835ab395172c75f67453fe05c340c770d3c402363018ae1ab4172a1026a90c47eaccf3af7b6ff6fa749a680c2929bd7fa2b37a4 + languageName: node + linkType: hard + +"slash@npm:^3.0.0": + version: 3.0.0 + resolution: "slash@npm:3.0.0" + checksum: 94a93fff615f25a999ad4b83c9d5e257a7280c90a32a7cb8b4a87996e4babf322e469c42b7f649fd5796edd8687652f3fb452a86dc97a816f01113183393f11c + languageName: node + linkType: hard + +"slugify@npm:^1.3.4, slugify@npm:^1.6.6": + version: 1.6.6 + resolution: "slugify@npm:1.6.6" + checksum: 04773c2d3b7aea8d2a61fa47cc7e5d29ce04e1a96cbaec409da57139df906acb3a449fac30b167d203212c806e73690abd4ff94fbad0a9a7b7ea109a2a638ae9 + languageName: node + linkType: hard + +"smart-buffer@npm:^4.2.0": + version: 4.2.0 + resolution: "smart-buffer@npm:4.2.0" + checksum: b5167a7142c1da704c0e3af85c402002b597081dd9575031a90b4f229ca5678e9a36e8a374f1814c8156a725d17008ae3bde63b92f9cfd132526379e580bec8b + languageName: node + linkType: hard + +"snake-case@npm:^3.0.4": + version: 3.0.4 + resolution: "snake-case@npm:3.0.4" + dependencies: + dot-case: ^3.0.4 + tslib: ^2.0.3 + checksum: 0a7a79900bbb36f8aaa922cf111702a3647ac6165736d5dc96d3ef367efc50465cac70c53cd172c382b022dac72ec91710608e5393de71f76d7142e6fd80e8a3 + languageName: node + linkType: hard + +"socks-proxy-agent@npm:^8.0.3": + version: 8.0.5 + resolution: "socks-proxy-agent@npm:8.0.5" + dependencies: + agent-base: ^7.1.2 + debug: ^4.3.4 + socks: ^2.8.3 + checksum: b4fbcdb7ad2d6eec445926e255a1fb95c975db0020543fbac8dfa6c47aecc6b3b619b7fb9c60a3f82c9b2969912a5e7e174a056ae4d98cb5322f3524d6036e1d + languageName: node + linkType: hard + +"socks@npm:^2.8.3": + version: 2.8.4 + resolution: "socks@npm:2.8.4" + dependencies: + ip-address: ^9.0.5 + smart-buffer: ^4.2.0 + checksum: cd1edc924475d5dfde534adf66038df7e62c7343e6b8c0113e52dc9bb6a0a10e25b2f136197f379d695f18e8f0f2b7f6e42977bf720ddbee912a851201c396ad + languageName: node + linkType: hard + +"source-map-js@npm:^1.0.1, source-map-js@npm:^1.2.1": + version: 1.2.1 + resolution: "source-map-js@npm:1.2.1" + checksum: 4eb0cd997cdf228bc253bcaff9340afeb706176e64868ecd20efbe6efea931465f43955612346d6b7318789e5265bdc419bc7669c1cebe3db0eb255f57efa76b + languageName: node + linkType: hard + +"source-map-support@npm:^0.5.16, source-map-support@npm:~0.5.20, source-map-support@npm:~0.5.21": + version: 0.5.21 + resolution: "source-map-support@npm:0.5.21" + dependencies: + buffer-from: ^1.0.0 + source-map: ^0.6.0 + checksum: 43e98d700d79af1d36f859bdb7318e601dfc918c7ba2e98456118ebc4c4872b327773e5a1df09b0524e9e5063bb18f0934538eace60cca2710d1fa687645d137 + languageName: node + linkType: hard + +"source-map@npm:^0.5.6": + version: 0.5.7 + resolution: "source-map@npm:0.5.7" + checksum: 5dc2043b93d2f194142c7f38f74a24670cd7a0063acdaf4bf01d2964b402257ae843c2a8fa822ad5b71013b5fcafa55af7421383da919752f22ff488bc553f4d + languageName: node + linkType: hard + +"source-map@npm:^0.6.0, source-map@npm:^0.6.1, source-map@npm:~0.6.1": + version: 0.6.1 + resolution: "source-map@npm:0.6.1" + checksum: 59ce8640cf3f3124f64ac289012c2b8bd377c238e316fb323ea22fbfe83da07d81e000071d7242cad7a23cd91c7de98e4df8830ec3f133cb6133a5f6e9f67bc2 + languageName: node + linkType: hard + +"speech-to-text@workspace:.": + version: 0.0.0-use.local + resolution: "speech-to-text@workspace:." + dependencies: + "@babel/core": ^7.25.2 + "@react-native/metro-config": ^0.76.3 + "@types/react": ~18.3.12 + buffer: ^6.0.3 + expo: ~52.0.17 + expo-font: ^13.0.1 + expo-status-bar: ~2.0.0 + metro-config: ^0.81.0 + react: 18.3.1 + react-native: 0.76.3 + react-native-audio-api: 0.4.11 + react-native-device-info: ^14.0.4 + react-native-executorch: /Users/kopcion/swm-ai/react-native-executorch/react-native-executorch-0.3.274.tgz + react-native-image-picker: ^7.2.2 + react-native-live-audio-stream: ^1.1.1 + react-native-loading-spinner-overlay: ^3.0.1 + react-native-reanimated: ^3.16.3 + react-native-safe-area-context: ^5.0.0 + react-native-svg: ^15.9.0 + react-native-svg-transformer: ^1.5.0 + react-native-wheel-scrollview-picker: ^2.0.6 + typescript: ^5.3.3 + languageName: unknown + linkType: soft + +"split@npm:^1.0.1": + version: 1.0.1 + resolution: "split@npm:1.0.1" + dependencies: + through: 2 + checksum: 12f4554a5792c7e98bb3e22b53c63bfa5ef89aa704353e1db608a55b51f5b12afaad6e4a8ecf7843c15f273f43cdadd67b3705cc43d48a75c2cf4641d51f7e7a + languageName: node + linkType: hard + +"sprintf-js@npm:^1.1.3": + version: 1.1.3 + resolution: "sprintf-js@npm:1.1.3" + checksum: a3fdac7b49643875b70864a9d9b469d87a40dfeaf5d34d9d0c5b1cda5fd7d065531fcb43c76357d62254c57184a7b151954156563a4d6a747015cfb41021cad0 + languageName: node + linkType: hard + +"sprintf-js@npm:~1.0.2": + version: 1.0.3 + resolution: "sprintf-js@npm:1.0.3" + checksum: 19d79aec211f09b99ec3099b5b2ae2f6e9cdefe50bc91ac4c69144b6d3928a640bb6ae5b3def70c2e85a2c3d9f5ec2719921e3a59d3ca3ef4b2fd1a4656a0df3 + languageName: node + linkType: hard + +"ssri@npm:^10.0.0": + version: 10.0.6 + resolution: "ssri@npm:10.0.6" + dependencies: + minipass: ^7.0.3 + checksum: 4603d53a05bcd44188747d38f1cc43833b9951b5a1ee43ba50535bdfc5fe4a0897472dbe69837570a5417c3c073377ef4f8c1a272683b401857f72738ee57299 + languageName: node + linkType: hard + +"ssri@npm:^12.0.0": + version: 12.0.0 + resolution: "ssri@npm:12.0.0" + dependencies: + minipass: ^7.0.3 + checksum: ef4b6b0ae47b4a69896f5f1c4375f953b9435388c053c36d27998bc3d73e046969ccde61ab659e679142971a0b08e50478a1228f62edb994105b280f17900c98 + languageName: node + linkType: hard + +"stack-utils@npm:^2.0.3": + version: 2.0.6 + resolution: "stack-utils@npm:2.0.6" + dependencies: + escape-string-regexp: ^2.0.0 + checksum: 052bf4d25bbf5f78e06c1d5e67de2e088b06871fa04107ca8d3f0e9d9263326e2942c8bedee3545795fc77d787d443a538345eef74db2f8e35db3558c6f91ff7 + languageName: node + linkType: hard + +"stackframe@npm:^1.3.4": + version: 1.3.4 + resolution: "stackframe@npm:1.3.4" + checksum: bae1596873595c4610993fa84f86a3387d67586401c1816ea048c0196800c0646c4d2da98c2ee80557fd9eff05877efe33b91ba6cd052658ed96ddc85d19067d + languageName: node + linkType: hard + +"stacktrace-parser@npm:^0.1.10": + version: 0.1.11 + resolution: "stacktrace-parser@npm:0.1.11" + dependencies: + type-fest: ^0.7.1 + checksum: 1120cf716606ec6a8e25cc9b6ada79d7b91e6a599bba1a6664e6badc8b5f37987d7df7d9ad0344f717a042781fd8e1e999de08614a5afea451b68902421036b5 + languageName: node + linkType: hard + +"statuses@npm:2.0.1": + version: 2.0.1 + resolution: "statuses@npm:2.0.1" + checksum: 18c7623fdb8f646fb213ca4051be4df7efb3484d4ab662937ca6fbef7ced9b9e12842709872eb3020cc3504b93bde88935c9f6417489627a7786f24f8031cbcb + languageName: node + linkType: hard + +"statuses@npm:~1.5.0": + version: 1.5.0 + resolution: "statuses@npm:1.5.0" + checksum: c469b9519de16a4bb19600205cffb39ee471a5f17b82589757ca7bd40a8d92ebb6ed9f98b5a540c5d302ccbc78f15dc03cc0280dd6e00df1335568a5d5758a5c + languageName: node + linkType: hard + +"stream-buffers@npm:2.2.x, stream-buffers@npm:~2.2.0": + version: 2.2.0 + resolution: "stream-buffers@npm:2.2.0" + checksum: 4587d9e8f050d689fb38b4295e73408401b16de8edecc12026c6f4ae92956705ecfd995ae3845d7fa3ebf19502d5754df9143d91447fd881d86e518f43882c1c + languageName: node + linkType: hard + +"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3": + version: 4.2.3 + resolution: "string-width@npm:4.2.3" + dependencies: + emoji-regex: ^8.0.0 + is-fullwidth-code-point: ^3.0.0 + strip-ansi: ^6.0.1 + checksum: e52c10dc3fbfcd6c3a15f159f54a90024241d0f149cf8aed2982a2d801d2e64df0bf1dc351cf8e95c3319323f9f220c16e740b06faecd53e2462df1d2b5443fb + languageName: node + linkType: hard + +"string-width@npm:^5.0.1, string-width@npm:^5.1.2": + version: 5.1.2 + resolution: "string-width@npm:5.1.2" + dependencies: + eastasianwidth: ^0.2.0 + emoji-regex: ^9.2.2 + strip-ansi: ^7.0.1 + checksum: 7369deaa29f21dda9a438686154b62c2c5f661f8dda60449088f9f980196f7908fc39fdd1803e3e01541970287cf5deae336798337e9319a7055af89dafa7193 + languageName: node + linkType: hard + +"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": + version: 6.0.1 + resolution: "strip-ansi@npm:6.0.1" + dependencies: + ansi-regex: ^5.0.1 + checksum: f3cd25890aef3ba6e1a74e20896c21a46f482e93df4a06567cebf2b57edabb15133f1f94e57434e0a958d61186087b1008e89c94875d019910a213181a14fc8c + languageName: node + linkType: hard + +"strip-ansi@npm:^5.2.0": + version: 5.2.0 + resolution: "strip-ansi@npm:5.2.0" + dependencies: + ansi-regex: ^4.1.0 + checksum: bdb5f76ade97062bd88e7723aa019adbfacdcba42223b19ccb528ffb9fb0b89a5be442c663c4a3fb25268eaa3f6ea19c7c3fbae830bd1562d55adccae1fcec46 + languageName: node + linkType: hard + +"strip-ansi@npm:^7.0.1": + version: 7.1.0 + resolution: "strip-ansi@npm:7.1.0" + dependencies: + ansi-regex: ^6.0.1 + checksum: 859c73fcf27869c22a4e4d8c6acfe690064659e84bef9458aa6d13719d09ca88dcfd40cbf31fd0be63518ea1a643fe070b4827d353e09533a5b0b9fd4553d64d + languageName: node + linkType: hard + +"strip-eof@npm:^1.0.0": + version: 1.0.0 + resolution: "strip-eof@npm:1.0.0" + checksum: 40bc8ddd7e072f8ba0c2d6d05267b4e0a4800898c3435b5fb5f5a21e6e47dfaff18467e7aa0d1844bb5d6274c3097246595841fbfeb317e541974ee992cac506 + languageName: node + linkType: hard + +"strip-final-newline@npm:^2.0.0": + version: 2.0.0 + resolution: "strip-final-newline@npm:2.0.0" + checksum: 69412b5e25731e1938184b5d489c32e340605bb611d6140344abc3421b7f3c6f9984b21dff296dfcf056681b82caa3bb4cc996a965ce37bcfad663e92eae9c64 + languageName: node + linkType: hard + +"strip-json-comments@npm:~2.0.1": + version: 2.0.1 + resolution: "strip-json-comments@npm:2.0.1" + checksum: 1074ccb63270d32ca28edfb0a281c96b94dc679077828135141f27d52a5a398ef5e78bcf22809d23cadc2b81dfbe345eb5fd8699b385c8b1128907dec4a7d1e1 + languageName: node + linkType: hard + +"structured-headers@npm:^0.4.1": + version: 0.4.1 + resolution: "structured-headers@npm:0.4.1" + checksum: 2f3073b2c8b4f2515367a1647ba0b6764ce6d35b3943605940de41077c2afd2513257f4bf6fbfd67a3455f25a3e844905da6fddde6b6ad7974256495311a25a3 + languageName: node + linkType: hard + +"sucrase@npm:3.35.0": + version: 3.35.0 + resolution: "sucrase@npm:3.35.0" + dependencies: + "@jridgewell/gen-mapping": ^0.3.2 + commander: ^4.0.0 + glob: ^10.3.10 + lines-and-columns: ^1.1.6 + mz: ^2.7.0 + pirates: ^4.0.1 + ts-interface-checker: ^0.1.9 + bin: + sucrase: bin/sucrase + sucrase-node: bin/sucrase-node + checksum: 9fc5792a9ab8a14dcf9c47dcb704431d35c1cdff1d17d55d382a31c2e8e3063870ad32ce120a80915498486246d612e30cda44f1624d9d9a10423e1a43487ad1 + languageName: node + linkType: hard + +"sudo-prompt@npm:9.1.1": + version: 9.1.1 + resolution: "sudo-prompt@npm:9.1.1" + checksum: 20fe5bde6a27725d87938e68d6f99c0798ce9bf3a8fdebd58392a0436df713c66ebf67863e682941ff98ee7611e40ed599e12be7f264c9286106feb0f3db3860 + languageName: node + linkType: hard + +"sudo-prompt@npm:^8.2.0": + version: 8.2.5 + resolution: "sudo-prompt@npm:8.2.5" + checksum: bacff1f18a8ab8dba345cc1f3cf3a02b4cc571f71585df79af95af31278f56107f7c29402f5347b07c489888c63f2deb78d544b93a6347e83d0ed0847f4bc163 + languageName: node + linkType: hard + +"supports-color@npm:^5.3.0": + version: 5.5.0 + resolution: "supports-color@npm:5.5.0" + dependencies: + has-flag: ^3.0.0 + checksum: 95f6f4ba5afdf92f495b5a912d4abee8dcba766ae719b975c56c084f5004845f6f5a5f7769f52d53f40e21952a6d87411bafe34af4a01e65f9926002e38e1dac + languageName: node + linkType: hard + +"supports-color@npm:^7.0.0, supports-color@npm:^7.1.0": + version: 7.2.0 + resolution: "supports-color@npm:7.2.0" + dependencies: + has-flag: ^4.0.0 + checksum: 3dda818de06ebbe5b9653e07842d9479f3555ebc77e9a0280caf5a14fb877ffee9ed57007c3b78f5a6324b8dbeec648d9e97a24e2ed9fdb81ddc69ea07100f4a + languageName: node + linkType: hard + +"supports-color@npm:^8.0.0": + version: 8.1.1 + resolution: "supports-color@npm:8.1.1" + dependencies: + has-flag: ^4.0.0 + checksum: c052193a7e43c6cdc741eb7f378df605636e01ad434badf7324f17fb60c69a880d8d8fcdcb562cf94c2350e57b937d7425ab5b8326c67c2adc48f7c87c1db406 + languageName: node + linkType: hard + +"supports-hyperlinks@npm:^2.0.0": + version: 2.3.0 + resolution: "supports-hyperlinks@npm:2.3.0" + dependencies: + has-flag: ^4.0.0 + supports-color: ^7.0.0 + checksum: 9ee0de3c8ce919d453511b2b1588a8205bd429d98af94a01df87411391010fe22ca463f268c84b2ce2abad019dfff8452aa02806eeb5c905a8d7ad5c4f4c52b8 + languageName: node + linkType: hard + +"supports-preserve-symlinks-flag@npm:^1.0.0": + version: 1.0.0 + resolution: "supports-preserve-symlinks-flag@npm:1.0.0" + checksum: 53b1e247e68e05db7b3808b99b892bd36fb096e6fba213a06da7fab22045e97597db425c724f2bbd6c99a3c295e1e73f3e4de78592289f38431049e1277ca0ae + languageName: node + linkType: hard + +"svg-parser@npm:^2.0.4": + version: 2.0.4 + resolution: "svg-parser@npm:2.0.4" + checksum: b3de6653048212f2ae7afe4a423e04a76ec6d2d06e1bf7eacc618a7c5f7df7faa5105561c57b94579ec831fbbdbf5f190ba56a9205ff39ed13eabdf8ab086ddf + languageName: node + linkType: hard + +"svgo@npm:^3.0.2": + version: 3.3.2 + resolution: "svgo@npm:3.3.2" + dependencies: + "@trysound/sax": 0.2.0 + commander: ^7.2.0 + css-select: ^5.1.0 + css-tree: ^2.3.1 + css-what: ^6.1.0 + csso: ^5.0.5 + picocolors: ^1.0.0 + bin: + svgo: ./bin/svgo + checksum: a3f8aad597dec13ab24e679c4c218147048dc1414fe04e99447c5f42a6e077b33d712d306df84674b5253b98c9b84dfbfb41fdd08552443b04946e43d03e054e + languageName: node + linkType: hard + +"tar@npm:^6.1.11, tar@npm:^6.2.1": + version: 6.2.1 + resolution: "tar@npm:6.2.1" + dependencies: + chownr: ^2.0.0 + fs-minipass: ^2.0.0 + minipass: ^5.0.0 + minizlib: ^2.1.1 + mkdirp: ^1.0.3 + yallist: ^4.0.0 + checksum: f1322768c9741a25356c11373bce918483f40fa9a25c69c59410c8a1247632487edef5fe76c5f12ac51a6356d2f1829e96d2bc34098668a2fc34d76050ac2b6c + languageName: node + linkType: hard + +"tar@npm:^7.4.3": + version: 7.4.3 + resolution: "tar@npm:7.4.3" + dependencies: + "@isaacs/fs-minipass": ^4.0.0 + chownr: ^3.0.0 + minipass: ^7.1.2 + minizlib: ^3.0.1 + mkdirp: ^3.0.1 + yallist: ^5.0.0 + checksum: 8485350c0688331c94493031f417df069b778aadb25598abdad51862e007c39d1dd5310702c7be4a6784731a174799d8885d2fde0484269aea205b724d7b2ffa + languageName: node + linkType: hard + +"temp-dir@npm:^2.0.0, temp-dir@npm:~2.0.0": + version: 2.0.0 + resolution: "temp-dir@npm:2.0.0" + checksum: cc4f0404bf8d6ae1a166e0e64f3f409b423f4d1274d8c02814a59a5529f07db6cd070a749664141b992b2c1af337fa9bb451a460a43bb9bcddc49f235d3115aa + languageName: node + linkType: hard + +"temp@npm:^0.8.4": + version: 0.8.4 + resolution: "temp@npm:0.8.4" + dependencies: + rimraf: ~2.6.2 + checksum: f35bed78565355dfdf95f730b7b489728bd6b7e35071bcc6497af7c827fb6c111fbe9063afc7b8cbc19522a072c278679f9a0ee81e684aa2c8617cc0f2e9c191 + languageName: node + linkType: hard + +"tempy@npm:^0.7.1": + version: 0.7.1 + resolution: "tempy@npm:0.7.1" + dependencies: + del: ^6.0.0 + is-stream: ^2.0.0 + temp-dir: ^2.0.0 + type-fest: ^0.16.0 + unique-string: ^2.0.0 + checksum: 265652f94eed077c311777e0290c4b4f3ec670c71c62c979efcbbd67ee506d677ff2741a72d7160556e9b0fba8fc5fbd7b3c482ac94c8acc48d85411f1f079c3 + languageName: node + linkType: hard + +"terminal-link@npm:^2.1.1": + version: 2.1.1 + resolution: "terminal-link@npm:2.1.1" + dependencies: + ansi-escapes: ^4.2.1 + supports-hyperlinks: ^2.0.0 + checksum: ce3d2cd3a438c4a9453947aa664581519173ea40e77e2534d08c088ee6dda449eabdbe0a76d2a516b8b73c33262fedd10d5270ccf7576ae316e3db170ce6562f + languageName: node + linkType: hard + +"terser@npm:^5.15.0": + version: 5.39.0 + resolution: "terser@npm:5.39.0" + dependencies: + "@jridgewell/source-map": ^0.3.3 + acorn: ^8.8.2 + commander: ^2.20.0 + source-map-support: ~0.5.20 + bin: + terser: bin/terser + checksum: e39c302aed7a70273c8b03032c37c68c8d9d3b432a7b6abe89caf9d087f7dd94d743c01ee5ba1431a095ad347c4a680b60d258f298a097cf512346d6041eb661 + languageName: node + linkType: hard + +"test-exclude@npm:^6.0.0": + version: 6.0.0 + resolution: "test-exclude@npm:6.0.0" + dependencies: + "@istanbuljs/schema": ^0.1.2 + glob: ^7.1.4 + minimatch: ^3.0.4 + checksum: 3b34a3d77165a2cb82b34014b3aba93b1c4637a5011807557dc2f3da826c59975a5ccad765721c4648b39817e3472789f9b0fa98fc854c5c1c7a1e632aacdc28 + languageName: node + linkType: hard + +"thenify-all@npm:^1.0.0": + version: 1.6.0 + resolution: "thenify-all@npm:1.6.0" + dependencies: + thenify: ">= 3.1.0 < 4" + checksum: dba7cc8a23a154cdcb6acb7f51d61511c37a6b077ec5ab5da6e8b874272015937788402fd271fdfc5f187f8cb0948e38d0a42dcc89d554d731652ab458f5343e + languageName: node + linkType: hard + +"thenify@npm:>= 3.1.0 < 4": + version: 3.3.1 + resolution: "thenify@npm:3.3.1" + dependencies: + any-promise: ^1.0.0 + checksum: 84e1b804bfec49f3531215f17b4a6e50fd4397b5f7c1bccc427b9c656e1ecfb13ea79d899930184f78bc2f57285c54d9a50a590c8868f4f0cef5c1d9f898b05e + languageName: node + linkType: hard + +"throat@npm:^5.0.0": + version: 5.0.0 + resolution: "throat@npm:5.0.0" + checksum: 031ff7f4431618036c1dedd99c8aa82f5c33077320a8358ed829e84b320783781d1869fe58e8f76e948306803de966f5f7573766a437562c9f5c033297ad2fe2 + languageName: node + linkType: hard + +"through@npm:2": + version: 2.3.8 + resolution: "through@npm:2.3.8" + checksum: a38c3e059853c494af95d50c072b83f8b676a9ba2818dcc5b108ef252230735c54e0185437618596c790bbba8fcdaef5b290405981ffa09dce67b1f1bf190cbd + languageName: node + linkType: hard + +"tmp@npm:^0.0.33": + version: 0.0.33 + resolution: "tmp@npm:0.0.33" + dependencies: + os-tmpdir: ~1.0.2 + checksum: 902d7aceb74453ea02abbf58c203f4a8fc1cead89b60b31e354f74ed5b3fb09ea817f94fb310f884a5d16987dd9fa5a735412a7c2dd088dd3d415aa819ae3a28 + languageName: node + linkType: hard + +"tmpl@npm:1.0.5": + version: 1.0.5 + resolution: "tmpl@npm:1.0.5" + checksum: cd922d9b853c00fe414c5a774817be65b058d54a2d01ebb415840960406c669a0fc632f66df885e24cb022ec812739199ccbdb8d1164c3e513f85bfca5ab2873 + languageName: node + linkType: hard + +"to-regex-range@npm:^5.0.1": + version: 5.0.1 + resolution: "to-regex-range@npm:5.0.1" + dependencies: + is-number: ^7.0.0 + checksum: f76fa01b3d5be85db6a2a143e24df9f60dd047d151062d0ba3df62953f2f697b16fe5dad9b0ac6191c7efc7b1d9dcaa4b768174b7b29da89d4428e64bc0a20ed + languageName: node + linkType: hard + +"toidentifier@npm:1.0.1": + version: 1.0.1 + resolution: "toidentifier@npm:1.0.1" + checksum: 952c29e2a85d7123239b5cfdd889a0dde47ab0497f0913d70588f19c53f7e0b5327c95f4651e413c74b785147f9637b17410ac8c846d5d4a20a5a33eb6dc3a45 + languageName: node + linkType: hard + +"tr46@npm:~0.0.3": + version: 0.0.3 + resolution: "tr46@npm:0.0.3" + checksum: 726321c5eaf41b5002e17ffbd1fb7245999a073e8979085dacd47c4b4e8068ff5777142fc6726d6ca1fd2ff16921b48788b87225cbc57c72636f6efa8efbffe3 + languageName: node + linkType: hard + +"ts-interface-checker@npm:^0.1.9": + version: 0.1.13 + resolution: "ts-interface-checker@npm:0.1.13" + checksum: 20c29189c2dd6067a8775e07823ddf8d59a33e2ffc47a1bd59a5cb28bb0121a2969a816d5e77eda2ed85b18171aa5d1c4005a6b88ae8499ec7cc49f78571cb5e + languageName: node + linkType: hard + +"tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.4.0": + version: 2.8.1 + resolution: "tslib@npm:2.8.1" + checksum: e4aba30e632b8c8902b47587fd13345e2827fa639e7c3121074d5ee0880723282411a8838f830b55100cbe4517672f84a2472667d355b81e8af165a55dc6203a + languageName: node + linkType: hard + +"type-detect@npm:4.0.8": + version: 4.0.8 + resolution: "type-detect@npm:4.0.8" + checksum: 62b5628bff67c0eb0b66afa371bd73e230399a8d2ad30d852716efcc4656a7516904570cd8631a49a3ce57c10225adf5d0cbdcb47f6b0255fe6557c453925a15 + languageName: node + linkType: hard + +"type-fest@npm:^0.16.0": + version: 0.16.0 + resolution: "type-fest@npm:0.16.0" + checksum: 1a4102c06dc109db00418c753062e206cab65befd469d000ece4452ee649bf2a9cf57686d96fb42326bc9d918d9a194d4452897b486dcc41989e5c99e4e87094 + languageName: node + linkType: hard + +"type-fest@npm:^0.21.3": + version: 0.21.3 + resolution: "type-fest@npm:0.21.3" + checksum: e6b32a3b3877f04339bae01c193b273c62ba7bfc9e325b8703c4ee1b32dc8fe4ef5dfa54bf78265e069f7667d058e360ae0f37be5af9f153b22382cd55a9afe0 + languageName: node + linkType: hard + +"type-fest@npm:^0.7.1": + version: 0.7.1 + resolution: "type-fest@npm:0.7.1" + checksum: 5b1b113529d59949d97b76977d545989ddc11b81bb0c766b6d2ccc65473cb4b4a5c7d24f5be2c2bb2de302a5d7a13c1732ea1d34c8c59b7e0ec1f890cf7fc424 + languageName: node + linkType: hard + +"typescript@npm:^5.3.3": + version: 5.8.2 + resolution: "typescript@npm:5.8.2" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 7f9e3d7ac15da6df713e439e785e51facd65d6450d5f51fab3e8d2f2e3f4eb317080d895480b8e305450cdbcb37e17383e8bf521e7395f8b556e2f2a4730ed86 + languageName: node + linkType: hard + +"typescript@patch:typescript@^5.3.3#~builtin": + version: 5.8.2 + resolution: "typescript@patch:typescript@npm%3A5.8.2#~builtin::version=5.8.2&hash=14eedb" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: a58d19ff9811c1764a299dd83ca20ed8020f0ab642906dafc880121b710751227201531fdc99878158205c356ac79679b0b61ac5b42eda0e28bfb180947a258d + languageName: node + linkType: hard + +"ua-parser-js@npm:^1.0.35": + version: 1.0.40 + resolution: "ua-parser-js@npm:1.0.40" + bin: + ua-parser-js: script/cli.js + checksum: ae555a33dc9395dd877e295d6adbf5634e047aad7c3358328830218f3ca3a6233e35848cd355465a7612f269860e8029984389282940c7a27c9af4dfcdbba8c3 + languageName: node + linkType: hard + +"undici-types@npm:~6.20.0": + version: 6.20.0 + resolution: "undici-types@npm:6.20.0" + checksum: b7bc50f012dc6afbcce56c9fd62d7e86b20a62ff21f12b7b5cbf1973b9578d90f22a9c7fe50e638e96905d33893bf2f9f16d98929c4673c2480de05c6c96ea8b + languageName: node + linkType: hard + +"undici@npm:^6.18.2": + version: 6.21.1 + resolution: "undici@npm:6.21.1" + checksum: 2efc52f77224754a2efa7cb6459829f3c93c8321d17e76f574a904b353783d95073b6116f5b15637c4845d98c9dc5a019b809cb9d63b3529267e7727c49f6996 + languageName: node + linkType: hard + +"unicode-canonical-property-names-ecmascript@npm:^2.0.0": + version: 2.0.1 + resolution: "unicode-canonical-property-names-ecmascript@npm:2.0.1" + checksum: 3c3dabdb1d22aef4904399f9e810d0b71c0b12b3815169d96fac97e56d5642840c6071cf709adcace2252bc6bb80242396c2ec74b37224eb015c5f7aca40bad7 + languageName: node + linkType: hard + +"unicode-match-property-ecmascript@npm:^2.0.0": + version: 2.0.0 + resolution: "unicode-match-property-ecmascript@npm:2.0.0" + dependencies: + unicode-canonical-property-names-ecmascript: ^2.0.0 + unicode-property-aliases-ecmascript: ^2.0.0 + checksum: 1f34a7434a23df4885b5890ac36c5b2161a809887000be560f56ad4b11126d433c0c1c39baf1016bdabed4ec54829a6190ee37aa24919aa116dc1a5a8a62965a + languageName: node + linkType: hard + +"unicode-match-property-value-ecmascript@npm:^2.1.0": + version: 2.2.0 + resolution: "unicode-match-property-value-ecmascript@npm:2.2.0" + checksum: 9e3151e1d0bc6be35c4cef105e317c04090364173e8462005b5cde08a1e7c858b6586486cfebac39dc2c6c8c9ee24afb245de6d527604866edfa454fe2a35fae + languageName: node + linkType: hard + +"unicode-property-aliases-ecmascript@npm:^2.0.0": + version: 2.1.0 + resolution: "unicode-property-aliases-ecmascript@npm:2.1.0" + checksum: 243524431893649b62cc674d877bd64ef292d6071dd2fd01ab4d5ad26efbc104ffcd064f93f8a06b7e4ec54c172bf03f6417921a0d8c3a9994161fe1f88f815b + languageName: node + linkType: hard + +"unique-filename@npm:^3.0.0": + version: 3.0.0 + resolution: "unique-filename@npm:3.0.0" + dependencies: + unique-slug: ^4.0.0 + checksum: 8e2f59b356cb2e54aab14ff98a51ac6c45781d15ceaab6d4f1c2228b780193dc70fae4463ce9e1df4479cb9d3304d7c2043a3fb905bdeca71cc7e8ce27e063df + languageName: node + linkType: hard + +"unique-filename@npm:^4.0.0": + version: 4.0.0 + resolution: "unique-filename@npm:4.0.0" + dependencies: + unique-slug: ^5.0.0 + checksum: 6a62094fcac286b9ec39edbd1f8f64ff92383baa430af303dfed1ffda5e47a08a6b316408554abfddd9730c78b6106bef4ca4d02c1231a735ddd56ced77573df + languageName: node + linkType: hard + +"unique-slug@npm:^4.0.0": + version: 4.0.0 + resolution: "unique-slug@npm:4.0.0" + dependencies: + imurmurhash: ^0.1.4 + checksum: 0884b58365af59f89739e6f71e3feacb5b1b41f2df2d842d0757933620e6de08eff347d27e9d499b43c40476cbaf7988638d3acb2ffbcb9d35fd035591adfd15 + languageName: node + linkType: hard + +"unique-slug@npm:^5.0.0": + version: 5.0.0 + resolution: "unique-slug@npm:5.0.0" + dependencies: + imurmurhash: ^0.1.4 + checksum: 222d0322bc7bbf6e45c08967863212398313ef73423f4125e075f893a02405a5ffdbaaf150f7dd1e99f8861348a486dd079186d27c5f2c60e465b7dcbb1d3e5b + languageName: node + linkType: hard + +"unique-string@npm:^2.0.0, unique-string@npm:~2.0.0": + version: 2.0.0 + resolution: "unique-string@npm:2.0.0" + dependencies: + crypto-random-string: ^2.0.0 + checksum: ef68f639136bcfe040cf7e3cd7a8dff076a665288122855148a6f7134092e6ed33bf83a7f3a9185e46c98dddc445a0da6ac25612afa1a7c38b8b654d6c02498e + languageName: node + linkType: hard + +"universalify@npm:^0.1.0": + version: 0.1.2 + resolution: "universalify@npm:0.1.2" + checksum: 40cdc60f6e61070fe658ca36016a8f4ec216b29bf04a55dce14e3710cc84c7448538ef4dad3728d0bfe29975ccd7bfb5f414c45e7b78883567fb31b246f02dff + languageName: node + linkType: hard + +"universalify@npm:^1.0.0": + version: 1.0.0 + resolution: "universalify@npm:1.0.0" + checksum: 095a808f2b915e3b89d29b6f3b4ee4163962b02fa5b7cb686970b8d0439f4ca789bc43f319b7cbb1ce552ae724e631d148e5aee9ce04c4f46a7fe0c5bbfd2b9e + languageName: node + linkType: hard + +"universalify@npm:^2.0.0": + version: 2.0.1 + resolution: "universalify@npm:2.0.1" + checksum: ecd8469fe0db28e7de9e5289d32bd1b6ba8f7183db34f3bfc4ca53c49891c2d6aa05f3fb3936a81285a905cc509fb641a0c3fc131ec786167eff41236ae32e60 + languageName: node + linkType: hard + +"unpipe@npm:~1.0.0": + version: 1.0.0 + resolution: "unpipe@npm:1.0.0" + checksum: 4fa18d8d8d977c55cb09715385c203197105e10a6d220087ec819f50cb68870f02942244f1017565484237f1f8c5d3cd413631b1ae104d3096f24fdfde1b4aa2 + languageName: node + linkType: hard + +"update-browserslist-db@npm:^1.1.1": + version: 1.1.3 + resolution: "update-browserslist-db@npm:1.1.3" + dependencies: + escalade: ^3.2.0 + picocolors: ^1.1.1 + peerDependencies: + browserslist: ">= 4.21.0" + bin: + update-browserslist-db: cli.js + checksum: 7b6d8d08c34af25ee435bccac542bedcb9e57c710f3c42421615631a80aa6dd28b0a81c9d2afbef53799d482fb41453f714b8a7a0a8003e3b4ec8fb1abb819af + languageName: node + linkType: hard + +"utils-merge@npm:1.0.1": + version: 1.0.1 + resolution: "utils-merge@npm:1.0.1" + checksum: c81095493225ecfc28add49c106ca4f09cdf56bc66731aa8dabc2edbbccb1e1bfe2de6a115e5c6a380d3ea166d1636410b62ef216bb07b3feb1cfde1d95d5080 + languageName: node + linkType: hard + +"uuid@npm:^7.0.3": + version: 7.0.3 + resolution: "uuid@npm:7.0.3" + bin: + uuid: dist/bin/uuid + checksum: f5b7b5cc28accac68d5c083fd51cca64896639ebd4cca88c6cfb363801aaa83aa439c86dfc8446ea250a7a98d17afd2ad9e88d9d4958c79a412eccb93bae29de + languageName: node + linkType: hard + +"uuid@npm:^8.0.0, uuid@npm:^8.3.2": + version: 8.3.2 + resolution: "uuid@npm:8.3.2" + bin: + uuid: dist/bin/uuid + checksum: 5575a8a75c13120e2f10e6ddc801b2c7ed7d8f3c8ac22c7ed0c7b2ba6383ec0abda88c905085d630e251719e0777045ae3236f04c812184b7c765f63a70e58df + languageName: node + linkType: hard + +"validate-npm-package-name@npm:^5.0.0": + version: 5.0.1 + resolution: "validate-npm-package-name@npm:5.0.1" + checksum: 0d583a1af23aeffea7748742cf22b6802458736fb8b60323ba5949763824d46f796474b0e1b9206beb716f9d75269e19dbd7795d6b038b29d561be95dd827381 + languageName: node + linkType: hard + +"vary@npm:~1.1.2": + version: 1.1.2 + resolution: "vary@npm:1.1.2" + checksum: ae0123222c6df65b437669d63dfa8c36cee20a504101b2fcd97b8bf76f91259c17f9f2b4d70a1e3c6bbcee7f51b28392833adb6b2770b23b01abec84e369660b + languageName: node + linkType: hard + +"vlq@npm:^1.0.0": + version: 1.0.1 + resolution: "vlq@npm:1.0.1" + checksum: 67ab6dd35c787eaa02c0ff1a869dd07a230db08722fb6014adaaf432634808ddb070765f70958b47997e438c331790cfcf20902411b0d6453f1a2a5923522f55 + languageName: node + linkType: hard + +"walker@npm:^1.0.7, walker@npm:^1.0.8": + version: 1.0.8 + resolution: "walker@npm:1.0.8" + dependencies: + makeerror: 1.0.12 + checksum: ad7a257ea1e662e57ef2e018f97b3c02a7240ad5093c392186ce0bcf1f1a60bbadd520d073b9beb921ed99f64f065efb63dfc8eec689a80e569f93c1c5d5e16c + languageName: node + linkType: hard + +"warn-once@npm:0.1.1": + version: 0.1.1 + resolution: "warn-once@npm:0.1.1" + checksum: e6a5a1f5a8dba7744399743d3cfb571db4c3947897875d4962a7c5b1bf2195ab4518c838cb4cea652e71729f21bba2e98dc75686f5fccde0fabbd894e2ed0c0d + languageName: node + linkType: hard + +"wcwidth@npm:^1.0.1": + version: 1.0.1 + resolution: "wcwidth@npm:1.0.1" + dependencies: + defaults: ^1.0.3 + checksum: 814e9d1ddcc9798f7377ffa448a5a3892232b9275ebb30a41b529607691c0491de47cba426e917a4d08ded3ee7e9ba2f3fe32e62ee3cd9c7d3bafb7754bd553c + languageName: node + linkType: hard + +"web-streams-polyfill@npm:^3.3.2": + version: 3.3.3 + resolution: "web-streams-polyfill@npm:3.3.3" + checksum: 21ab5ea08a730a2ef8023736afe16713b4f2023ec1c7085c16c8e293ee17ed085dff63a0ad8722da30c99c4ccbd4ccd1b2e79c861829f7ef2963d7de7004c2cb + languageName: node + linkType: hard + +"webidl-conversions@npm:^3.0.0": + version: 3.0.1 + resolution: "webidl-conversions@npm:3.0.1" + checksum: c92a0a6ab95314bde9c32e1d0a6dfac83b578f8fa5f21e675bc2706ed6981bc26b7eb7e6a1fab158e5ce4adf9caa4a0aee49a52505d4d13c7be545f15021b17c + languageName: node + linkType: hard + +"webidl-conversions@npm:^5.0.0": + version: 5.0.0 + resolution: "webidl-conversions@npm:5.0.0" + checksum: ccf1ec2ca7c0b5671e5440ace4a66806ae09c49016ab821481bec0c05b1b82695082dc0a27d1fe9d804d475a408ba0c691e6803fd21be608e710955d4589cd69 + languageName: node + linkType: hard + +"whatwg-fetch@npm:^3.0.0": + version: 3.6.20 + resolution: "whatwg-fetch@npm:3.6.20" + checksum: c58851ea2c4efe5c2235f13450f426824cf0253c1d45da28f45900290ae602a20aff2ab43346f16ec58917d5562e159cd691efa368354b2e82918c2146a519c5 + languageName: node + linkType: hard + +"whatwg-url-without-unicode@npm:8.0.0-3": + version: 8.0.0-3 + resolution: "whatwg-url-without-unicode@npm:8.0.0-3" + dependencies: + buffer: ^5.4.3 + punycode: ^2.1.1 + webidl-conversions: ^5.0.0 + checksum: 1fe266f7161e0bd961087c1254a5a59d1138c3d402064495eed65e7590d9caed5a1d9acfd6e7a1b0bf0431253b0e637ee3e4ffc08387cd60e0b2ddb9d4687a4b + languageName: node + linkType: hard + +"whatwg-url@npm:^5.0.0": + version: 5.0.0 + resolution: "whatwg-url@npm:5.0.0" + dependencies: + tr46: ~0.0.3 + webidl-conversions: ^3.0.0 + checksum: b8daed4ad3356cc4899048a15b2c143a9aed0dfae1f611ebd55073310c7b910f522ad75d727346ad64203d7e6c79ef25eafd465f4d12775ca44b90fa82ed9e2c + languageName: node + linkType: hard + +"which@npm:^1.2.9": + version: 1.3.1 + resolution: "which@npm:1.3.1" + dependencies: + isexe: ^2.0.0 + bin: + which: ./bin/which + checksum: f2e185c6242244b8426c9df1510e86629192d93c1a986a7d2a591f2c24869e7ffd03d6dac07ca863b2e4c06f59a4cc9916c585b72ee9fa1aa609d0124df15e04 + languageName: node + linkType: hard + +"which@npm:^2.0.1": + version: 2.0.2 + resolution: "which@npm:2.0.2" + dependencies: + isexe: ^2.0.0 + bin: + node-which: ./bin/node-which + checksum: 1a5c563d3c1b52d5f893c8b61afe11abc3bab4afac492e8da5bde69d550de701cf9806235f20a47b5c8fa8a1d6a9135841de2596535e998027a54589000e66d1 + languageName: node + linkType: hard + +"which@npm:^5.0.0": + version: 5.0.0 + resolution: "which@npm:5.0.0" + dependencies: + isexe: ^3.1.1 + bin: + node-which: bin/which.js + checksum: 6ec99e89ba32c7e748b8a3144e64bfc74aa63e2b2eacbb61a0060ad0b961eb1a632b08fb1de067ed59b002cec3e21de18299216ebf2325ef0f78e0f121e14e90 + languageName: node + linkType: hard + +"wonka@npm:^6.3.2": + version: 6.3.5 + resolution: "wonka@npm:6.3.5" + checksum: bd9f4330664ea971ddbc762275c081d5a635bcebd1c567211d43278b925f3394ad454bb33a0ef5e8beadfaad552cdbc92c018dfb96350f3895341998efa5f521 + languageName: node + linkType: hard + +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0": + version: 7.0.0 + resolution: "wrap-ansi@npm:7.0.0" + dependencies: + ansi-styles: ^4.0.0 + string-width: ^4.1.0 + strip-ansi: ^6.0.0 + checksum: a790b846fd4505de962ba728a21aaeda189b8ee1c7568ca5e817d85930e06ef8d1689d49dbf0e881e8ef84436af3a88bc49115c2e2788d841ff1b8b5b51a608b + languageName: node + linkType: hard + +"wrap-ansi@npm:^8.1.0": + version: 8.1.0 + resolution: "wrap-ansi@npm:8.1.0" + dependencies: + ansi-styles: ^6.1.0 + string-width: ^5.0.1 + strip-ansi: ^7.0.1 + checksum: 371733296dc2d616900ce15a0049dca0ef67597d6394c57347ba334393599e800bab03c41d4d45221b6bc967b8c453ec3ae4749eff3894202d16800fdfe0e238 + languageName: node + linkType: hard + +"wrappy@npm:1": + version: 1.0.2 + resolution: "wrappy@npm:1.0.2" + checksum: 159da4805f7e84a3d003d8841557196034155008f817172d4e986bd591f74aa82aa7db55929a54222309e01079a65a92a9e6414da5a6aa4b01ee44a511ac3ee5 + languageName: node + linkType: hard + +"write-file-atomic@npm:^2.3.0": + version: 2.4.3 + resolution: "write-file-atomic@npm:2.4.3" + dependencies: + graceful-fs: ^4.1.11 + imurmurhash: ^0.1.4 + signal-exit: ^3.0.2 + checksum: 2db81f92ae974fd87ab4a5e7932feacaca626679a7c98fcc73ad8fcea5a1950eab32fa831f79e9391ac99b562ca091ad49be37a79045bd65f595efbb8f4596ae + languageName: node + linkType: hard + +"write-file-atomic@npm:^4.0.2": + version: 4.0.2 + resolution: "write-file-atomic@npm:4.0.2" + dependencies: + imurmurhash: ^0.1.4 + signal-exit: ^3.0.7 + checksum: 5da60bd4eeeb935eec97ead3df6e28e5917a6bd317478e4a85a5285e8480b8ed96032bbcc6ecd07b236142a24f3ca871c924ec4a6575e623ec1b11bf8c1c253c + languageName: node + linkType: hard + +"ws@npm:^6.2.3": + version: 6.2.3 + resolution: "ws@npm:6.2.3" + dependencies: + async-limiter: ~1.0.0 + checksum: bbc96ff5628832d80669a88fd117487bf070492dfaa50df77fa442a2b119792e772f4365521e0a8e025c0d51173c54fa91adab165c11b8e0674685fdd36844a5 + languageName: node + linkType: hard + +"ws@npm:^7, ws@npm:^7.5.10": + version: 7.5.10 + resolution: "ws@npm:7.5.10" + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + checksum: f9bb062abf54cc8f02d94ca86dcd349c3945d63851f5d07a3a61c2fcb755b15a88e943a63cf580cbdb5b74436d67ef6b67f745b8f7c0814e411379138e1863cb + languageName: node + linkType: hard + +"ws@npm:^8.12.1": + version: 8.18.1 + resolution: "ws@npm:8.18.1" + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ">=5.0.2" + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + checksum: 4658357185d891bc45cc2d42a84f9e192d047e8476fb5cba25b604f7d75ca87ca0dd54cd0b2cc49aeee57c79045a741cb7d0b14501953ac60c790cd105c42f23 + languageName: node + linkType: hard + +"xcode@npm:^3.0.1": + version: 3.0.1 + resolution: "xcode@npm:3.0.1" + dependencies: + simple-plist: ^1.1.0 + uuid: ^7.0.3 + checksum: 908ff85851f81aec6e36ca24427db092e1cc068f052716e14de5e762196858039efabbe053a1abe8920184622501049e74a93618e8692b982f7604a9847db108 + languageName: node + linkType: hard + +"xml2js@npm:0.6.0": + version: 0.6.0 + resolution: "xml2js@npm:0.6.0" + dependencies: + sax: ">=0.6.0" + xmlbuilder: ~11.0.0 + checksum: 437f353fd66d367bf158e9555a0625df9965d944e499728a5c6bc92a54a2763179b144f14b7e1c725040f56bbd22b0fa6cfcb09ec4faf39c45ce01efe631f40b + languageName: node + linkType: hard + +"xmlbuilder@npm:^14.0.0": + version: 14.0.0 + resolution: "xmlbuilder@npm:14.0.0" + checksum: 9e93d3c73957dbb21acde63afa5d241b19057bdbdca9d53534d8351e70f1d5c9db154e3ca19bd3e9ea84c082539ab6e7845591c8778a663e8b5d3470d5427a8b + languageName: node + linkType: hard + +"xmlbuilder@npm:^15.1.1": + version: 15.1.1 + resolution: "xmlbuilder@npm:15.1.1" + checksum: 14f7302402e28d1f32823583d121594a9dca36408d40320b33f598bd589ca5163a352d076489c9c64d2dc1da19a790926a07bf4191275330d4de2b0d85bb1843 + languageName: node + linkType: hard + +"xmlbuilder@npm:~11.0.0": + version: 11.0.1 + resolution: "xmlbuilder@npm:11.0.1" + checksum: 7152695e16f1a9976658215abab27e55d08b1b97bca901d58b048d2b6e106b5af31efccbdecf9b07af37c8377d8e7e821b494af10b3a68b0ff4ae60331b415b0 + languageName: node + linkType: hard + +"y18n@npm:^5.0.5": + version: 5.0.8 + resolution: "y18n@npm:5.0.8" + checksum: 54f0fb95621ee60898a38c572c515659e51cc9d9f787fb109cef6fde4befbe1c4602dc999d30110feee37456ad0f1660fa2edcfde6a9a740f86a290999550d30 + languageName: node + linkType: hard + +"yallist@npm:^3.0.2": + version: 3.1.1 + resolution: "yallist@npm:3.1.1" + checksum: 48f7bb00dc19fc635a13a39fe547f527b10c9290e7b3e836b9a8f1ca04d4d342e85714416b3c2ab74949c9c66f9cebb0473e6bc353b79035356103b47641285d + languageName: node + linkType: hard + +"yallist@npm:^4.0.0": + version: 4.0.0 + resolution: "yallist@npm:4.0.0" + checksum: 343617202af32df2a15a3be36a5a8c0c8545208f3d3dfbc6bb7c3e3b7e8c6f8e7485432e4f3b88da3031a6e20afa7c711eded32ddfb122896ac5d914e75848d5 + languageName: node + linkType: hard + +"yallist@npm:^5.0.0": + version: 5.0.0 + resolution: "yallist@npm:5.0.0" + checksum: eba51182400b9f35b017daa7f419f434424410691bbc5de4f4240cc830fdef906b504424992700dc047f16b4d99100a6f8b8b11175c193f38008e9c96322b6a5 + languageName: node + linkType: hard + +"yargs-parser@npm:^21.1.1": + version: 21.1.1 + resolution: "yargs-parser@npm:21.1.1" + checksum: ed2d96a616a9e3e1cc7d204c62ecc61f7aaab633dcbfab2c6df50f7f87b393993fe6640d017759fe112d0cb1e0119f2b4150a87305cc873fd90831c6a58ccf1c + languageName: node + linkType: hard + +"yargs@npm:^17.6.2": + version: 17.7.2 + resolution: "yargs@npm:17.7.2" + dependencies: + cliui: ^8.0.1 + escalade: ^3.1.1 + get-caller-file: ^2.0.5 + require-directory: ^2.1.1 + string-width: ^4.2.3 + y18n: ^5.0.5 + yargs-parser: ^21.1.1 + checksum: 73b572e863aa4a8cbef323dd911d79d193b772defd5a51aab0aca2d446655216f5002c42c5306033968193bdbf892a7a4c110b0d77954a7fdf563e653967b56a + languageName: node + linkType: hard + +"yocto-queue@npm:^0.1.0": + version: 0.1.0 + resolution: "yocto-queue@npm:0.1.0" + checksum: f77b3d8d00310def622123df93d4ee654fc6a0096182af8bd60679ddcdfb3474c56c6c7190817c84a2785648cdee9d721c0154eb45698c62176c322fb46fc700 + languageName: node + linkType: hard diff --git a/ios/ExecutorchLib.xcframework/Info.plist b/ios/ExecutorchLib.xcframework/Info.plist index aaba93b395..6a6c556899 100644 --- a/ios/ExecutorchLib.xcframework/Info.plist +++ b/ios/ExecutorchLib.xcframework/Info.plist @@ -8,7 +8,7 @@ BinaryPath ExecutorchLib.framework/ExecutorchLib LibraryIdentifier - ios-arm64-simulator + ios-arm64 LibraryPath ExecutorchLib.framework SupportedArchitectures @@ -17,14 +17,12 @@ SupportedPlatform ios - SupportedPlatformVariant - simulator BinaryPath ExecutorchLib.framework/ExecutorchLib LibraryIdentifier - ios-arm64 + ios-arm64-simulator LibraryPath ExecutorchLib.framework SupportedArchitectures @@ -33,6 +31,8 @@ SupportedPlatform ios + SupportedPlatformVariant + simulator CFBundlePackageType diff --git a/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/ExecutorchLib b/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/ExecutorchLib index 1c90d33971..ceb1a7dfa2 100755 Binary files a/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/ExecutorchLib and b/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/ExecutorchLib differ diff --git a/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/Headers/ETModel.h b/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/Headers/ETModel.h index 9c78377e25..2c7477c171 100644 --- a/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/Headers/ETModel.h +++ b/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/Headers/ETModel.h @@ -8,9 +8,13 @@ - (NSNumber *)loadModel:(NSString *)filePath; - (NSNumber *)loadMethod:(NSString *)methodName; - (NSNumber *)loadForward; +- (NSArray *)execute:(NSString *)methodName + inputs:(NSArray *)inputs + shapes:(NSArray *)shapes + inputTypes:(NSArray *)inputTypes; - (NSArray *)forward:(NSArray *)inputs shapes:(NSArray *)shapes - inputTypes: (NSArray *)inputTypes; + inputTypes:(NSArray *)inputTypes; - (NSNumber *)getNumberOfInputs; - (NSNumber *)getInputType:(NSNumber *)index; - (NSArray *)getInputShape:(NSNumber *)index; diff --git a/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/Info.plist b/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/Info.plist index d9cf954dec..06f5586893 100644 Binary files a/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/Info.plist and b/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/Info.plist differ diff --git a/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/_CodeSignature/CodeResources b/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/_CodeSignature/CodeResources new file mode 100644 index 0000000000..450b64e955 --- /dev/null +++ b/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/_CodeSignature/CodeResources @@ -0,0 +1,124 @@ + + + + + files + + Headers/ETModel.h + + CFAz750OjepOG7MVBPABGfKHNeI= + + Headers/LLaMARunner.h + + SU8Fo2gR+gVVl9IplHgBJBRh1gQ= + + Info.plist + + l3rE2nBARVh++WIyHCfeHXD6Ewo= + + + files2 + + Headers/ETModel.h + + hash2 + + UXFd6a5OARqV4JnB+Jm4uqmt15aUmnXSOLPQKZTWZCc= + + + Headers/LLaMARunner.h + + hash2 + + or8gFkCO2QVkQgaeFAaqs/WqGjv8kABL8Rzcdcuexw0= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/ExecutorchLib b/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/ExecutorchLib index 80aa0d1761..a4edccd821 100755 Binary files a/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/ExecutorchLib and b/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/ExecutorchLib differ diff --git a/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/Headers/ETModel.h b/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/Headers/ETModel.h index 9c78377e25..2c7477c171 100644 --- a/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/Headers/ETModel.h +++ b/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/Headers/ETModel.h @@ -8,9 +8,13 @@ - (NSNumber *)loadModel:(NSString *)filePath; - (NSNumber *)loadMethod:(NSString *)methodName; - (NSNumber *)loadForward; +- (NSArray *)execute:(NSString *)methodName + inputs:(NSArray *)inputs + shapes:(NSArray *)shapes + inputTypes:(NSArray *)inputTypes; - (NSArray *)forward:(NSArray *)inputs shapes:(NSArray *)shapes - inputTypes: (NSArray *)inputTypes; + inputTypes:(NSArray *)inputTypes; - (NSNumber *)getNumberOfInputs; - (NSNumber *)getInputType:(NSNumber *)index; - (NSArray *)getInputShape:(NSNumber *)index; diff --git a/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/Info.plist b/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/Info.plist index 0b91a22ca8..e08b049b81 100644 Binary files a/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/Info.plist and b/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/Info.plist differ diff --git a/ios/RnExecutorch/SpeechToText.mm b/ios/RnExecutorch/SpeechToText.mm index c6948d921c..1e89f5c937 100644 --- a/ios/RnExecutorch/SpeechToText.mm +++ b/ios/RnExecutorch/SpeechToText.mm @@ -1,136 +1,35 @@ #import "SpeechToText.h" #import "models/BaseModel.h" -#import "models/stt/WhisperDecoder.hpp" -#import "models/stt/WhisperEncoder.hpp" #import +#import "models/stt/Whisper.hpp" +#import "models/stt/Moonshine.hpp" +#import "utils/SFFT.hpp" #import #import #import "./utils/ScalarType.h" +#import "models/stt/SpeechToTextBaseModel.hpp" @implementation SpeechToText { - WhisperEncoder *encoder; - WhisperDecoder *decoder; - BaseModel *preprocessor; - NSNumber *START_TOKEN; - NSNumber *EOS_TOKEN; - int fftSize; - int fftHopLength; - int maxSeqLen; -} - -- (instancetype)init { - self = [super init]; - if (self) { - maxSeqLen = 512; - fftSize = 512; - fftHopLength = 160; - START_TOKEN = @50257; - EOS_TOKEN = @50256; - } - return self; + Whisper *whisper; + Moonshine *moonshine; } RCT_EXPORT_MODULE() -- (NSArray *)stftFromWaveform:(NSArray *)waveform { - FFTSetup fftSetup = vDSP_create_fftsetup(log2(self->fftSize), kFFTRadix2); - if (!fftSetup) { - NSLog(@"Error creating FFT setup."); - } - - // Generate Hann Window coefficients. - // https://www.mathworks.com/help/signal/ref/hann.html - float hann[self->fftSize]; - for (int i = 0; i < self->fftSize; i++) { - hann[i] = 0.5 * (1 - cos(2 * M_PI * i / (self->fftSize - 1))); - } - - NSMutableArray *stftResult = [NSMutableArray new]; - int currentIndex = 0; - while (currentIndex + self->fftSize <= waveform.count) { - float signal[self->fftSize]; - - // Extract signal and apply the Hann window - for (int i = 0; i < self->fftSize; i++) { - signal[i] = [waveform[currentIndex + i] floatValue] * hann[i]; - } - - [self fft:signal fftSetup:fftSetup magnitudes:stftResult]; - - currentIndex += self->fftHopLength; - } - - vDSP_destroy_fftsetup(fftSetup); - return stftResult; -} - -- (void)fft:(float *)signal - fftSetup:(FFTSetup)fftSetup - magnitudes:(NSMutableArray *)magnitudes { - const int log2n = log2(self->fftSize); - DSPSplitComplex a; - a.realp = (float *)malloc(self->fftSize / 2 * sizeof(float)); - a.imagp = (float *)malloc(self->fftSize / 2 * sizeof(float)); - - // Perform the FFT - vDSP_ctoz((DSPComplex *)signal, 2, &a, 1, self->fftSize / 2); - vDSP_fft_zrip(fftSetup, &a, 1, log2n, FFT_FORWARD); - - // Zero out Nyquist component - a.imagp[0] = 0.0f; - - const float magnitudeScale = 1.0f / self->fftSize; - for (int i = 0; i < self->fftSize / 2; ++i) { - double magnitude = sqrt(a.realp[i] * a.realp[i] + a.imagp[i] * a.imagp[i]) * - magnitudeScale; - // FIXME: we don't need that, but if we remove this we have to get rid of - // reversing this operation in the preprocessing part - double magnitudeDb = 20 * log10f(magnitude); - // Push to the result array - [magnitudes addObject:@(magnitudeDb)]; - } - - // Cleanup - free(a.realp); - free(a.imagp); -} - - (void)generate:(NSArray *)waveform resolve:(RCTPromiseResolveBlock)resolve reject:(RCTPromiseRejectBlock)reject { @try { - NSArray *stft = [self stftFromWaveform:waveform]; + SpeechToTextBaseModel* model = self->whisper ? self->whisper : self->moonshine; + dispatch_async( dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ - NSUInteger fftFrameLength = self->fftSize / 2; - NSMutableArray *mutablePrevTokens = [NSMutableArray arrayWithObject:self->START_TOKEN]; - - if (!self->encoder || !self->decoder || !self->preprocessor) { - reject(@"model_initialization_error", nil, nil); - return; - } - - NSNumber *numFrames = - [NSNumber numberWithDouble:(stft.count / fftFrameLength)]; - NSArray *mel = [self->preprocessor - forward:@[ stft ] - shapes:@[ @[ - numFrames, - [NSNumber numberWithUnsignedInteger:fftFrameLength] - ] ] - inputTypes:@[ ScalarType.Float ]]; - NSDate *start = [NSDate date]; - NSArray *encodingResult = [self->encoder encode:@[ mel ]]; - - - if (!encodingResult) { - reject(@"forward_error", @"Encoding returned an empty result.", nil); - return; - } + NSArray *encodingResult = [model encode:waveform]; + NSMutableArray *mutablePrevTokens = [NSMutableArray arrayWithObject:model->START_TOKEN]; NSNumber *currentSeqLen = @0; - while ([currentSeqLen unsignedIntegerValue] < self -> maxSeqLen) { - NSArray *result = [self->decoder decode:mutablePrevTokens + while ([currentSeqLen unsignedIntegerValue] < model->maxSeqLen) { + NSArray *result = [model decode:mutablePrevTokens encoderLastHiddenState:encodingResult]; if (!result || result.count == 0) { reject(@"forward_error", @"Decoder returned an empty result.", @@ -140,7 +39,7 @@ - (void)generate:(NSArray *)waveform NSNumber *predictedToken = result[0]; [mutablePrevTokens addObject:predictedToken]; [self emitOnToken:predictedToken]; - if ([predictedToken isEqualToNumber:self->EOS_TOKEN]) { + if ([predictedToken isEqualToNumber:model->EOS_TOKEN]) { break; } currentSeqLen = @([currentSeqLen unsignedIntegerValue] + 1); @@ -154,64 +53,44 @@ - (void)generate:(NSArray *)waveform } } -- (void)loadModule:(NSString *)preprocessorSource - encoderSource:(NSString *)encoderSource - decoderSource:(NSString *)decoderSource +- (void)loadModule:(NSString *)modelName + modelSources:(NSArray*)modelSources resolve:(RCTPromiseResolveBlock)resolve reject:(RCTPromiseRejectBlock)reject { - preprocessor = [[BaseModel alloc] init]; - encoder = [[WhisperEncoder alloc] init]; - decoder = [[WhisperDecoder alloc] init]; - - // Load preprocessor first - [self loadModuleHelper:preprocessor - withSource:preprocessorSource - onSuccess:^{ - // Load encoder after preprocessor - [self loadModuleHelper:self->encoder - withSource:encoderSource - onSuccess:^{ - // Load decoder after encoder - [self loadModuleHelper:self->decoder - withSource:decoderSource - onSuccess:^{ - resolve(@(0)); - } - onFailure:^(NSString *errorCode) { - reject(@"init_decoder_error", errorCode, nil); - }]; - } - onFailure:^(NSString *errorCode) { - reject(@"init_encoder_error", errorCode, nil); - }]; - } - onFailure:^(NSString *errorCode) { - reject(@"init_preprocessor_error", errorCode, nil); - }]; -} + if ([modelSources count] != 2) { + reject(@"corrupted model sources", nil, nil); + return; + } + if (![@[@"moonshine", @"whisper"] containsObject:modelName]) { + reject(@"invalid_model_identifier", nil, nil); + return; + } -- (void)loadModuleHelper:(id)model - withSource:(NSString *)source - onSuccess:(void (^)(void))success - onFailure:(void (^)(NSString *))failure { + SpeechToTextBaseModel* model; + if([modelName isEqualToString:@"moonshine"]) { + moonshine = [[Moonshine alloc] init]; + model = moonshine; + } + if([modelName isEqualToString:@"whisper"]) { + whisper = [[Whisper alloc] init]; + model = whisper; + } - [model loadModel:[NSURL URLWithString:source] - completion:^(BOOL isSuccess, NSNumber *errorCode) { - if (isSuccess) { - success(); - } else { - failure([NSString - stringWithFormat:@"%ld", (long)[errorCode longValue]]); - } - }]; + @try { + [model loadModules:modelSources]; + resolve(@(0)); + } @catch (NSException *exception) { + reject(@"init_decoder_error", [NSString stringWithFormat:@"%@", exception.reason], nil); + } } - (void)encode:(NSArray *)input resolve:(RCTPromiseResolveBlock)resolve reject:(RCTPromiseRejectBlock)reject { + SpeechToTextBaseModel* model = self->whisper ? self->whisper : self->moonshine; @try { - NSArray *encodingResult = [encoder encode:input]; + NSArray *encodingResult = [model encode:input]; resolve(encodingResult); } @catch (NSException *exception) { reject(@"forward_error", @@ -223,8 +102,9 @@ - (void)decode:(NSArray *)prevTokens encoderOutput:(NSArray *)encoderOutput resolve:(RCTPromiseResolveBlock)resolve reject:(RCTPromiseRejectBlock)reject { + SpeechToTextBaseModel* model = self->whisper ? self->whisper : self->moonshine; @try { - NSArray *token = [decoder decode:prevTokens + NSArray *token = [model decode:prevTokens encoderLastHiddenState:encoderOutput]; resolve(token); } @catch (NSException *exception) { diff --git a/ios/RnExecutorch/models/BaseModel.h b/ios/RnExecutorch/models/BaseModel.h index b06e1cfcf6..c6cca027d2 100644 --- a/ios/RnExecutorch/models/BaseModel.h +++ b/ios/RnExecutorch/models/BaseModel.h @@ -13,6 +13,11 @@ shapes:(NSArray *)shapes inputTypes:(NSArray *)inputTypes; +- (NSArray *)execute:(NSString *)methodName + inputs:(NSArray *)inputs + shapes:(NSArray *)shapes + inputTypes:(NSArray *)inputTypes; + - (void)loadModel:(NSURL *)modelURL completion:(void (^)(BOOL success, NSNumber *code))completion; diff --git a/ios/RnExecutorch/models/BaseModel.mm b/ios/RnExecutorch/models/BaseModel.mm index 26cebd6e6a..e39dab8cba 100644 --- a/ios/RnExecutorch/models/BaseModel.mm +++ b/ios/RnExecutorch/models/BaseModel.mm @@ -24,6 +24,14 @@ - (NSArray *)forward:(NSArray *)inputs return result; } +- (NSArray *)execute:(NSString *)methodName + inputs:(NSArray *)inputs + shapes:(NSArray *)shapes + inputTypes:(NSArray *)inputTypes { + NSArray *result = [module execute:methodName inputs:inputs shapes:shapes inputTypes:inputTypes]; + return result; +} + - (void)loadModel:(NSURL *)modelURL completion:(void (^)(BOOL success, NSNumber *code))completion { module = [[ETModel alloc] init]; diff --git a/ios/RnExecutorch/models/stt/Moonshine.hpp b/ios/RnExecutorch/models/stt/Moonshine.hpp new file mode 100644 index 0000000000..d913cf317e --- /dev/null +++ b/ios/RnExecutorch/models/stt/Moonshine.hpp @@ -0,0 +1,15 @@ +#ifndef Moonshine_hpp +#define Moonshine_hpp + +#import +#import +#import "MoonshineEncoder.hpp" +#import "Moonshinedecoder.hpp" +#import "SpeechToTextBaseModel.hpp" + +@interface Moonshine : SpeechToTextBaseModel +@end + + + +#endif /* Moonshine_hpp */ diff --git a/ios/RnExecutorch/models/stt/Moonshine.mm b/ios/RnExecutorch/models/stt/Moonshine.mm new file mode 100644 index 0000000000..0bf31bfecd --- /dev/null +++ b/ios/RnExecutorch/models/stt/Moonshine.mm @@ -0,0 +1,56 @@ +#import "Moonshine.hpp" +#import "ExecutorchLib/ETModel.h" +#import +#import +#import "MoonshineEncoder.hpp" +#import "Moonshinedecoder.hpp" + +@implementation Moonshine { + MoonshineEncoder *encoder; + MoonshineDecoder *decoder; + NSNumber *START_TOKEN; + NSNumber *EOS_TOKEN; + int maxSeqLen; +} + +- (instancetype)init { + self = [super init]; + if (self) { + START_TOKEN = @1; + EOS_TOKEN = @2; + maxSeqLen = 180; + } + return self; +} + +- (NSArray *)encode:(NSArray *)waveform { + return [self->encoder encode:[NSArray arrayWithObject:waveform]]; +} + +- (NSArray *)decode:(NSArray *)prevTokens encoderLastHiddenState:(NSArray *)encoderLastHiddenState { + return [self->decoder decode:prevTokens encoderLastHiddenState:encoderLastHiddenState]; +} + +- (void)loadModules:(NSArray *)modelSources { + + self->encoder = [[MoonshineEncoder alloc] init]; + self->decoder = [[MoonshineDecoder alloc] init]; + + // Load encoder + [self loadModuleHelper:self->encoder + withSource:[modelSources objectAtIndex:0] + onSuccess:^{ + // Load decoder after encoder + [self loadModuleHelper:self->decoder + withSource:[modelSources objectAtIndex:1] + onSuccess:^{} + onFailure:^(NSString *errorCode) { + [NSException raise:@"init_decoder_error" format:@"%d", errorCode]; + }]; + } + onFailure:^(NSString *errorCode) { + [NSException raise:@"init_encoder_error" format:@"%d", errorCode]; + }]; +} + +@end \ No newline at end of file diff --git a/ios/RnExecutorch/models/stt/MoonshineDecoder.hpp b/ios/RnExecutorch/models/stt/MoonshineDecoder.hpp new file mode 100644 index 0000000000..a12c0e0dea --- /dev/null +++ b/ios/RnExecutorch/models/stt/MoonshineDecoder.hpp @@ -0,0 +1,17 @@ +#ifndef MoonshineDecoder_hpp +#define MoonshineDecoder_hpp + +#import "../BaseModel.h" +#import "ExecutorchLib/ETModel.h" +#import +#import + +@interface MoonshineDecoder : BaseModel + +- (NSArray *)decode:(NSArray *)prevTokens encoderLastHiddenState:(NSArray *)encoderLastHiddenState; + +@end + + + +#endif /* MoonshineDecoder_hpp */ diff --git a/ios/RnExecutorch/models/stt/MoonshineDecoder.mm b/ios/RnExecutorch/models/stt/MoonshineDecoder.mm new file mode 100644 index 0000000000..07133c5d7b --- /dev/null +++ b/ios/RnExecutorch/models/stt/MoonshineDecoder.mm @@ -0,0 +1,19 @@ +#import "MoonshineDecoder.hpp" +#import "../../utils/ScalarType.h" + +@implementation MoonshineDecoder + +- (NSArray *)decode:(NSArray *)prevTokens encoderLastHiddenState:(NSArray *)encoderLastHiddenState { + NSNumber *innerDim = @288; + NSNumber *noEncoderTokens = @(@([[encoderLastHiddenState objectAtIndex:0] count]).intValue / [innerDim intValue]); + NSArray *encoderLastHiddenStateShape = @[@1, noEncoderTokens, innerDim]; + NSArray *prevTokensShape = @[@1, @([prevTokens count])]; + NSArray *predictedToken = [self execute:@"forward_cached" + inputs:@[prevTokens, encoderLastHiddenState] + shapes:@[prevTokensShape, encoderLastHiddenStateShape] + inputTypes:@[ScalarType.Long, ScalarType.Float]]; + + return [predictedToken objectAtIndex:0]; +} + +@end diff --git a/ios/RnExecutorch/models/stt/MoonshineEncoder.hpp b/ios/RnExecutorch/models/stt/MoonshineEncoder.hpp new file mode 100644 index 0000000000..61d5cecf93 --- /dev/null +++ b/ios/RnExecutorch/models/stt/MoonshineEncoder.hpp @@ -0,0 +1,17 @@ +#ifndef MoonshineEncoder_hpp +#define MoonshineEncoder_hpp + +#import "../BaseModel.h" +#import "ExecutorchLib/ETModel.h" +#import +#import + +@interface MoonshineEncoder : BaseModel + +- (NSArray *)encode:(NSArray *)waveform; + +@end + + + +#endif /* MoonshineEncoder_hpp */ diff --git a/ios/RnExecutorch/models/stt/MoonshineEncoder.mm b/ios/RnExecutorch/models/stt/MoonshineEncoder.mm new file mode 100644 index 0000000000..dbd52e321a --- /dev/null +++ b/ios/RnExecutorch/models/stt/MoonshineEncoder.mm @@ -0,0 +1,16 @@ +#import "MoonshineEncoder.hpp" +#import "../../utils/ScalarType.h" + +NSArray *waveformTypes = [NSArray arrayWithObject:ScalarType.Float]; + +@implementation MoonshineEncoder + +- (NSArray *)encode:(NSArray *)waveform { + NSArray *waveformShape = [NSArray arrayWithObject:@[@1, @([waveform[0] count])]]; + NSArray *result = [self forward:waveform shapes:waveformShape inputTypes:waveformTypes]; + + return [result objectAtIndex:0]; +} + + +@end diff --git a/ios/RnExecutorch/models/stt/SpeechToTextBaseModel.hpp b/ios/RnExecutorch/models/stt/SpeechToTextBaseModel.hpp new file mode 100644 index 0000000000..9d445dc6d5 --- /dev/null +++ b/ios/RnExecutorch/models/stt/SpeechToTextBaseModel.hpp @@ -0,0 +1,27 @@ +#ifndef SpeechToTextBaseModel_hpp +#define SpeechToTextBaseModel_hpp + +#import +#import +#import "../BaseModel.h" +@interface SpeechToTextBaseModel : NSObject{ +@public + NSNumber *START_TOKEN; + NSNumber *EOS_TOKEN; + int maxSeqLen; + int fftSize; +} + +- (NSArray *)encode:(NSArray *)waveform; +- (NSArray *)decode:(NSArray *)prevTokens encoderLastHiddenState:(NSArray *)encoderLastHiddenState; +- (void)loadModules:(NSArray *)modelSources; +- (void)loadModuleHelper:(id)model + withSource:(NSString *)source + onSuccess:(void (^)(void))success + onFailure:(void (^)(NSString *))failure; + +@end + + + +#endif /* SpeechToTextBaseModel_hpp */ diff --git a/ios/RnExecutorch/models/stt/SpeechToTextBaseModel.mm b/ios/RnExecutorch/models/stt/SpeechToTextBaseModel.mm new file mode 100644 index 0000000000..47dc34b962 --- /dev/null +++ b/ios/RnExecutorch/models/stt/SpeechToTextBaseModel.mm @@ -0,0 +1,22 @@ +#import +#import +#import "SpeechToTextBaseModel.hpp" + +@implementation SpeechToTextBaseModel + +- (void)loadModuleHelper:(BaseModel *)model + withSource:(NSString *)source + onSuccess:(void (^)(void))success + onFailure:(void (^)(NSString *))failure { + + [model loadModel:[NSURL URLWithString:source] + completion:^(BOOL isSuccess, NSNumber *errorCode) { + if (isSuccess) { + success(); + } else { + failure([NSString stringWithFormat:@"%ld", (long)[errorCode longValue]]); + } + }]; +} + +@end diff --git a/ios/RnExecutorch/models/stt/Whisper.hpp b/ios/RnExecutorch/models/stt/Whisper.hpp new file mode 100644 index 0000000000..3da4b360f1 --- /dev/null +++ b/ios/RnExecutorch/models/stt/Whisper.hpp @@ -0,0 +1,13 @@ +#ifndef Whisper_hpp +#define Whisper_hpp + +#import "ExecutorchLib/ETModel.h" +#import +#import +#import "SpeechToTextBaseModel.hpp" + +@interface Whisper : SpeechToTextBaseModel +@end + + +#endif /* Whisper_hpp */ diff --git a/ios/RnExecutorch/models/stt/Whisper.mm b/ios/RnExecutorch/models/stt/Whisper.mm new file mode 100644 index 0000000000..46c85504a5 --- /dev/null +++ b/ios/RnExecutorch/models/stt/Whisper.mm @@ -0,0 +1,66 @@ +#import "Whisper.hpp" +#import "ExecutorchLib/ETModel.h" +#import +#import +#import "WhisperEncoder.hpp" +#import "Whisperdecoder.hpp" +#import "../../utils/SFFT.hpp" +#import "../../utils/ScalarType.h" + +@implementation Whisper { + WhisperEncoder *encoder; + WhisperDecoder *decoder; + NSNumber *START_TOKEN; + NSNumber *EOS_TOKEN; + int maxSeqLen; +} + +- (instancetype)init { + self = [super init]; + if (self) { + START_TOKEN = @50257; + EOS_TOKEN = @50256; + maxSeqLen = 512; + } + return self; +} + +- (NSArray *)encode:(NSArray *)waveform { + if (!self->encoder) { + [NSException raise:@"model_initialization_error" format:nil]; + } + NSArray *encodingResult = [self->encoder encode:waveform]; + + if (!encodingResult) { + [NSException raise:@"forward_error" format:nil]; + } + return encodingResult; +} + +- (NSArray *)decode:(NSArray *)prevTokens encoderLastHiddenState:(NSArray *)encoderLastHiddenState{ + return [self->decoder decode:prevTokens encoderLastHiddenState:encoderLastHiddenState]; +} + +- (void)loadModules:(NSArray *)modelSources { + + self->encoder = [[WhisperEncoder alloc] init]; + self->decoder = [[WhisperDecoder alloc] init]; + + // Load encoder after preprocessor + [self loadModuleHelper:self->encoder + withSource:[modelSources objectAtIndex:0] + onSuccess:^{ + // Load decoder after encoder + [self loadModuleHelper:self->decoder + withSource:[modelSources objectAtIndex:1] + onSuccess:^{} + onFailure:^(NSString *errorCode) { + [NSException raise:@"init_decoder_error" format:@"%d", errorCode]; + }]; + } + onFailure:^(NSString *errorCode) { + [NSException raise:@"init_encoder_error" format:@"%d", errorCode]; + }]; +} + +@end diff --git a/ios/RnExecutorch/models/stt/WhisperEncoder.hpp b/ios/RnExecutorch/models/stt/WhisperEncoder.hpp index 2d80888270..4dd4fc7a0c 100644 --- a/ios/RnExecutorch/models/stt/WhisperEncoder.hpp +++ b/ios/RnExecutorch/models/stt/WhisperEncoder.hpp @@ -8,7 +8,7 @@ @interface WhisperEncoder : BaseModel -- (NSArray *)encode:(NSArray *)melSpectrogram; +- (NSArray *)encode:(NSArray *)waveform; @end diff --git a/ios/RnExecutorch/models/stt/WhisperEncoder.mm b/ios/RnExecutorch/models/stt/WhisperEncoder.mm index 176c33652d..9348d0beae 100644 --- a/ios/RnExecutorch/models/stt/WhisperEncoder.mm +++ b/ios/RnExecutorch/models/stt/WhisperEncoder.mm @@ -1,16 +1,19 @@ #import "WhisperEncoder.hpp" #import "../../utils/ScalarType.h" +#import "../../utils/SFFT.hpp" -NSArray *spectrogramShape = [NSArray arrayWithObject:@[@1, @80, @3000]]; NSArray *spectrogramInputType = [NSArray arrayWithObject:ScalarType.Float]; +NSNumber *fftFrameSize = @256; @implementation WhisperEncoder -- (NSArray *)encode:(NSArray *)melSpectrogram { - NSArray *result = [self forward:melSpectrogram shapes:spectrogramShape inputTypes:spectrogramInputType]; +- (NSArray *)encode:(NSArray *)waveform { + NSArray *stft = [SFFT sfftFromWaveform:waveform fftSize:512 fftHopLength:160]; + NSNumber *numFrames = [NSNumber numberWithDouble:([stft count] / 256)]; + NSArray *inputShape = @[ @[ numFrames, fftFrameSize ] ]; + NSArray *result = [self forward:@[stft] shapes:inputShape inputTypes:spectrogramInputType]; // unsquezing before the return, since forward returns an array of results; return [result objectAtIndex:0]; } - @end diff --git a/ios/RnExecutorch/utils/SFFT.hpp b/ios/RnExecutorch/utils/SFFT.hpp new file mode 100644 index 0000000000..b0710e0dca --- /dev/null +++ b/ios/RnExecutorch/utils/SFFT.hpp @@ -0,0 +1,13 @@ +#import +#import + +@interface SFFT : NSObject + ++ (NSArray *)sfftFromWaveform:(NSArray *)waveform + fftSize:(int)fftSize + fftHopLength:(int)fftHopLength; ++ (void)fft:(float *)signal + fftSetup:(FFTSetup)fftSetup + fftSize:(int)fftSize + magnitudes:(NSMutableArray *)magnitudes; +@end diff --git a/ios/RnExecutorch/utils/SFFT.mm b/ios/RnExecutorch/utils/SFFT.mm new file mode 100644 index 0000000000..c68d99340d --- /dev/null +++ b/ios/RnExecutorch/utils/SFFT.mm @@ -0,0 +1,71 @@ +#import "SFFT.hpp" + +@implementation SFFT + ++ (NSArray *)sfftFromWaveform:(NSArray *)waveform + fftSize:(int)fftSize + fftHopLength:(int)fftHopLength { + FFTSetup fftSetup = vDSP_create_fftsetup(log2(fftSize), kFFTRadix2); + if (!fftSetup) { + NSLog(@"Error creating FFT setup."); + } + + // Generate Hann Window coefficients. + // https://www.mathworks.com/help/signal/ref/hann.html + float hann[fftSize]; + for (int i = 0; i < fftSize; i++) { + hann[i] = 0.5 * (1 - cos(2 * M_PI * i / (fftSize - 1))); + } + + NSMutableArray *stftResult = [NSMutableArray new]; + int currentIndex = 0; + while (currentIndex + fftSize <= waveform.count) { + float signal[fftSize]; + + // Extract signal and apply the Hann window + for (int i = 0; i < fftSize; i++) { + signal[i] = [waveform[currentIndex + i] floatValue] * hann[i]; + } + + [SFFT fft:signal fftSetup:fftSetup magnitudes:stftResult fftSize:fftSize]; + + currentIndex += fftHopLength; + } + + vDSP_destroy_fftsetup(fftSetup); + return stftResult; +} + ++ (void)fft:(float *)signal + fftSetup:(FFTSetup)fftSetup + magnitudes:(NSMutableArray *)magnitudes + fftSize:(int)fftSize { + const int log2n = log2(fftSize); + DSPSplitComplex a; + a.realp = (float *)malloc(fftSize / 2 * sizeof(float)); + a.imagp = (float *)malloc(fftSize / 2 * sizeof(float)); + + // Perform the FFT + vDSP_ctoz((DSPComplex *)signal, 2, &a, 1, fftSize / 2); + vDSP_fft_zrip(fftSetup, &a, 1, log2n, FFT_FORWARD); + + // Zero out Nyquist component + a.imagp[0] = 0.0f; + + const float magnitudeScale = 1.0f / fftSize; + for (int i = 0; i < fftSize / 2; ++i) { + double magnitude = sqrt(a.realp[i] * a.realp[i] + a.imagp[i] * a.imagp[i]) * + magnitudeScale; + // FIXME: we don't need that, but if we remove this we have to get rid of + // reversing this operation in the preprocessing part + double magnitudeDb = 20 * log10f(magnitude); + // Push to the result array + [magnitudes addObject:@(magnitudeDb)]; + } + + // Cleanup + free(a.realp); + free(a.imagp); +} + +@end \ No newline at end of file diff --git a/package.json b/package.json index b1dbc82c30..03adefa04b 100644 --- a/package.json +++ b/package.json @@ -193,8 +193,12 @@ } }, "dependencies": { + "expo": "^52.0.37", "expo-asset": "^11.0.3", "expo-file-system": "^18.0.10", - "react-native-audio-api": "^0.4.4" + "react": "18.3.1", + "react-native": "0.76.7", + "react-native-audio-api": "0.4.11", + "react-native-live-audio-stream": "^1.1.1" } } diff --git a/src/SpeechToTextController.ts b/src/SpeechToTextController.ts deleted file mode 100644 index ec16eb3c62..0000000000 --- a/src/SpeechToTextController.ts +++ /dev/null @@ -1,129 +0,0 @@ -import { - AudioBufferSourceNode, - AudioContext, - AudioBuffer, -} from 'react-native-audio-api'; -import { _SpeechToTextModule } from './native/RnExecutorchModules'; -import { EventSubscription } from 'react-native'; -import { SpeechToText } from './native/RnExecutorchModules'; -import * as FileSystem from 'expo-file-system'; -import { fetchResource } from './utils/fetchResource'; -import decoder from './decoders/WhisperDecodings'; - -type ModelSource = string | number; - -export class SpeechToTextController { - // Audio config - private audioContext: AudioContext; - private audioBuffer: AudioBuffer | null = null; - private audioBufferSource: AudioBufferSourceNode | null = null; - - // Native modules / listeners - private nativeModule: _SpeechToTextModule; - // @ts-ignore - private tokenListener: EventSubscription | null = null; - - // State - public generatedTokens: string[] = []; - // @ts-ignore - public isReady: boolean; - public isGenerating: boolean; - - // User-defined variables - public onTokenCallback: (token: number) => any; - - constructor({ - nativeModule = new _SpeechToTextModule(), - // @ts-ignore - onTokenCallback = (token: number) => { - return token; - }, - } = {}) { - this.nativeModule = nativeModule; - this.isReady = false; - this.isGenerating = false; - this.audioContext = new AudioContext(16e3); // Passing default SR - this.onTokenCallback = onTokenCallback; - } - - public async loadModel( - preprocessorSource: ModelSource, - encoderSource: ModelSource, - decoderSource: ModelSource - ) { - try { - this.isReady = false; - const preprocessorPath = await fetchResource(preprocessorSource); - const encoderPath = await fetchResource(encoderSource); - const decoderPath = await fetchResource(decoderSource); - await this.nativeModule.loadModule( - preprocessorPath, - encoderPath, - decoderPath - ); - this.tokenListener = SpeechToText.onToken((token: number | undefined) => { - if (!token) { - return; - } - let currentToken = decoder[token]?.replaceAll('Ġ', ' '); - this.generatedTokens.push(currentToken!!); - this.onTokenCallback(token); - }); - this.isReady = true; - } catch (e) { - console.error('Error when loading the SpeechToTextController!', e); - } - } - - private async setAudioBufferFromFile(url: string) { - this.audioBuffer = await FileSystem.downloadAsync( - url, - FileSystem.documentDirectory + 'audio.mp3' - ).then(({ uri }) => { - return this.audioContext.decodeAudioDataSource(uri); - }); - } - - private setAudioBufferSourceNode() { - if (!this.audioBuffer) { - throw new Error( - 'setAudioBufferSourceNode() called before AudioBuffer was initialized!' - ); - } - this.audioBufferSource = this.audioContext.createBufferSource(); - this.audioBufferSource.buffer = this.audioBuffer; - } - - private async loadAudio(url: string) { - await this.setAudioBufferFromFile(url); - this.setAudioBufferSourceNode(); - } - - public async startTranscription(url: string) { - if (this.isGenerating) { - // TODO - return; - } - try { - await this.loadAudio(url); - } catch (e) { - // TODO - throw Error('An error ocurred when loading audio! ' + e); - } - - if ( - !this.audioBufferSource || - !this.audioBufferSource || - !this.audioBuffer - ) { - // TODO - throw Error('An error ocurred when loading audio!'); - } - - const waveform = this.audioBuffer.getChannelData(0); - this.isGenerating = true; - await this.nativeModule.generate(waveform); - this.isGenerating = false; - this.audioBufferSource.start(); - } -} diff --git a/src/constants/modelUrls.ts b/src/constants/modelUrls.ts index 30e3847909..42417576f3 100644 --- a/src/constants/modelUrls.ts +++ b/src/constants/modelUrls.ts @@ -46,6 +46,20 @@ export const STYLE_TRANSFER_UDNIE = ? 'https://huggingface.co/software-mansion/react-native-executorch-style-transfer-udnie/resolve/v0.2.0/coreml/style_transfer_udnie_coreml.pte' : 'https://huggingface.co/software-mansion/react-native-executorch-style-transfer-udnie/resolve/v0.2.0/xnnpack/style_transfer_udnie_xnnpack.pte'; +// S2T +export const MOONSHINE_TINY_DECODER = + 'https://huggingface.co/software-mansion/react-native-executorch-moonshine-tiny/resolve/v0.3.0/xnnpack/moonshine_tiny_xnnpack_decoder.pte'; +export const MOONSHINE_TINY_ENCODER = + 'https://huggingface.co/software-mansion/react-native-executorch-moonshine-tiny/resolve/v0.3.0/xnnpack/moonshine_tiny_xnnpack_encoder.pte'; +export const MOONSHINE_TOKENIZER = + 'https://huggingface.co/software-mansion/react-native-executorch-moonshine-tiny/resolve/v0.3.0/moonshine_tiny_tokenizer.json'; +export const WHISPER_TOKENIZER = + 'https://huggingface.co/software-mansion/react-native-executorch-whisper-tiny.en/resolve/v0.3.0/whisper_tokenizer.json'; +export const WHISPER_TINY_DECODER = + 'https://huggingface.co/software-mansion/react-native-executorch-whisper-tiny.en/resolve/v0.3.0/xnnpack/whisper_tiny_en_xnnpack_decoder.pte'; +export const WHISPER_TINY_ENCODER = + 'https://huggingface.co/software-mansion/react-native-executorch-whisper-tiny.en/resolve/v0.3.0/xnnpack/whisper_tiny_en_xnnpack_encoder.pte'; + // OCR export const DETECTOR_CRAFT_1280 = diff --git a/src/constants/sttDefaults.ts b/src/constants/sttDefaults.ts new file mode 100644 index 0000000000..baaeb25c11 --- /dev/null +++ b/src/constants/sttDefaults.ts @@ -0,0 +1,53 @@ +import { + MOONSHINE_TINY_ENCODER, + MOONSHINE_TINY_DECODER, + MOONSHINE_TOKENIZER, + WHISPER_TINY_ENCODER, + WHISPER_TINY_DECODER, + WHISPER_TOKENIZER, +} from './modelUrls'; + +export const SAMPLE_RATE = 16_000; +export const SECOND = SAMPLE_RATE; +export const HAMMING_DIST_THRESHOLD = 1; + +export interface ModelConfig { + sources: { + encoder: string; + decoder: string; + }; + tokenizer: { + source: string; + sos: number; + eos: number; + special_char: string; + }; +} + +export const MODEL_CONFIGS: { [key in 'moonshine' | 'whisper']: ModelConfig } = + { + moonshine: { + sources: { + encoder: MOONSHINE_TINY_ENCODER, + decoder: MOONSHINE_TINY_DECODER, + }, + tokenizer: { + source: MOONSHINE_TOKENIZER, + sos: 1, + eos: 2, + special_char: '\u2581', + }, + }, + whisper: { + sources: { + encoder: WHISPER_TINY_ENCODER, + decoder: WHISPER_TINY_DECODER, + }, + tokenizer: { + source: WHISPER_TOKENIZER, + sos: 50257, + eos: 50256, + special_char: 'Ġ', + }, + }, + }; diff --git a/src/controllers/SpeechToTextController.ts b/src/controllers/SpeechToTextController.ts new file mode 100644 index 0000000000..20cf0f0fd5 --- /dev/null +++ b/src/controllers/SpeechToTextController.ts @@ -0,0 +1,312 @@ +import { AudioContext, AudioBuffer } from 'react-native-audio-api'; +import { _SpeechToTextModule } from '../native/RnExecutorchModules'; +import * as FileSystem from 'expo-file-system'; +import { fetchResource } from '../utils/fetchResource'; +import { ResourceSource } from '../types/common'; +import { + HAMMING_DIST_THRESHOLD, + SECOND, + SAMPLE_RATE, + MODEL_CONFIGS, + ModelConfig, +} from '../constants/sttDefaults'; + +const longCommonInfPref = (seq1: number[], seq2: number[]) => { + let maxInd = 0; + let maxLength = 0; + + for (let i = 0; i < seq1.length; i++) { + let j = 0; + let hamming_dist = 0; + while ( + j < seq2.length && + i + j < seq1.length && + (seq1[i + j] === seq2[j] || hamming_dist < HAMMING_DIST_THRESHOLD) + ) { + if (seq1[i + j] !== seq2[j]) { + hamming_dist++; + } + j++; + } + if (j >= maxLength) { + maxLength = j; + maxInd = i; + } + } + return maxInd; +}; + +export class SpeechToTextController { + private nativeModule: _SpeechToTextModule; + + // Audio config + private audioContext: AudioContext; + private audioBuffer: AudioBuffer | null = null; + + private overlapSeconds = 1.2; + private windowSize = 7; + + private chunks: number[][] = []; + public sequence: number[] = []; + public isReady = false; + public isGenerating = false; + private modelName!: 'moonshine' | 'whisper'; + + // tokenizer tokens to string mapping used for decoding sequence + private tokenMapping!: { [key: number]: string }; + + // User callbacks + private decodedTranscribeCallback: (sequence: number[]) => void; + private modelDownloadProgessCallback: + | ((downloadProgress: number) => void) + | undefined; + private isReadyCallback: (isReady: boolean) => void; + private isGeneratingCallback: (isGenerating: boolean) => void; + private onErrorCallback: ((error: any) => void) | undefined; + private config!: ModelConfig; + + constructor({ + transcribeCallback, + modelDownloadProgessCallback, + isReadyCallback, + isGeneratingCallback, + onErrorCallback, + overlapSeconds, + windowSize, + }: { + transcribeCallback: (sequence: string) => void; + modelDownloadProgessCallback?: (downloadProgress: number) => void; + isReadyCallback?: (isReady: boolean) => void; + isGeneratingCallback?: (isGenerating: boolean) => void; + onErrorCallback?: (error: Error | undefined) => void; + overlapSeconds?: number; + windowSize?: number; + }) { + this.decodedTranscribeCallback = (seq) => + transcribeCallback(this.decodeSeq(seq)); + this.modelDownloadProgessCallback = modelDownloadProgessCallback; + this.isReadyCallback = (isReady) => { + this.isReady = isReady; + isReadyCallback?.(isReady); + }; + this.isGeneratingCallback = (isGenerating) => { + this.isGenerating = isGenerating; + isGeneratingCallback?.(isGenerating); + }; + this.onErrorCallback = onErrorCallback; + this.audioContext = new AudioContext({ sampleRate: SAMPLE_RATE }); + this.nativeModule = new _SpeechToTextModule(); + this.windowSize = (windowSize || this.windowSize) * SECOND; + this.overlapSeconds = overlapSeconds || this.overlapSeconds; + } + + private async fetch_tokenizer( + localUri?: ResourceSource + ): Promise<{ [key: number]: string }> { + let tokenzerUri = await fetchResource( + localUri || this.config.tokenizer.source + ); + return JSON.parse(await FileSystem.readAsStringAsync(tokenzerUri)); + } + + public async loadModel( + modelName: 'moonshine' | 'whisper', + encoderSource?: ResourceSource, + decoderSource?: ResourceSource, + tokenizerSource?: ResourceSource + ) { + this.onErrorCallback?.(undefined); + this.isReadyCallback(false); + this.config = MODEL_CONFIGS[modelName]; + this.modelName = modelName; + + try { + this.tokenMapping = await this.fetch_tokenizer(tokenizerSource); + encoderSource = await fetchResource( + encoderSource || this.config.sources.encoder, + (progress) => this.modelDownloadProgessCallback?.(progress / 2) + ); + + decoderSource = await fetchResource( + decoderSource || this.config.sources.decoder, + (progress) => this.modelDownloadProgessCallback?.(0.5 + progress / 2) + ); + } catch (e) { + this.onErrorCallback?.(e); + return; + } + + try { + await this.nativeModule.loadModule(modelName, [ + encoderSource!, + decoderSource!, + ]); + this.modelDownloadProgessCallback?.(1); + this.isReadyCallback(true); + } catch (e) { + this.onErrorCallback?.( + new Error(`Error when loading the SpeechToTextController! ${e}`) + ); + console.error('Error when loading the SpeechToTextController!', e); + } + } + + public async loadAudio(url: string) { + this.onErrorCallback?.(undefined); + this.isReadyCallback(false); + try { + this.audioBuffer = await FileSystem.downloadAsync( + url, + FileSystem.documentDirectory + '_tmp_transcribe_audio.mp3' + ).then(({ uri }) => { + return this.audioContext.decodeAudioDataSource(uri); + }); + } catch (e) { + this.onErrorCallback?.(e); + } finally { + this.isReadyCallback(true); + } + } + + private chunkWaveform(waveform: number[]) { + this.chunks = []; + for (let i = 0; i < Math.ceil(waveform.length / this.windowSize); i++) { + let chunk = waveform.slice( + Math.max(this.windowSize * i - this.overlapSeconds * SECOND, 0), + Math.min( + this.windowSize * (i + 1) + this.overlapSeconds * SECOND, + waveform.length + ) + ); + + this.chunks.push(chunk); + } + } + + public async transcribe(waveform?: number[]): Promise { + if (!this.isReady) { + this.onErrorCallback?.(new Error('Model is not yet ready')); + return ''; + } + if (this.isGenerating) { + this.onErrorCallback?.(new Error('Model is already transcribing')); + return ''; + } + this.onErrorCallback?.(undefined); + this.isGeneratingCallback(true); + + this.sequence = []; + if (!waveform) { + waveform = this.audioBuffer!.getChannelData(0); + } + + if (!waveform) { + this.isGeneratingCallback(false); + + this.onErrorCallback?.( + new Error( + `Nothing to transcribe, perhaps you forgot to call this.loadAudio().` + ) + ); + } + + this.chunkWaveform(waveform); + + let seqs: number[][] = []; + let prevseq: number[] = []; + for (let chunk_id = 0; chunk_id < this.chunks.length; chunk_id++) { + let last_token = this.config.tokenizer.sos; + let prev_seq_token_idx = 0; + let final_seq: number[] = []; + let seq = [last_token]; + let enc_output; + try { + enc_output = await this.nativeModule.encode(this.chunks!.at(chunk_id)!); + } catch (error) { + this.onErrorCallback?.(`Encode ${error}`); + return ''; + } + while (last_token !== this.config.tokenizer.eos) { + let output; + try { + output = await this.nativeModule.decode(seq, [enc_output]); + } catch (error) { + this.onErrorCallback?.(`Decode ${error}`); + return ''; + } + if (typeof output === 'number') { + last_token = output; + } else { + last_token = output[output.length - 1]; + } + seq = [...seq, last_token]; + if ( + seqs.length > 0 && + seq.length < seqs.at(-1)!.length && + seq.length % 3 !== 0 + ) { + prevseq = [...prevseq, seqs.at(-1)![prev_seq_token_idx++]!]; + this.decodedTranscribeCallback(prevseq); + } + } + if (this.chunks.length == 1) { + final_seq = seq; + this.sequence = final_seq; + this.decodedTranscribeCallback(final_seq); + break; + } + // remove sos/eos token and 3 additional ones + if (seqs.length === 0) { + seqs = [seq.slice(0, -4)]; + } else if ( + seqs.length === + Math.ceil(waveform.length / this.windowSize) - 1 + ) { + seqs = [...seqs, seq.slice(4)]; + } else { + seqs = [...seqs, seq.slice(4, -4)]; + } + if (seqs.length < 2) { + continue; + } + + const maxInd = longCommonInfPref(seqs.at(-2)!, seqs.at(-1)!); + final_seq = [...this.sequence, ...seqs.at(-2)!.slice(0, maxInd)]; + this.sequence = final_seq; + this.decodedTranscribeCallback(final_seq); + prevseq = final_seq; + + //last sequence processed + if (seqs.length === Math.ceil(waveform.length / this.windowSize)) { + final_seq = [...this.sequence, ...seqs.at(-1)!]; + this.sequence = final_seq; + this.decodedTranscribeCallback(final_seq); + prevseq = final_seq; + } + } + const decodedSeq = this.decodeSeq(this.sequence); + this.isGeneratingCallback(false); + return decodedSeq; + } + + public decodeSeq(seq?: number[]): string { + if (!this.modelName) { + this.onErrorCallback?.( + new Error('Model is not loaded, call `loadModel` first') + ); + return ''; + } + this.onErrorCallback?.(undefined); + if (!seq) seq = this.sequence; + + return seq + .filter( + (token) => + token !== this.config.tokenizer.eos && + token !== this.config.tokenizer.sos + ) + .map((token) => this.tokenMapping[token]) + .join('') + .replaceAll(this.config.tokenizer.special_char, ' '); + } +} diff --git a/src/decoders/WhisperDecodings.ts b/src/decoders/WhisperDecodings.ts deleted file mode 100644 index 97b0f98071..0000000000 --- a/src/decoders/WhisperDecodings.ts +++ /dev/null @@ -1,50261 +0,0 @@ -const decoder: { [key: string]: string } = { - "15": "0", - "16": "1", - "17": "2", - "18": "3", - "19": "4", - "20": "5", - "21": "6", - "22": "7", - "23": "8", - "24": "9", - "940": "10", - "1157": "11", - "1065": "12", - "1485": "13", - "1415": "14", - "1314": "15", - "1433": "16", - "1558": "17", - "1507": "18", - "1129": "19", - "1238": "20", - "2481": "21", - "1828": "22", - "1954": "23", - "1731": "24", - "1495": "25", - "2075": "26", - "1983": "27", - "2078": "28", - "1959": "29", - "1270": "30", - "3132": "31", - "2624": "32", - "2091": "33", - "2682": "34", - "2327": "35", - "2623": "36", - "2718": "37", - "2548": "38", - "2670": "39", - "1821": "40", - "3901": "41", - "3682": "42", - "3559": "43", - "2598": "44", - "2231": "45", - "3510": "46", - "2857": "47", - "2780": "48", - "2920": "49", - "1120": "50", - "4349": "51", - "4309": "52", - "4310": "53", - "4051": "54", - "2816": "55", - "3980": "56", - "3553": "57", - "3365": "58", - "3270": "59", - "1899": "60", - "5333": "61", - "5237": "62", - "5066": "63", - "2414": "64", - "2996": "65", - "2791": "66", - "3134": "67", - "3104": "68", - "3388": "69", - "2154": "70", - "4869": "71", - "4761": "72", - "4790": "73", - "4524": "74", - "2425": "75", - "4304": "76", - "3324": "77", - "3695": "78", - "3720": "79", - "1795": "80", - "6659": "81", - "6469": "82", - "5999": "83", - "5705": "84", - "5332": "85", - "4521": "86", - "5774": "87", - "3459": "88", - "4531": "89", - "3829": "90", - "6420": "91", - "5892": "92", - "6052": "93", - "5824": "94", - "3865": "95", - "4846": "96", - "5607": "97", - "4089": "98", - "2079": "99", - "3064": "100", - "8784": "101", - "15377": "102", - "15197": "103", - "13464": "104", - "13348": "105", - "15801": "106", - "15982": "107", - "15711": "108", - "14454": "109", - "11442": "110", - "16243": "111", - "14686": "112", - "16616": "113", - "16562": "114", - "15363": "115", - "18298": "116", - "17657": "117", - "16817": "118", - "16315": "119", - "10232": "120", - "19244": "121", - "18376": "122", - "10163": "123", - "17464": "124", - "11623": "125", - "19420": "126", - "16799": "127", - "12762": "128", - "18741": "129", - "12952": "130", - "22042": "131", - "19924": "132", - "16945": "133", - "19880": "134", - "17059": "135", - "20809": "136", - "19708": "137", - "20107": "138", - "20219": "139", - "15187": "140", - "23756": "141", - "23726": "142", - "21139": "143", - "18444": "144", - "18781": "145", - "20964": "146", - "20198": "147", - "18294": "148", - "19442": "149", - "8628": "150", - "24309": "151", - "17827": "152", - "21395": "153", - "21526": "154", - "18742": "155", - "21599": "156", - "18458": "157", - "21273": "158", - "19707": "159", - "14198": "160", - "25948": "161", - "25061": "162", - "24136": "163", - "23237": "164", - "20986": "165", - "23055": "166", - "21940": "167", - "14656": "168", - "22172": "169", - "17279": "170", - "27192": "171", - "23628": "172", - "25399": "173", - "22985": "174", - "17430": "175", - "24096": "176", - "22413": "177", - "23188": "178", - "21738": "179", - "15259": "180", - "27057": "181", - "24294": "182", - "24839": "183", - "22883": "184", - "21652": "185", - "25096": "186", - "23451": "187", - "20356": "188", - "23362": "189", - "19782": "190", - "26492": "191", - "17477": "192", - "24943": "193", - "22913": "194", - "22186": "195", - "25272": "196", - "24991": "197", - "22337": "198", - "19104": "199", - "2167": "200", - "1264": "201", - "19004": "202", - "22416": "203", - "18638": "204", - "21261": "205", - "22136": "206", - "22745": "207", - "21315": "208", - "22567": "209", - "21536": "210", - "21895": "211", - "21777": "212", - "26427": "213", - "22291": "214", - "23349": "215", - "20666": "216", - "24591": "217", - "28727": "218", - "28896": "219", - "17572": "220", - "26115": "221", - "23148": "222", - "22047": "223", - "24137": "224", - "18182": "225", - "24909": "226", - "24403": "227", - "23815": "228", - "23539": "229", - "19214": "230", - "25667": "231", - "24339": "232", - "25429": "233", - "24409": "234", - "22370": "235", - "24940": "236", - "24693": "237", - "23721": "238", - "23516": "239", - "16102": "240", - "28872": "241", - "27877": "242", - "26660": "243", - "25707": "244", - "22995": "245", - "26912": "246", - "23753": "247", - "23045": "248", - "21626": "249", - "9031": "250", - "28072": "251", - "22800": "252", - "28592": "253", - "24970": "254", - "13381": "255", - "11645": "256", - "28676": "257", - "25600": "258", - "25191": "259", - "21719": "260", - "30057": "261", - "29119": "262", - "29558": "263", - "18897": "264", - "22980": "265", - "25540": "266", - "25674": "267", - "25022": "268", - "26276": "269", - "20233": "270", - "28977": "271", - "29807": "272", - "27367": "273", - "28857": "274", - "23195": "275", - "27988": "276", - "27019": "277", - "25870": "278", - "26050": "279", - "21033": "280", - "30368": "281", - "32568": "282", - "30290": "283", - "30336": "284", - "26279": "285", - "27033": "286", - "27800": "287", - "25270": "288", - "27693": "289", - "24369": "290", - "33551": "291", - "32759": "292", - "31675": "293", - "27696": "294", - "25710": "295", - "27137": "296", - "26561": "297", - "27728": "298", - "22579": "299", - "6200": "300", - "18938": "301", - "22709": "302", - "22572": "303", - "21288": "304", - "22515": "305", - "20548": "306", - "22996": "307", - "21495": "308", - "26895": "309", - "26717": "310", - "36244": "311", - "27970": "312", - "25838": "313", - "33638": "314", - "27936": "315", - "33400": "316", - "34125": "317", - "36042": "318", - "35175": "319", - "19504": "320", - "36453": "321", - "37283": "322", - "32637": "323", - "33916": "324", - "26582": "325", - "39195": "326", - "34159": "327", - "34256": "328", - "37967": "329", - "26073": "330", - "31697": "331", - "32148": "332", - "20370": "333", - "31380": "334", - "27326": "335", - "29211": "336", - "31496": "337", - "28460": "338", - "29626": "339", - "23601": "340", - "33660": "341", - "31575": "342", - "32118": "343", - "33535": "344", - "27712": "345", - "30557": "346", - "30995": "347", - "28978": "348", - "27371": "349", - "14877": "350", - "35273": "351", - "33394": "352", - "33319": "353", - "32182": "354", - "28567": "355", - "32066": "356", - "27277": "357", - "31128": "358", - "30743": "359", - "15277": "360", - "35195": "361", - "35667": "362", - "35447": "363", - "26780": "364", - "24760": "365", - "32459": "366", - "27824": "367", - "27412": "368", - "30803": "369", - "20167": "370", - "38056": "371", - "36720": "372", - "34770": "373", - "31020": "374", - "22318": "375", - "32128": "376", - "26514": "377", - "30695": "378", - "29088": "379", - "23734": "380", - "36626": "381", - "36243": "382", - "34741": "383", - "22842": "384", - "27203": "385", - "21734": "386", - "32220": "387", - "30460": "388", - "29769": "389", - "25964": "390", - "37710": "391", - "32321": "392", - "26007": "393", - "34626": "394", - "31010": "395", - "34107": "396", - "33372": "397", - "31952": "398", - "28771": "399", - "7029": "400", - "21844": "401", - "32531": "402", - "31552": "403", - "26429": "404", - "26598": "405", - "29703": "406", - "30120": "407", - "26200": "408", - "29416": "409", - "33289": "410", - "42224": "411", - "39226": "412", - "44103": "413", - "37309": "414", - "35038": "415", - "35218": "416", - "38547": "417", - "39667": "418", - "45068": "419", - "27211": "420", - "46636": "421", - "44361": "422", - "43356": "423", - "40090": "424", - "32114": "425", - "42780": "426", - "42363": "427", - "40173": "428", - "11785": "429", - "31794": "430", - "50080": "431", - "45331": "432", - "42117": "433", - "47101": "434", - "40064": "435", - "43690": "436", - "43284": "437", - "43704": "438", - "47106": "439", - "25644": "440", - "39710": "441", - "39506": "442", - "34938": "443", - "30272": "444", - "43489": "445", - "27260": "446", - "34825": "447", - "31115": "448", - "31911": "449", - "17885": "450", - "36330": "451", - "37730": "452", - "36625": "453", - "34229": "454", - "30505": "455", - "29228": "456", - "33032": "457", - "29334": "458", - "33459": "459", - "34716": "460", - "40652": "461", - "39997": "462", - "38380": "463", - "44578": "464", - "42018": "465", - "42199": "466", - "24669": "467", - "38472": "468", - "42947": "469", - "27790": "470", - "38339": "471", - "37856": "472", - "37804": "473", - "38652": "474", - "32576": "475", - "35435": "476", - "32883": "477", - "29059": "478", - "31714": "479", - "22148": "480", - "40271": "481", - "40149": "482", - "38783": "483", - "34137": "484", - "32642": "485", - "34251": "486", - "35133": "487", - "33646": "488", - "35890": "489", - "31503": "490", - "41289": "491", - "40256": "492", - "43134": "493", - "39449": "494", - "33781": "495", - "37747": "496", - "38073": "497", - "36260": "498", - "28324": "499", - "4059": "500", - "33548": "501", - "35126": "502", - "31938": "503", - "33580": "504", - "31654": "505", - "35638": "506", - "35378": "507", - "33042": "508", - "29022": "509", - "33690": "510", - "41647": "511", - "25836": "512", - "48645": "513", - "47396": "514", - "45969": "515", - "47493": "516", - "48170": "517", - "44085": "518", - "47785": "519", - "31211": "520", - "49542": "522", - "49803": "523", - "48057": "524", - "39088": "525", - "48531": "526", - "49351": "528", - "49721": "529", - "38612": "530", - "44994": "533", - "44465": "535", - "44468": "536", - "46096": "537", - "49561": "538", - "35005": "540", - "47576": "544", - "45326": "545", - "49489": "546", - "49934": "548", - "44966": "549", - "22730": "550", - "43697": "551", - "40427": "552", - "48096": "553", - "44218": "554", - "31046": "555", - "37864": "556", - "41948": "557", - "40486": "558", - "38605": "559", - "34135": "560", - "47915": "561", - "43918": "562", - "46572": "563", - "47372": "565", - "49211": "568", - "39254": "570", - "42875": "571", - "48724": "572", - "48638": "573", - "46900": "574", - "36189": "575", - "37452": "576", - "49447": "577", - "38907": "578", - "41734": "579", - "39322": "580", - "48630": "581", - "46044": "582", - "46239": "583", - "46352": "584", - "38905": "585", - "29796": "586", - "44617": "587", - "39118": "588", - "44169": "589", - "36993": "590", - "48952": "591", - "45839": "592", - "49051": "593", - "46438": "594", - "35124": "595", - "45734": "596", - "43239": "597", - "41292": "598", - "43452": "599", - "8054": "600", - "41706": "601", - "31418": "602", - "35642": "603", - "31916": "604", - "32417": "605", - "33206": "606", - "31980": "607", - "28688": "608", - "31751": "609", - "39132": "610", - "43610": "612", - "47512": "613", - "46841": "614", - "47007": "615", - "44214": "616", - "47941": "617", - "47448": "618", - "38850": "620", - "46872": "623", - "26704": "625", - "45191": "626", - "49856": "627", - "48200": "628", - "48602": "629", - "30005": "630", - "48250": "635", - "31102": "640", - "42759": "641", - "41290": "642", - "41813": "643", - "29173": "644", - "49259": "645", - "27720": "646", - "33981": "647", - "34287": "648", - "33300": "649", - "17544": "650", - "40639": "651", - "43193": "652", - "46435": "653", - "39111": "654", - "35916": "655", - "37466": "656", - "37680": "657", - "38431": "658", - "36445": "659", - "39885": "660", - "47159": "661", - "39380": "662", - "45791": "663", - "36879": "665", - "27310": "666", - "28933": "667", - "35809": "668", - "36657": "669", - "43798": "670", - "46250": "671", - "43864": "672", - "45758": "673", - "45385": "674", - "42444": "675", - "42548": "676", - "40179": "677", - "30924": "678", - "37601": "679", - "37397": "680", - "48564": "681", - "43950": "682", - "47521": "683", - "41580": "684", - "35978": "685", - "33808": "686", - "39925": "687", - "34427": "688", - "40523": "689", - "35844": "690", - "49541": "691", - "46589": "692", - "48528": "693", - "45214": "694", - "37381": "695", - "38205": "696", - "40035": "697", - "39357": "698", - "47325": "699", - "9879": "700", - "41583": "701", - "36680": "702", - "36809": "703", - "32869": "704", - "34801": "705", - "35402": "706", - "24038": "707", - "32583": "708", - "31495": "709", - "43147": "710", - "49517": "712", - "50055": "713", - "45722": "714", - "45720": "718", - "23906": "720", - "45151": "725", - "47760": "727", - "48524": "728", - "48555": "729", - "43916": "730", - "49995": "733", - "49150": "736", - "45598": "740", - "50150": "745", - "48882": "747", - "48246": "748", - "15426": "750", - "48365": "751", - "43665": "752", - "44550": "753", - "41874": "754", - "38172": "755", - "38219": "756", - "39251": "757", - "38569": "758", - "38314": "759", - "40761": "760", - "48194": "762", - "49641": "763", - "29143": "765", - "32059": "767", - "30610": "768", - "41820": "770", - "46761": "771", - "43571": "772", - "46871": "773", - "47582": "774", - "34483": "775", - "39509": "776", - "29331": "777", - "39761": "778", - "40393": "779", - "40873": "780", - "49703": "781", - "46519": "782", - "50165": "783", - "37688": "784", - "41172": "785", - "46302": "786", - "41019": "787", - "40401": "789", - "37750": "790", - "48156": "792", - "44750": "793", - "50242": "794", - "41544": "795", - "41060": "796", - "44673": "797", - "43240": "798", - "45455": "799", - "7410": "800", - "41531": "801", - "30863": "802", - "43564": "803", - "36088": "804", - "28256": "805", - "37988": "806", - "36928": "807", - "28362": "808", - "34583": "809", - "40215": "810", - "49503": "815", - "41739": "820", - "47338": "825", - "48341": "830", - "48634": "833", - "40675": "840", - "25764": "850", - "45432": "855", - "45039": "860", - "39570": "864", - "42240": "866", - "46951": "870", - "31360": "875", - "42802": "877", - "41655": "880", - "42980": "882", - "49287": "883", - "40353": "884", - "44230": "885", - "44980": "886", - "46660": "887", - "28011": "888", - "39121": "889", - "49682": "893", - "48712": "896", - "44093": "899", - "12865": "900", - "46815": "901", - "44928": "905", - "44675": "909", - "43234": "910", - "35549": "911", - "40248": "915", - "48894": "916", - "37128": "920", - "46351": "925", - "45418": "930", - "46899": "940", - "48581": "949", - "31027": "950", - "50119": "951", - "49234": "952", - "49649": "953", - "48372": "954", - "50148": "956", - "39277": "960", - "38956": "968", - "38819": "969", - "43587": "970", - "42716": "975", - "32196": "978", - "40022": "980", - "42250": "985", - "49087": "986", - "44183": "987", - "42520": "989", - "34155": "990", - "41561": "992", - "44821": "993", - "42691": "994", - "33438": "995", - "38565": "996", - "39647": "997", - "34808": "998", - "17032": "999", - "12825": "1000", - "47705": "1001", - "44318": "1007", - "27956": "1016", - "35500": "1024", - "40403": "1027", - "24045": "1080", - "42060": "1100", - "26259": "1111", - "27550": "1200", - "33698": "1500", - "36150": "1600", - "39188": "1800", - "48104": "1900", - "40454": "1920", - "41931": "1945", - "42751": "1950", - "45403": "1959", - "38503": "1960", - "45192": "1963", - "46477": "1964", - "45271": "1965", - "44227": "1966", - "42830": "1967", - "42246": "1968", - "38391": "1969", - "30986": "1970", - "41208": "1971", - "41023": "1972", - "40220": "1973", - "40828": "1974", - "38449": "1975", - "38108": "1976", - "37781": "1977", - "37950": "1978", - "33581": "1979", - "23664": "1980", - "35411": "1981", - "30763": "1982", - "29279": "1983", - "28296": "1984", - "29110": "1985", - "28054": "1986", - "27301": "1987", - "26709": "1988", - "25475": "1989", - "19891": "1990", - "24529": "1991", - "23847": "1992", - "24465": "1993", - "22666": "1994", - "21908": "1995", - "22288": "1996", - "21498": "1997", - "21113": "1998", - "18946": "1999", - "11024": "2000", - "14585": "2001", - "16942": "2002", - "16088": "2003", - "15724": "2004", - "14315": "2005", - "13330": "2006", - "12726": "2007", - "11528": "2008", - "10531": "2009", - "10333": "2010", - "9804": "2011", - "6999": "2012", - "6390": "2013", - "4967": "2014", - "4626": "2015", - "5304": "2016", - "5539": "2017", - "7908": "2018", - "23344": "2019", - "42334": "2020", - "34294": "2200", - "44688": "2500", - "23924": "3000", - "24840": "3333", - "27559": "4000", - "27641": "5000", - "43434": "6000", - "19060": "6666", - "42752": "7601", - "33942": "8000", - "24214": "9999", - "49388": "10000", - "47936": "20439", - "42877": "70710", - "48527": "76561", - "33470": "200000", - "41977": "66666666", - "0": "!", - "1": "\"", - "2": "#", - "3": "$", - "4": "%", - "5": "&", - "6": "'", - "7": "(", - "8": ")", - "9": "*", - "10": "+", - "11": ",", - "12": "-", - "13": ".", - "14": "/", - "25": ":", - "26": ";", - "27": "<", - "28": "=", - "29": ">", - "30": "?", - "31": "@", - "32": "A", - "33": "B", - "34": "C", - "35": "D", - "36": "E", - "37": "F", - "38": "G", - "39": "H", - "40": "I", - "41": "J", - "42": "K", - "43": "L", - "44": "M", - "45": "N", - "46": "O", - "47": "P", - "48": "Q", - "49": "R", - "50": "S", - "51": "T", - "52": "U", - "53": "V", - "54": "W", - "55": "X", - "56": "Y", - "57": "Z", - "58": "[", - "59": "\\", - "60": "]", - "61": "^", - "62": "_", - "63": "`", - "64": "a", - "65": "b", - "66": "c", - "67": "d", - "68": "e", - "69": "f", - "70": "g", - "71": "h", - "72": "i", - "73": "j", - "74": "k", - "75": "l", - "76": "m", - "77": "n", - "78": "o", - "79": "p", - "80": "q", - "81": "r", - "82": "s", - "83": "t", - "84": "u", - "85": "v", - "86": "w", - "87": "x", - "88": "y", - "89": "z", - "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": "IJ", - "239": "ij", - "240": "Ĵ", - "241": "ĵ", - "242": "Ķ", - "243": "ķ", - "244": "ĸ", - "245": "Ĺ", - "246": "ĺ", - "247": "Ļ", - "248": "ļ", - "249": "Ľ", - "250": "ľ", - "251": "Ŀ", - "252": "ŀ", - "253": "Ł", - "254": "ł", - "255": "Ń", - "256": "Ġt", - "257": "Ġa", - "258": "he", - "259": "in", - "260": "re", - "261": "on", - "262": "Ġthe", - "263": "er", - "264": "Ġs", - "265": "at", - "266": "Ġw", - "267": "Ġo", - "268": "en", - "269": "Ġc", - "270": "it", - "271": "is", - "272": "an", - "273": "or", - "274": "es", - "275": "Ġb", - "276": "ed", - "277": "Ġf", - "278": "ing", - "279": "Ġp", - "280": "ou", - "281": "Ġan", - "282": "al", - "283": "ar", - "284": "Ġto", - "285": "Ġm", - "286": "Ġof", - "287": "Ġin", - "288": "Ġd", - "289": "Ġh", - "290": "Ġand", - "291": "ic", - "292": "as", - "293": "le", - "294": "Ġth", - "295": "ion", - "296": "om", - "297": "ll", - "298": "ent", - "299": "Ġn", - "300": "Ġl", - "301": "st", - "302": "Ġre", - "303": "ve", - "304": "Ġe", - "305": "ro", - "306": "ly", - "307": "Ġbe", - "308": "Ġg", - "309": "ĠT", - "310": "ct", - "311": "ĠS", - "312": "id", - "313": "ot", - "314": "ĠI", - "315": "ut", - "316": "et", - "317": "ĠA", - "318": "Ġis", - "319": "Ġon", - "320": "im", - "321": "am", - "322": "ow", - "323": "ay", - "324": "ad", - "325": "se", - "326": "Ġthat", - "327": "ĠC", - "328": "ig", - "329": "Ġfor", - "330": "ac", - "331": "Ġy", - "332": "ver", - "333": "ur", - "334": "Ġu", - "335": "ld", - "336": "Ġst", - "337": "ĠM", - "338": "'s", - "339": "Ġhe", - "340": "Ġit", - "341": "ation", - "342": "ith", - "343": "ir", - "344": "ce", - "345": "Ġyou", - "346": "il", - "347": "ĠB", - "348": "Ġwh", - "349": "ol", - "350": "ĠP", - "351": "Ġwith", - "352": "Ġ1", - "353": "ter", - "354": "ch", - "355": "Ġas", - "356": "Ġwe", - "357": "Ġ(", - "358": "nd", - "359": "ill", - "360": "ĠD", - "361": "if", - "362": "Ġ2", - "363": "ag", - "364": "ers", - "365": "ke", - "366": "Ġ\"", - "367": "ĠH", - "368": "em", - "369": "Ġcon", - "370": "ĠW", - "371": "ĠR", - "372": "her", - "373": "Ġwas", - "374": "Ġr", - "375": "od", - "376": "ĠF", - "377": "ul", - "378": "ate", - "379": "Ġat", - "380": "ri", - "381": "pp", - "382": "ore", - "383": "ĠThe", - "384": "Ġse", - "385": "us", - "386": "Ġpro", - "387": "Ġha", - "388": "um", - "389": "Ġare", - "390": "Ġde", - "391": "ain", - "392": "and", - "393": "Ġor", - "394": "igh", - "395": "est", - "396": "ist", - "397": "ab", - "398": "rom", - "399": "ĠN", - "400": "th", - "401": "Ġcom", - "402": "ĠG", - "403": "un", - "404": "op", - "405": "00", - "406": "ĠL", - "407": "Ġnot", - "408": "ess", - "409": "Ġex", - "410": "Ġv", - "411": "res", - "412": "ĠE", - "413": "ew", - "414": "ity", - "415": "ant", - "416": "Ġby", - "417": "el", - "418": "os", - "419": "ort", - "420": "oc", - "421": "qu", - "422": "Ġfrom", - "423": "Ġhave", - "424": "Ġsu", - "425": "ive", - "426": "ould", - "427": "Ġsh", - "428": "Ġthis", - "429": "nt", - "430": "ra", - "431": "pe", - "432": "ight", - "433": "art", - "434": "ment", - "435": "Ġal", - "436": "ust", - "437": "end", - "438": "--", - "439": "all", - "440": "ĠO", - "441": "ack", - "442": "Ġch", - "443": "Ġle", - "444": "ies", - "445": "red", - "446": "ard", - "447": "âĢ", - "448": "out", - "449": "ĠJ", - "450": "Ġab", - "451": "ear", - "452": "iv", - "453": "ally", - "454": "our", - "455": "ost", - "456": "gh", - "457": "pt", - "458": "Ġpl", - "459": "ast", - "460": "Ġcan", - "461": "ak", - "462": "ome", - "463": "ud", - "464": "The", - "465": "Ġhis", - "466": "Ġdo", - "467": "Ġgo", - "468": "Ġhas", - "469": "ge", - "470": "'t", - "471": "ĠU", - "472": "rou", - "473": "Ġsa", - "474": "Ġj", - "475": "Ġbut", - "476": "Ġwor", - "477": "Ġall", - "478": "ect", - "479": "Ġk", - "480": "ame", - "481": "Ġwill", - "482": "ok", - "483": "Ġwhe", - "484": "Ġthey", - "485": "ide", - "486": "01", - "487": "ff", - "488": "ich", - "489": "pl", - "490": "ther", - "491": "Ġtr", - "492": "..", - "493": "Ġint", - "494": "ie", - "495": "ure", - "496": "age", - "497": "Ġne", - "498": "ial", - "499": "ap", - "500": "ine", - "501": "ice", - "502": "Ġme", - "503": "Ġout", - "504": "ans", - "505": "one", - "506": "ong", - "507": "ions", - "508": "Ġwho", - "509": "ĠK", - "510": "Ġup", - "511": "Ġtheir", - "512": "Ġad", - "513": "Ġ3", - "514": "Ġus", - "515": "ated", - "516": "ous", - "517": "Ġmore", - "518": "ue", - "519": "og", - "520": "ĠSt", - "521": "ind", - "522": "ike", - "523": "Ġso", - "524": "ime", - "525": "per", - "526": ".\"", - "527": "ber", - "528": "iz", - "529": "act", - "530": "Ġone", - "531": "Ġsaid", - "532": "Ġ-", - "533": "are", - "534": "Ġyour", - "535": "cc", - "536": "ĠTh", - "537": "Ġcl", - "538": "ep", - "539": "ake", - "540": "able", - "541": "ip", - "542": "Ġcont", - "543": "Ġwhich", - "544": "ia", - "545": "Ġim", - "546": "Ġabout", - "547": "Ġwere", - "548": "very", - "549": "ub", - "550": "Ġhad", - "551": "Ġen", - "552": "Ġcomp", - "553": ",\"", - "554": "ĠIn", - "555": "Ġun", - "556": "Ġag", - "557": "ire", - "558": "ace", - "559": "au", - "560": "ary", - "561": "Ġwould", - "562": "ass", - "563": "ry", - "564": "ĠâĢ", - "565": "cl", - "566": "ook", - "567": "ere", - "568": "so", - "569": "ĠV", - "570": "ign", - "571": "ib", - "572": "Ġoff", - "573": "Ġte", - "574": "ven", - "575": "ĠY", - "576": "ile", - "577": "ose", - "578": "ite", - "579": "orm", - "580": "Ġ201", - "581": "Ġres", - "582": "Ġman", - "583": "Ġper", - "584": "Ġother", - "585": "ord", - "586": "ult", - "587": "Ġbeen", - "588": "Ġlike", - "589": "ase", - "590": "ance", - "591": "ks", - "592": "ays", - "593": "own", - "594": "ence", - "595": "Ġdis", - "596": "ction", - "597": "Ġany", - "598": "Ġapp", - "599": "Ġsp", - "600": "int", - "601": "ress", - "602": "ations", - "603": "ail", - "604": "Ġ4", - "605": "ical", - "606": "Ġthem", - "607": "Ġher", - "608": "ount", - "609": "ĠCh", - "610": "Ġar", - "611": "Ġif", - "612": "Ġthere", - "613": "Ġpe", - "614": "Ġyear", - "615": "av", - "616": "Ġmy", - "617": "Ġsome", - "618": "Ġwhen", - "619": "ough", - "620": "ach", - "621": "Ġthan", - "622": "ru", - "623": "ond", - "624": "ick", - "625": "Ġover", - "626": "vel", - "627": "Ġqu", - "628": "ĊĊ", - "629": "Ġsc", - "630": "reat", - "631": "ree", - "632": "ĠIt", - "633": "ound", - "634": "port", - "635": "Ġalso", - "636": "Ġpart", - "637": "fter", - "638": "Ġkn", - "639": "Ġbec", - "640": "Ġtime", - "641": "ens", - "642": "Ġ5", - "643": "ople", - "644": "Ġwhat", - "645": "Ġno", - "646": "du", - "647": "mer", - "648": "ang", - "649": "Ġnew", - "650": "----", - "651": "Ġget", - "652": "ory", - "653": "ition", - "654": "ings", - "655": "Ġjust", - "656": "Ġinto", - "657": "Ġ0", - "658": "ents", - "659": "ove", - "660": "te", - "661": "Ġpeople", - "662": "Ġpre", - "663": "Ġits", - "664": "Ġrec", - "665": "Ġtw", - "666": "ian", - "667": "irst", - "668": "ark", - "669": "ors", - "670": "Ġwork", - "671": "ade", - "672": "ob", - "673": "Ġshe", - "674": "Ġour", - "675": "wn", - "676": "ink", - "677": "lic", - "678": "Ġ19", - "679": "ĠHe", - "680": "ish", - "681": "nder", - "682": "ause", - "683": "Ġhim", - "684": "ons", - "685": "Ġ[", - "686": "Ġro", - "687": "form", - "688": "ild", - "689": "ates", - "690": "vers", - "691": "Ġonly", - "692": "oll", - "693": "Ġspe", - "694": "ck", - "695": "ell", - "696": "amp", - "697": "Ġacc", - "698": "Ġbl", - "699": "ious", - "700": "urn", - "701": "ft", - "702": "ood", - "703": "Ġhow", - "704": "hed", - "705": "Ġ'", - "706": "Ġafter", - "707": "aw", - "708": "Ġatt", - "709": "ov", - "710": "ne", - "711": "Ġplay", - "712": "erv", - "713": "ict", - "714": "Ġcould", - "715": "itt", - "716": "Ġam", - "717": "Ġfirst", - "718": "Ġ6", - "719": "Ġact", - "720": "Ġ$", - "721": "ec", - "722": "hing", - "723": "ual", - "724": "ull", - "725": "Ġcomm", - "726": "oy", - "727": "old", - "728": "ces", - "729": "ater", - "730": "Ġfe", - "731": "Ġbet", - "732": "we", - "733": "iff", - "734": "Ġtwo", - "735": "ock", - "736": "Ġback", - "737": ").", - "738": "ident", - "739": "Ġunder", - "740": "rough", - "741": "sel", - "742": "xt", - "743": "Ġmay", - "744": "round", - "745": "Ġpo", - "746": "ph", - "747": "iss", - "748": "Ġdes", - "749": "Ġmost", - "750": "Ġdid", - "751": "Ġadd", - "752": "ject", - "753": "Ġinc", - "754": "fore", - "755": "Ġpol", - "756": "ont", - "757": "Ġagain", - "758": "clud", - "759": "tern", - "760": "Ġknow", - "761": "Ġneed", - "762": "Ġcons", - "763": "Ġco", - "764": "Ġ.", - "765": "Ġwant", - "766": "Ġsee", - "767": "Ġ7", - "768": "ning", - "769": "iew", - "770": "ĠThis", - "771": "ced", - "772": "Ġeven", - "773": "Ġind", - "774": "ty", - "775": "ĠWe", - "776": "ath", - "777": "Ġthese", - "778": "Ġpr", - "779": "Ġuse", - "780": "Ġbecause", - "781": "Ġfl", - "782": "ng", - "783": "Ġnow", - "784": "ĠâĢĵ", - "785": "com", - "786": "ise", - "787": "Ġmake", - "788": "Ġthen", - "789": "ower", - "790": "Ġevery", - "791": "ĠUn", - "792": "Ġsec", - "793": "oss", - "794": "uch", - "795": "Ġem", - "796": "Ġ=", - "797": "ĠRe", - "798": "ied", - "799": "rit", - "800": "Ġinv", - "801": "lect", - "802": "Ġsupp", - "803": "ating", - "804": "Ġlook", - "805": "man", - "806": "pect", - "807": "Ġ8", - "808": "row", - "809": "Ġbu", - "810": "Ġwhere", - "811": "ific", - "812": "Ġyears", - "813": "ily", - "814": "Ġdiff", - "815": "Ġshould", - "816": "Ġrem", - "817": "Th", - "818": "In", - "819": "Ġev", - "820": "day", - "821": "'re", - "822": "rib", - "823": "Ġrel", - "824": "ss", - "825": "Ġdef", - "826": "Ġright", - "827": "Ġsy", - "828": "),", - "829": "les", - "830": "000", - "831": "hen", - "832": "Ġthrough", - "833": "ĠTr", - "834": "__", - "835": "Ġway", - "836": "Ġdon", - "837": "Ġ,", - "838": "Ġ10", - "839": "ased", - "840": "Ġass", - "841": "ublic", - "842": "Ġreg", - "843": "ĠAnd", - "844": "ix", - "845": "Ġvery", - "846": "Ġinclud", - "847": "other", - "848": "Ġimp", - "849": "oth", - "850": "Ġsub", - "851": "ĠâĢĶ", - "852": "Ġbeing", - "853": "arg", - "854": "ĠWh", - "855": "==", - "856": "ible", - "857": "Ġdoes", - "858": "ange", - "859": "ram", - "860": "Ġ9", - "861": "ert", - "862": "ps", - "863": "ited", - "864": "ational", - "865": "Ġbr", - "866": "Ġdown", - "867": "Ġmany", - "868": "aking", - "869": "Ġcall", - "870": "uring", - "871": "ities", - "872": "Ġph", - "873": "ics", - "874": "als", - "875": "Ġdec", - "876": "ative", - "877": "ener", - "878": "Ġbefore", - "879": "ility", - "880": "Ġwell", - "881": "Ġmuch", - "882": "erson", - "883": "Ġthose", - "884": "Ġsuch", - "885": "Ġke", - "886": "Ġend", - "887": "ĠBut", - "888": "ason", - "889": "ting", - "890": "Ġlong", - "891": "ef", - "892": "Ġthink", - "893": "ys", - "894": "Ġbel", - "895": "Ġsm", - "896": "its", - "897": "ax", - "898": "Ġown", - "899": "Ġprov", - "900": "Ġset", - "901": "ife", - "902": "ments", - "903": "ble", - "904": "ward", - "905": "Ġshow", - "906": "Ġpres", - "907": "ms", - "908": "omet", - "909": "Ġob", - "910": "Ġsay", - "911": "ĠSh", - "912": "ts", - "913": "ful", - "914": "Ġeff", - "915": "Ġgu", - "916": "Ġinst", - "917": "und", - "918": "ren", - "919": "cess", - "920": "Ġent", - "921": "ĠYou", - "922": "Ġgood", - "923": "Ġstart", - "924": "ince", - "925": "Ġmade", - "926": "tt", - "927": "stem", - "928": "olog", - "929": "up", - "930": "Ġ|", - "931": "ump", - "932": "Ġhel", - "933": "vern", - "934": "ular", - "935": "ually", - "936": "Ġac", - "937": "Ġmon", - "938": "Ġlast", - "939": "Ġ200", - "941": "Ġstud", - "942": "ures", - "943": "ĠAr", - "944": "self", - "945": "ars", - "946": "meric", - "947": "ues", - "948": "cy", - "949": "Ġmin", - "950": "ollow", - "951": "Ġcol", - "952": "io", - "953": "Ġmod", - "954": "Ġcount", - "955": "ĠCom", - "956": "hes", - "957": "Ġfin", - "958": "air", - "959": "ier", - "960": "âĢĶ", - "961": "read", - "962": "ank", - "963": "atch", - "964": "ever", - "965": "Ġstr", - "966": "Ġpoint", - "967": "ork", - "968": "ĠNew", - "969": "Ġsur", - "970": "ool", - "971": "alk", - "972": "ement", - "973": "Ġused", - "974": "ract", - "975": "ween", - "976": "Ġsame", - "977": "oun", - "978": "ĠAl", - "979": "ci", - "980": "Ġdiffere", - "981": "Ġwhile", - "982": "--------", - "983": "Ġgame", - "984": "cept", - "985": "Ġsim", - "986": "...", - "987": "Ġinter", - "988": "ek", - "989": "Ġreport", - "990": "Ġprodu", - "991": "Ġstill", - "992": "led", - "993": "ah", - "994": "Ġhere", - "995": "Ġworld", - "996": "Ġthough", - "997": "Ġnum", - "998": "arch", - "999": "imes", - "1000": "ale", - "1001": "ĠSe", - "1002": "ĠIf", - "1003": "//", - "1004": "ĠLe", - "1005": "Ġret", - "1006": "Ġref", - "1007": "Ġtrans", - "1008": "ner", - "1009": "ution", - "1010": "ters", - "1011": "Ġtake", - "1012": "ĠCl", - "1013": "Ġconf", - "1014": "way", - "1015": "ave", - "1016": "Ġgoing", - "1017": "Ġsl", - "1018": "ug", - "1019": "ĠAmeric", - "1020": "Ġspec", - "1021": "Ġhand", - "1022": "Ġbetween", - "1023": "ists", - "1024": "ĠDe", - "1025": "oot", - "1026": "It", - "1027": "Ġear", - "1028": "Ġagainst", - "1029": "Ġhigh", - "1030": "gan", - "1031": "az", - "1032": "ather", - "1033": "Ġexp", - "1034": "Ġop", - "1035": "Ġins", - "1036": "Ġgr", - "1037": "Ġhelp", - "1038": "Ġrequ", - "1039": "ets", - "1040": "ins", - "1041": "ĠPro", - "1042": "ism", - "1043": "Ġfound", - "1044": "land", - "1045": "ata", - "1046": "uss", - "1047": "ames", - "1048": "Ġperson", - "1049": "Ġgreat", - "1050": "pr", - "1051": "Ġsign", - "1052": "ĠAn", - "1053": "'ve", - "1054": "Ġsomet", - "1055": "Ġser", - "1056": "hip", - "1057": "Ġrun", - "1058": "Ġ:", - "1059": "Ġter", - "1060": "irect", - "1061": "Ġfollow", - "1062": "Ġdet", - "1063": "ices", - "1064": "Ġfind", - "1066": "Ġmem", - "1067": "Ġcr", - "1068": "ered", - "1069": "ex", - "1070": "Ġext", - "1071": "uth", - "1072": "ense", - "1073": "co", - "1074": "Ġteam", - "1075": "ving", - "1076": "ouse", - "1077": "ash", - "1078": "att", - "1079": "ved", - "1080": "Ġsystem", - "1081": "ĠAs", - "1082": "der", - "1083": "ives", - "1084": "min", - "1085": "Ġlead", - "1086": "ĠBl", - "1087": "cent", - "1088": "Ġaround", - "1089": "Ġgovern", - "1090": "Ġcur", - "1091": "velop", - "1092": "any", - "1093": "Ġcour", - "1094": "alth", - "1095": "ages", - "1096": "ize", - "1097": "Ġcar", - "1098": "ode", - "1099": "Ġlaw", - "1100": "Ġread", - "1101": "'m", - "1102": "con", - "1103": "Ġreal", - "1104": "Ġsupport", - "1105": "Ġ12", - "1106": "....", - "1107": "Ġreally", - "1108": "ness", - "1109": "Ġfact", - "1110": "Ġday", - "1111": "Ġboth", - "1112": "ying", - "1113": "Ġserv", - "1114": "ĠFor", - "1115": "Ġthree", - "1116": "Ġwom", - "1117": "Ġmed", - "1118": "ody", - "1119": "ĠThey", - "1121": "Ġexper", - "1122": "ton", - "1123": "Ġeach", - "1124": "akes", - "1125": "Ġche", - "1126": "Ġcre", - "1127": "ines", - "1128": "Ġrep", - "1130": "gg", - "1131": "illion", - "1132": "Ġgrou", - "1133": "ute", - "1134": "ik", - "1135": "We", - "1136": "get", - "1137": "ER", - "1138": "Ġmet", - "1139": "Ġsays", - "1140": "ox", - "1141": "Ġduring", - "1142": "ern", - "1143": "ized", - "1144": "ared", - "1145": "Ġfam", - "1146": "ically", - "1147": "Ġhapp", - "1148": "ĠIs", - "1149": "Ġchar", - "1150": "med", - "1151": "vent", - "1152": "Ġgener", - "1153": "ient", - "1154": "ple", - "1155": "iet", - "1156": "rent", - "1158": "ves", - "1159": "ption", - "1160": "Ġ20", - "1161": "formation", - "1162": "Ġcor", - "1163": "Ġoffic", - "1164": "ield", - "1165": "Ġtoo", - "1166": "ision", - "1167": "Ġinf", - "1168": "ĠZ", - "1169": "the", - "1170": "oad", - "1171": "Ġpublic", - "1172": "Ġprog", - "1173": "ric", - "1174": "**", - "1175": "Ġwar", - "1176": "Ġpower", - "1177": "view", - "1178": "Ġfew", - "1179": "Ġloc", - "1180": "Ġdifferent", - "1181": "Ġstate", - "1182": "Ġhead", - "1183": "'ll", - "1184": "Ġposs", - "1185": "Ġstat", - "1186": "ret", - "1187": "ants", - "1188": "Ġval", - "1189": "Ġiss", - "1190": "Ġcle", - "1191": "ivers", - "1192": "anc", - "1193": "Ġexpl", - "1194": "Ġanother", - "1195": "ĠQ", - "1196": "Ġav", - "1197": "thing", - "1198": "nce", - "1199": "Wh", - "1200": "Ġchild", - "1201": "Ġsince", - "1202": "ired", - "1203": "less", - "1204": "Ġlife", - "1205": "Ġdevelop", - "1206": "ittle", - "1207": "Ġdep", - "1208": "Ġpass", - "1209": "ãĥ", - "1210": "Ġturn", - "1211": "orn", - "1212": "This", - "1213": "bers", - "1214": "ross", - "1215": "ĠAd", - "1216": "Ġfr", - "1217": "Ġresp", - "1218": "Ġsecond", - "1219": "oh", - "1220": "Ġ/", - "1221": "Ġdisc", - "1222": "Ġ&", - "1223": "Ġsomething", - "1224": "Ġcomple", - "1225": "Ġed", - "1226": "Ġfil", - "1227": "Ġmonth", - "1228": "aj", - "1229": "uc", - "1230": "Ġgovernment", - "1231": "Ġwithout", - "1232": "Ġleg", - "1233": "Ġdist", - "1234": "Ġput", - "1235": "Ġquest", - "1236": "ann", - "1237": "Ġprot", - "1239": "Ġnever", - "1240": "ience", - "1241": "Ġlevel", - "1242": "Ġart", - "1243": "Ġthings", - "1244": "Ġmight", - "1245": "Ġeffect", - "1246": "Ġcontro", - "1247": "Ġcent", - "1248": "Ġ18", - "1249": "Ġallow", - "1250": "Ġbelie", - "1251": "chool", - "1252": "ott", - "1253": "Ġincre", - "1254": "Ġfeel", - "1255": "Ġresult", - "1256": "Ġlot", - "1257": "Ġfun", - "1258": "ote", - "1259": "Ġty", - "1260": "erest", - "1261": "Ġcontin", - "1262": "Ġusing", - "1263": "Ġbig", - "1265": "Ġask", - "1266": "Ġbest", - "1267": "Ġ)", - "1268": "IN", - "1269": "Ġopp", - "1271": "Ġnumber", - "1272": "iness", - "1273": "St", - "1274": "lease", - "1275": "Ġca", - "1276": "Ġmust", - "1277": "Ġdirect", - "1278": "Ġgl", - "1279": "Ġ<", - "1280": "Ġopen", - "1281": "Ġpost", - "1282": "Ġcome", - "1283": "Ġseem", - "1284": "ording", - "1285": "Ġweek", - "1286": "ately", - "1287": "ital", - "1288": "Ġel", - "1289": "riend", - "1290": "Ġfar", - "1291": "Ġtra", - "1292": "inal", - "1293": "Ġpri", - "1294": "ĠUS", - "1295": "Ġplace", - "1296": "Ġform", - "1297": "Ġtold", - "1298": "\":", - "1299": "ains", - "1300": "ature", - "1301": "ĠTrump", - "1302": "Ġstand", - "1303": "Ġ#", - "1304": "ider", - "1305": "ĠFr", - "1306": "Ġnext", - "1307": "Ġsoc", - "1308": "Ġpur", - "1309": "Ġlet", - "1310": "Ġlittle", - "1311": "Ġhum", - "1312": "Ġi", - "1313": "ron", - "1315": "Ġ15", - "1316": "Ġcommun", - "1317": "Ġmark", - "1318": "ĠThere", - "1319": "Ġwr", - "1320": "ĠThat", - "1321": "Ġinformation", - "1322": "ways", - "1323": "Ġbus", - "1324": "app", - "1325": "Ġinvest", - "1326": "me", - "1327": "Ġhard", - "1328": "ained", - "1329": "ead", - "1330": "Ġimport", - "1331": "Ġappro", - "1332": "Ġtest", - "1333": "Ġtri", - "1334": "Ġrest", - "1335": "osed", - "1336": "Ġfull", - "1337": "Ġcare", - "1338": "ĠSp", - "1339": "Ġcase", - "1340": "ON", - "1341": "Ġsk", - "1342": "Ġless", - "1343": "Ġ+", - "1344": "Ġpartic", - "1345": "ĠPl", - "1346": "ably", - "1347": "uck", - "1348": "ished", - "1349": "chn", - "1350": "be", - "1351": "Ġlist", - "1352": "ator", - "1353": "Ġtop", - "1354": "Ġadv", - "1355": "ĠBe", - "1356": "ruct", - "1357": "Ġdem", - "1358": "ration", - "1359": "ling", - "1360": "gy", - "1361": "reen", - "1362": "ger", - "1363": "Ġhome", - "1364": "Ġleft", - "1365": "Ġbetter", - "1366": "Ġdata", - "1367": "Ġ11", - "1368": "Ġattack", - "1369": "Ġproble", - "1370": "line", - "1371": "ards", - "1372": "Ġbeh", - "1373": "ral", - "1374": "ĠHow", - "1375": "ĠShe", - "1376": "arge", - "1377": "Ġ--", - "1378": "://", - "1379": "Ġbro", - "1380": "ĠPh", - "1381": "ats", - "1382": "Ġbuild", - "1383": "ww", - "1384": "ided", - "1385": "aim", - "1386": "ases", - "1387": "ency", - "1388": "Ġmain", - "1389": "ined", - "1390": "Ġincluding", - "1391": "Ġ{", - "1392": "Ġgot", - "1393": "Ġinterest", - "1394": "Ġkeep", - "1395": "ĠX", - "1396": "Ġeas", - "1397": "aining", - "1398": "Ġclass", - "1399": "â̦", - "1400": "ĠNo", - "1401": "Ġvar", - "1402": "Ġsmall", - "1403": "ample", - "1404": "AT", - "1405": "Ġide", - "1406": "ĠSo", - "1407": "Ġrece", - "1408": "Ġpolit", - "1409": "Ġmov", - "1410": "Ġplan", - "1411": "Ġpercent", - "1412": "iving", - "1413": "Ġcamp", - "1414": "Ġpay", - "1416": "sc", - "1417": "ised", - "1418": "Ġunt", - "1419": "oney", - "1420": "ploy", - "1421": "====", - "1422": "Ġdidn", - "1423": "ĠInd", - "1424": "els", - "1425": "ertain", - "1426": "Ġpos", - "1427": "____", - "1428": "iver", - "1429": "Ġprocess", - "1430": "Ġprogram", - "1431": "ified", - "1432": "ĠRep", - "1434": "uro", - "1435": "ology", - "1436": "atter", - "1437": "ina", - "1438": "Ġname", - "1439": "ĠAll", - "1440": "Ġfour", - "1441": "Ġreturn", - "1442": "vious", - "1443": "bs", - "1444": "Ġcalled", - "1445": "Ġmove", - "1446": "ĠSc", - "1447": "ird", - "1448": "Ġgroup", - "1449": "Ġbre", - "1450": "Ġmen", - "1451": "Ġcap", - "1452": "ten", - "1453": "ee", - "1454": "Ġdri", - "1455": "leg", - "1456": "here", - "1457": "uthor", - "1458": "Ġpat", - "1459": "Ġcurrent", - "1460": "ides", - "1461": "Ġpop", - "1462": "to", - "1463": "ention", - "1464": "Ġalways", - "1465": "Ġmil", - "1466": "Ġwomen", - "1467": "Ġ16", - "1468": "Ġold", - "1469": "iven", - "1470": "raph", - "1471": "ĠOr", - "1472": "ror", - "1473": "ently", - "1474": "Ġnear", - "1475": "ĠEx", - "1476": "ream", - "1477": "sh", - "1478": "Ġ14", - "1479": "Ġfree", - "1480": "ission", - "1481": "stand", - "1482": "ĠCon", - "1483": "ality", - "1484": "used", - "1486": "Ġdesign", - "1487": "Ġchange", - "1488": "Ġchang", - "1489": "Ġbo", - "1490": "Ġvis", - "1491": "ember", - "1492": "Ġbook", - "1493": "ready", - "1494": "Ġkill", - "1496": "pped", - "1497": "Ġaway", - "1498": "Ġable", - "1499": "Ġcountry", - "1500": "Ġconst", - "1501": "arn", - "1502": "Ġorder", - "1503": "AR", - "1504": "ior", - "1505": "ium", - "1506": "orth", - "1508": "ailable", - "1509": "Ġsw", - "1510": "Ġmillion", - "1511": "Ġ13", - "1512": "atic", - "1513": "ted", - "1514": "ĠGo", - "1515": "Ġoper", - "1516": "eng", - "1517": "Ġthing", - "1518": "ajor", - "1519": "conom", - "1520": "ĠComm", - "1521": "Ġwhy", - "1522": "ured", - "1523": "ural", - "1524": "Ġschool", - "1525": "by", - "1526": "ĠMar", - "1527": "Ġaff", - "1528": "Ġdays", - "1529": "Ġann", - "1530": "ush", - "1531": "ane", - "1532": "If", - "1533": "eg", - "1534": "Ġprof", - "1535": "Ġhealth", - "1536": "outh", - "1537": "But", - "1538": "ional", - "1539": ".,", - "1540": "Ġsol", - "1541": "Ġalready", - "1542": "Ġ30", - "1543": "Ġcharact", - "1544": "He", - "1545": "Ġfriend", - "1546": "ES", - "1547": "ians", - "1548": "icle", - "1549": "'d", - "1550": "ĠOn", - "1551": "Ġleast", - "1552": "Ġprom", - "1553": "Ġdr", - "1554": "Ġhist", - "1555": "ither", - "1556": "Ġest", - "1557": "iqu", - "1559": "son", - "1560": "Ġtell", - "1561": "Ġtalk", - "1562": "ohn", - "1563": "oint", - "1564": "lection", - "1565": "AN", - "1566": "Ġuntil", - "1567": "augh", - "1568": "Ġlater", - "1569": "Ġve", - "1570": "Ġview", - "1571": "ending", - "1572": "ived", - "1573": "Ġword", - "1574": "ware", - "1575": "Ġcost", - "1576": "Ġenough", - "1577": "Ġgive", - "1578": "ĠUnited", - "1579": "Ġtechn", - "1580": "arent", - "1581": "OR", - "1582": "Ġpar", - "1583": "ĠDr", - "1584": "Ġ2016", - "1585": "rist", - "1586": "ering", - "1587": "ĠÂ", - "1588": "Ġlarge", - "1589": "side", - "1590": "acy", - "1591": "ccess", - "1592": "Ġwin", - "1593": "Ġimportant", - "1594": "Ġ199", - "1595": "Ġdoesn", - "1596": "Ġ17", - "1597": "Ġbusiness", - "1598": "Ġclear", - "1599": "Ġrese", - "1600": "\",", - "1601": "ury", - "1602": "Ġequ", - "1603": "aster", - "1604": "alf", - "1605": "ĠAmerican", - "1606": "nect", - "1607": "Ġexpect", - "1608": "iversity", - "1609": "Ġocc", - "1610": "ĠFl", - "1611": "Ġkind", - "1612": "Ġmean", - "1613": "Ġpast", - "1614": "Ġdev", - "1615": "Ġbas", - "1616": "let", - "1617": "raft", - "1618": "Ġorgan", - "1619": "Ġdel", - "1620": "Ġperform", - "1621": "Ġstory", - "1622": "Ġseason", - "1623": "ĠCol", - "1624": "Ġclaim", - "1625": "Ġcame", - "1626": "Ġwithin", - "1627": "Ġline", - "1628": "Ġproject", - "1629": "ĠAt", - "1630": "Ġcontrol", - "1631": "ended", - "1632": "ĠSy", - "1633": "Ġair", - "1634": "ization", - "1635": "Ġ*", - "1636": "ley", - "1637": "Ġmoney", - "1638": "idd", - "1639": "You", - "1640": "for", - "1641": "Ġfamily", - "1642": "Ġmaking", - "1643": "Ġbit", - "1644": "Ġpolice", - "1645": "Ġhappen", - "1646": "Ġvers", - "1647": "ony", - "1648": "uff", - "1649": "ĠWhen", - "1650": "Ġsit", - "1651": "ideo", - "1652": "lf", - "1653": "ison", - "1654": "Ġsure", - "1655": "gin", - "1656": "Ġappear", - "1657": "Ġlight", - "1658": "Ġes", - "1659": "of", - "1660": "Ġwater", - "1661": "Ġtimes", - "1662": "not", - "1663": "Ġgrow", - "1664": "Ġcompany", - "1665": "ĠTe", - "1666": "ows", - "1667": "Ġmar", - "1668": "ource", - "1669": "iol", - "1670": "arm", - "1671": "br", - "1672": "Ġexample", - "1673": "Ġconc", - "1674": "Ġfore", - "1675": "ĠTo", - "1676": "pro", - "1677": "EN", - "1678": "ries", - "1679": "Ġ25", - "1680": "ĠCan", - "1681": "ney", - "1682": "Ġactually", - "1683": "Ġever", - "1684": "urity", - "1685": "aken", - "1686": "aps", - "1687": "Ġtax", - "1688": "Ġmajor", - "1689": "ama", - "1690": "Ġoften", - "1691": "eral", - "1692": "Ġhuman", - "1693": "Ġjob", - "1694": "ister", - "1695": "Ġavailable", - "1696": "ocr", - "1697": "enn", - "1698": "aid", - "1699": "ivid", - "1700": "Ġrecord", - "1701": "?\"", - "1702": "Ġsing", - "1703": "ĠAm", - "1704": "idence", - "1705": "Ġnews", - "1706": "ster", - "1707": "Ġeconom", - "1708": "Ġfollowing", - "1709": "ĠBr", - "1710": "ising", - "1711": "Ġhour", - "1712": "most", - "1713": "ument", - "1714": "Ġsex", - "1715": "Ġdesc", - "1716": "Ġbecome", - "1717": "ĠEd", - "1718": "Ġtook", - "1719": "Ġhaving", - "1720": "Ġproduct", - "1721": "ault", - "1722": "As", - "1723": "aring", - "1724": "Ġmeans", - "1725": "Ġhop", - "1726": "une", - "1727": "Ġcho", - "1728": "Ġcertain", - "1729": "Ġnon", - "1730": "Ġdeal", - "1732": "lement", - "1733": "oci", - "1734": "ene", - "1735": "Ġside", - "1736": "ĠPr", - "1737": "ĠMay", - "1738": "Ġreason", - "1739": "ued", - "1740": "ched", - "1741": "ulation", - "1742": "Ġelect", - "1743": "Ġofficial", - "1744": "Ġpossible", - "1745": "Ġhold", - "1746": "ands", - "1747": "ots", - "1748": "Ġcity", - "1749": "ories", - "1750": "Ġsever", - "1751": "Ġchildren", - "1752": "Ġonce", - "1753": "Ġactiv", - "1754": "ler", - "1755": "Ġnight", - "1756": "itions", - "1757": "ĠJohn", - "1758": "ape", - "1759": "play", - "1760": "Ġdone", - "1761": "Ġlim", - "1762": "Ġworking", - "1763": "ĠPres", - "1764": "orld", - "1765": "eb", - "1766": "ĠCo", - "1767": "Ġbody", - "1768": "ails", - "1769": "utes", - "1770": "ĠMr", - "1771": "Ġwhether", - "1772": "Ġauthor", - "1773": "rop", - "1774": "Ġproper", - "1775": "Ġseen", - "1776": ");", - "1777": "Ġfac", - "1778": "ĠSu", - "1779": "Ġcond", - "1780": "iting", - "1781": "Ġcourse", - "1782": "Ġ}", - "1783": "----------------", - "1784": "aign", - "1785": "Ġevent", - "1786": "Ġeng", - "1787": "Ġpot", - "1788": "Ġintern", - "1789": "iam", - "1790": "Ġshort", - "1791": "empt", - "1792": "ãĤ", - "1793": "ĠGod", - "1794": "ilar", - "1796": "Ġorig", - "1797": "IS", - "1798": "ourn", - "1799": "ability", - "1800": "itive", - "1801": "Ġdam", - "1802": "Ġ100", - "1803": "Ġpress", - "1804": "Ġdoing", - "1805": "Ġprotect", - "1806": "ring", - "1807": "Ġthought", - "1808": "Ġquestion", - "1809": "rew", - "1810": "ĠWar", - "1811": "Ġseveral", - "1812": "ĠState", - "1813": "Ġgiven", - "1814": "Ġfund", - "1815": "ĠTw", - "1816": "Ġwent", - "1817": "ances", - "1818": "work", - "1819": "por", - "1820": "my", - "1822": "Ġarg", - "1823": "artment", - "1824": "ustom", - "1825": "Ġpolic", - "1826": "Ġmeet", - "1827": "Ġcreat", - "1829": "ĠStates", - "1830": "Ġgames", - "1831": "raw", - "1832": "uture", - "1833": "Ġunderstand", - "1834": "urs", - "1835": "ĠOb", - "1836": "lish", - "1837": "sy", - "1838": "Ġmakes", - "1839": "Ġwon", - "1840": "agon", - "1841": "Ġhtt", - "1842": "Ġlove", - "1843": "ential", - "1844": "Ġcomplete", - "1845": "par", - "1846": "ĠIm", - "1847": "AL", - "1848": "Ġaccount", - "1849": "Âł", - "1850": "ored", - "1851": "vert", - "1852": "Ġident", - "1853": "Ġ2015", - "1854": "Ġothers", - "1855": "ĠMin", - "1856": "iber", - "1857": "verage", - "1858": "There", - "1859": "itional", - "1860": "dd", - "1861": "Ġprob", - "1862": "Ġyoung", - "1863": "Ġalong", - "1864": "Ġaccording", - "1865": "Ġyet", - "1866": "Ġmembers", - "1867": "ĠWhat", - "1868": "oid", - "1869": "ĠMan", - "1870": "And", - "1871": "Ġamong", - "1872": "ai", - "1873": "Ġemploy", - "1874": "ĠRes", - "1875": "Ġ>", - "1876": "Ġinvol", - "1877": "Ġlow", - "1878": "af", - "1879": "ĠCar", - "1880": "Ġhig", - "1881": "ĠOne", - "1882": "ĠSec", - "1883": "ination", - "1884": "Ġlikely", - "1885": "Ġant", - "1886": "aged", - "1887": "ĠRuss", - "1888": "Ġben", - "1889": "Ġrele", - "1890": "For", - "1891": "back", - "1892": "ĠNot", - "1893": "Ġpresident", - "1894": "ball", - "1895": "Ġaccess", - "1896": "ividual", - "1897": "ĠDem", - "1898": "ĠEuro", - "1900": "Ġknown", - "1901": "irl", - "1902": "ĠGr", - "1903": "Ġearly", - "1904": "use", - "1905": "iety", - "1906": "âĢĵ", - "1907": "Ġfight", - "1908": "Ġsent", - "1909": "Ġtoday", - "1910": "Ġmarket", - "1911": "\".", - "1912": "Ġbased", - "1913": "Ġstrong", - "1914": "urther", - "1915": "Ġdeb", - "1916": "mber", - "1917": "Ġproblem", - "1918": "Ġdeath", - "1919": "Ġsocial", - "1920": "imate", - "1921": "AS", - "1922": "ortun", - "1923": "Ġcampaign", - "1924": "ery", - "1925": "Ch", - "1926": "Ġey", - "1927": "ially", - "1928": "Ġmus", - "1929": "wh", - "1930": "pos", - "1931": "Ġer", - "1932": "Ġsaf", - "1933": "Ġmonths", - "1934": "iron", - "1935": "Ġviol", - "1936": "Ġfive", - "1937": "Ġstre", - "1938": "Ġplayers", - "1939": "inc", - "1940": "ald", - "1941": "year", - "1942": "aun", - "1943": "Ġsuccess", - "1944": "Ġpresent", - "1945": "erence", - "1946": "Ġ2014", - "1947": "Ġsugg", - "1948": "Ġparticular", - "1949": "Ġtry", - "1950": "Ġsuggest", - "1951": "ĠChrist", - "1952": "ones", - "1953": "Ġpriv", - "1955": "Ġcrit", - "1956": "Ġland", - "1957": "Ġlocal", - "1958": "ify", - "1960": "Ġaut", - "1961": "ED", - "1962": "ĠGu", - "1963": "Ġmult", - "1964": "Ġpolitical", - "1965": "Ġasked", - "1966": "Ġformer", - "1967": "itter", - "1968": "ript", - "1969": "Ġclose", - "1970": "Ġpract", - "1971": "ĠYork", - "1972": "Ġgetting", - "1973": "Ġacross", - "1974": "Ġcomb", - "1975": "Ġbelieve", - "1976": "Ġz", - "1977": "Ġtoget", - "1978": "Ġtogether", - "1979": "ĠCent", - "1980": "irc", - "1981": "Ġindividual", - "1982": "ĠMc", - "1984": "isk", - "1985": "ĠEng", - "1986": "Ġface", - "1987": "Ġ24", - "1988": "Ġvalue", - "1989": "Ġarea", - "1990": "ev", - "1991": "Ġwrit", - "1992": "ĠPresident", - "1993": "Ġvot", - "1994": "Ġkey", - "1995": "Ġmom", - "1996": "put", - "1997": "Ġanything", - "1998": "Ġexperience", - "1999": "attle", - "2000": "Ġmind", - "2001": "aff", - "2002": "omm", - "2003": "Ġfuture", - "2004": "ged", - "2005": "Ġcut", - "2006": "Ġtot", - "2007": "itch", - "2008": "Ġvideo", - "2009": "Ġinvestig", - "2010": "Ġnet", - "2011": "ĠMy", - "2012": "rict", - "2013": "ien", - "2014": ".)", - "2015": "Ġimpro", - "2016": "though", - "2017": "wards", - "2018": "Ġconnect", - "2019": "ĠMed", - "2020": "selves", - "2021": "ensive", - "2022": "mb", - "2023": "ober", - "2024": "ators", - "2025": "An", - "2026": "Ġ50", - "2027": "Ġredu", - "2028": "resent", - "2029": "Ġabove", - "2030": "Ġfre", - "2031": "ĠEurope", - "2032": "sw", - "2033": "Ġamount", - "2034": "ĠApp", - "2035": "Ġeither", - "2036": "Ġmilit", - "2037": "Ġanal", - "2038": "Ġfail", - "2039": "ĠEn", - "2040": "ales", - "2041": "Ġspecial", - "2042": "Ġblack", - "2043": "IT", - "2044": "cher", - "2045": "Ġlooking", - "2046": "Ġfire", - "2047": "yn", - "2048": "Ġalmost", - "2049": "oon", - "2050": "Ġstudy", - "2051": "Ġmiss", - "2052": "ches", - "2053": "rown", - "2054": "Ġtre", - "2055": "Ġcommunity", - "2056": "Ġmedia", - "2057": "Ġfood", - "2058": "Ġcomes", - "2059": "ĠUniversity", - "2060": "Ġsingle", - "2061": "What", - "2062": "uly", - "2063": "Ġhalf", - "2064": "ague", - "2065": "hod", - "2066": "ĠRepublic", - "2067": "Ġstarted", - "2068": "Ġquick", - "2069": "oto", - "2070": "book", - "2071": "Ġissue", - "2072": "itor", - "2073": "Ġelse", - "2074": "Ġconsider", - "2076": "rodu", - "2077": "Ġtaken", - "2080": "ĠWith", - "2081": "Ġtrue", - "2082": "Ġwa", - "2083": "Ġtrad", - "2084": "Ġago", - "2085": "Ġmess", - "2086": "ief", - "2087": "Ġadded", - "2088": "oke", - "2089": "Ġbad", - "2090": "Ġfav", - "2092": "Ġsimilar", - "2093": "ask", - "2094": "ĠDon", - "2095": "Ġcharacter", - "2096": "orts", - "2097": "ĠHouse", - "2098": "Ġreported", - "2099": "Ġtype", - "2100": "val", - "2101": "iod", - "2102": "ĠHowever", - "2103": "Ġtarg", - "2104": "Ġentire", - "2105": "pping", - "2106": "Ġhistory", - "2107": "Ġlive", - "2108": "ffic", - "2109": "........", - "2110": "ederal", - "2111": "Ġtrying", - "2112": "Ġdiscuss", - "2113": "ĠHar", - "2114": "aces", - "2115": "lished", - "2116": "Ġself", - "2117": "osp", - "2118": "rest", - "2119": "Ġroom", - "2120": "elt", - "2121": "Ġfall", - "2122": "olution", - "2123": "Ġet", - "2124": "Ġx", - "2125": "Ġisn", - "2126": "Ġidea", - "2127": "bo", - "2128": "Ġsound", - "2129": "ĠDep", - "2130": "Ġsomeone", - "2131": "cially", - "2132": "ully", - "2133": "Ġfoc", - "2134": "Ġobject", - "2135": "ift", - "2136": "aper", - "2137": "Ġplayer", - "2138": "Ġrather", - "2139": "Ġservice", - "2140": "ashing", - "2141": "ĠDo", - "2142": "ĠPart", - "2143": "rug", - "2144": "mon", - "2145": "ply", - "2146": "Ġmor", - "2147": "Ġnothing", - "2148": "Ġprovide", - "2149": "IC", - "2150": "ung", - "2151": "Ġparty", - "2152": "Ġexist", - "2153": "Ġmag", - "2155": "Ġrul", - "2156": "Ġhouse", - "2157": "Ġbehind", - "2158": "Ġhowever", - "2159": "ĠWorld", - "2160": "Ġsum", - "2161": "Ġapplic", - "2162": "Ġ;", - "2163": "Ġfunction", - "2164": "gr", - "2165": "ĠPol", - "2166": "Ġfront", - "2168": "Ġseries", - "2169": "Ġtem", - "2170": "Ġtyp", - "2171": "ills", - "2172": "Ġopt", - "2173": "Ġpoints", - "2174": "Ġbelow", - "2175": "itted", - "2176": "Ġspecific", - "2177": "Ġ2017", - "2178": "umb", - "2179": "Ġra", - "2180": "Ġprevious", - "2181": "Ġpret", - "2182": "reme", - "2183": "Ġcustom", - "2184": "Ġcourt", - "2185": "ĠMe", - "2186": "Ġrepl", - "2187": "Ġwhole", - "2188": "go", - "2189": "cer", - "2190": "Ġtreat", - "2191": "ĠAct", - "2192": "Ġprobably", - "2193": "Ġlearn", - "2194": "ender", - "2195": "ĠAss", - "2196": "Ġversion", - "2197": "now", - "2198": "Ġcheck", - "2199": "ĠCal", - "2200": "RE", - "2201": "minist", - "2202": "On", - "2203": "ources", - "2204": "Ġbenef", - "2205": "Ġdoc", - "2206": "Ġdeter", - "2207": "Ġenc", - "2208": "Ġsuper", - "2209": "Ġaddress", - "2210": "Ġvict", - "2211": "Ġ2013", - "2212": "Ġmeas", - "2213": "tr", - "2214": "Ġfield", - "2215": "When", - "2216": "Ġsignific", - "2217": "uge", - "2218": "Ġfeat", - "2219": "Ġcommon", - "2220": "load", - "2221": "Ġbegin", - "2222": "Ġbring", - "2223": "Ġaction", - "2224": "erman", - "2225": "Ġdescrib", - "2226": "Ġindust", - "2227": "Ġwanted", - "2228": "ried", - "2229": "ming", - "2230": "Ġattempt", - "2232": "fer", - "2233": "Ġdue", - "2234": "ression", - "2235": "##", - "2236": "Ġshall", - "2237": "Ġsix", - "2238": "oo", - "2239": "Ġstep", - "2240": "Ġpub", - "2241": "Ġhimself", - "2242": "Ġ23", - "2243": "Ġcop", - "2244": "Ġdest", - "2245": "Ġstop", - "2246": "AC", - "2247": "ibility", - "2248": "Ġlab", - "2249": "icult", - "2250": "Ġhours", - "2251": "Ġcreate", - "2252": "Ġfurther", - "2253": "ĠAmerica", - "2254": "ĠCity", - "2255": "Ġdou", - "2256": "head", - "2257": "ST", - "2258": "ĠNorth", - "2259": "cing", - "2260": "Ġnational", - "2261": "ule", - "2262": "ĠInst", - "2263": "Ġtaking", - "2264": "ĠQu", - "2265": "irt", - "2266": "Ġred", - "2267": "Ġresearch", - "2268": "viron", - "2269": "ĠGe", - "2270": "Ġbreak", - "2271": "ana", - "2272": "Ġspace", - "2273": "aterial", - "2274": "Ġrecent", - "2275": "ĠAb", - "2276": "Ġgeneral", - "2277": "Ġhit", - "2278": "Ġperiod", - "2279": "Ġeverything", - "2280": "ively", - "2281": "Ġphys", - "2282": "Ġsaying", - "2283": "anks", - "2284": "Ġcou", - "2285": "Ġcult", - "2286": "aced", - "2287": "eal", - "2288": "uation", - "2289": "Ġcoun", - "2290": "lu", - "2291": "Ġinclude", - "2292": "Ġposition", - "2293": "ĠAfter", - "2294": "ĠCanad", - "2295": "ĠEm", - "2296": "Ġimm", - "2297": "ĠRed", - "2298": "Ġpick", - "2299": "Ġcompl", - "2300": "Ġmatter", - "2301": "reg", - "2302": "ext", - "2303": "angu", - "2304": "isc", - "2305": "ole", - "2306": "aut", - "2307": "Ġcompet", - "2308": "eed", - "2309": "fect", - "2310": "Ġ21", - "2311": "ĠSen", - "2312": "ĠThese", - "2313": "asing", - "2314": "Ġcannot", - "2315": "Ġinit", - "2316": "Ġrelations", - "2317": "ached", - "2318": "Ġbar", - "2319": "Ġ40", - "2320": "ĠTH", - "2321": "Ġ2012", - "2322": "Ġvol", - "2323": "Ġground", - "2324": "Ġsecurity", - "2325": "Ġupd", - "2326": "ilt", - "2328": "Ġconcern", - "2329": "ĠJust", - "2330": "Ġwhite", - "2331": "Ġseems", - "2332": "ĠHer", - "2333": "pecially", - "2334": "ients", - "2335": "Ġannoun", - "2336": "Ġfig", - "2337": "ights", - "2338": "Ġstri", - "2339": "like", - "2340": "ids", - "2341": "Ġsus", - "2342": "Ġwatch", - "2343": "Ġâ", - "2344": "Ġwind", - "2345": "ĠCont", - "2346": "Ġitself", - "2347": "Ġmass", - "2348": "Al", - "2349": "yle", - "2350": "ique", - "2351": "ĠNational", - "2352": "Ġabs", - "2353": "Ġpack", - "2354": "Ġoutside", - "2355": "Ġanim", - "2356": "Ġpain", - "2357": "eter", - "2358": "Ġmanag", - "2359": "duct", - "2360": "ogn", - "2361": "Ġ]", - "2362": "ĠSept", - "2363": "sec", - "2364": "off", - "2365": "ĠJan", - "2366": "Ġfoot", - "2367": "ades", - "2368": "Ġthird", - "2369": "Ġmot", - "2370": "Ġevidence", - "2371": "inton", - "2372": "Ġthreat", - "2373": "apt", - "2374": "ples", - "2375": "cle", - "2376": "Ġlo", - "2377": "Ġdecl", - "2378": "Ġitem", - "2379": "medi", - "2380": "Ġrepresent", - "2381": "omb", - "2382": "amer", - "2383": "Ġsignificant", - "2384": "ograph", - "2385": "su", - "2386": "Ġcal", - "2387": "ires", - "2388": "0000", - "2389": "ID", - "2390": "AM", - "2391": "Ġsimply", - "2392": "Ġlonger", - "2393": "Ġfile", - "2394": "OT", - "2395": "che", - "2396": "So", - "2397": "ateg", - "2398": "org", - "2399": "ĠHis", - "2400": "Ġener", - "2401": "Ġdom", - "2402": "Ġupon", - "2403": "ili", - "2404": "\":\"", - "2405": "Ġthemselves", - "2406": "Ġcoming", - "2407": "Ġquite", - "2408": "Ġdifficult", - "2409": "ĠBar", - "2410": "ilities", - "2411": "rel", - "2412": "ends", - "2413": "cial", - "2415": "Ġwoman", - "2416": "rap", - "2417": "yr", - "2418": "Ġnecess", - "2419": "ips", - "2420": "Ġtext", - "2421": "Ġrequire", - "2422": "Ġmilitary", - "2423": "Ġreview", - "2424": "Ġrespons", - "2426": "Ġsubject", - "2427": "Ġinstead", - "2428": "Ġissues", - "2429": "Ġgen", - "2430": "\",\"", - "2431": "Ġminutes", - "2432": "Ġweap", - "2433": "ray", - "2434": "amed", - "2435": "time", - "2436": "bl", - "2437": "How", - "2438": "Ġcode", - "2439": "ĠSm", - "2440": "Ġhigher", - "2441": "ĠSte", - "2442": "ris", - "2443": "Ġpage", - "2444": "Ġstudents", - "2445": "ĠIntern", - "2446": "Ġmethod", - "2447": "ĠAug", - "2448": "ĠPer", - "2449": "ĠAg", - "2450": "Ġpolicy", - "2451": "ĠSw", - "2452": "Ġexec", - "2453": "Ġaccept", - "2454": "ume", - "2455": "ribut", - "2456": "Ġwords", - "2457": "Ġfinal", - "2458": "Ġchanges", - "2459": "ĠDemocr", - "2460": "Ġfriends", - "2461": "Ġrespect", - "2462": "Ġep", - "2463": "Ġcompan", - "2464": "ivil", - "2465": "Ġdamage", - "2466": "****", - "2467": "ogle", - "2468": "vironment", - "2469": "Ġneg", - "2470": "ental", - "2471": "Ġap", - "2472": "Ġtotal", - "2473": "ival", - "2474": "!\"", - "2475": "lim", - "2476": "Ġneeds", - "2477": "Ġagre", - "2478": "Ġdevelopment", - "2479": "Ġage", - "2480": "iple", - "2482": "Ġresults", - "2483": "ĠAf", - "2484": "Sh", - "2485": "Ġgun", - "2486": "ĠObama", - "2487": "roll", - "2488": "Ġ@", - "2489": "Ġrights", - "2490": "ĠBrit", - "2491": "Ġrunning", - "2492": "Ġwasn", - "2493": "Ġport", - "2494": "Ġrate", - "2495": "Ġpretty", - "2496": "Ġtarget", - "2497": "Ġsaw", - "2498": "Ġcirc", - "2499": "Ġworks", - "2500": "icro", - "2501": "alt", - "2502": "over", - "2503": "www", - "2504": "That", - "2505": "lier", - "2506": "Ġeveryone", - "2507": "ude", - "2508": "Ġpie", - "2509": "iddle", - "2510": "rael", - "2511": "Ġrad", - "2512": "Ġblock", - "2513": "Ġwalk", - "2514": "To", - "2515": "ãģ", - "2516": "nes", - "2517": "ĠAust", - "2518": "aul", - "2519": "rote", - "2520": "ĠSouth", - "2521": "ession", - "2522": "oph", - "2523": "Ġshows", - "2524": "Ġsite", - "2525": "Ġjo", - "2526": "Ġrisk", - "2527": "clus", - "2528": "lt", - "2529": "Ġinj", - "2530": "iding", - "2531": "ĠSpe", - "2532": "Ġchall", - "2533": "irm", - "2534": "Ġ22", - "2535": "itting", - "2536": "str", - "2537": "Ġhy", - "2538": "LE", - "2539": "key", - "2540": "Ġbegan", - "2541": "atur", - "2542": "ashington", - "2543": "lam", - "2544": "ĠDav", - "2545": "bit", - "2546": "Ġsize", - "2547": "ĠPar", - "2549": "ournal", - "2550": "face", - "2551": "Ġdecision", - "2552": "Ġlarg", - "2553": "Ġjud", - "2554": "rect", - "2555": "Ġcontinue", - "2556": "ĠOct", - "2557": "overed", - "2558": "ĠInt", - "2559": "========", - "2560": "Ġparent", - "2561": "ĠWill", - "2562": "Ġeasy", - "2563": "Ġdrug", - "2564": "anger", - "2565": "Ġsense", - "2566": "Ġdi", - "2567": "iday", - "2568": "Ġenergy", - "2569": "istic", - "2570": "Ġassoci", - "2571": "arter", - "2572": "obal", - "2573": "eks", - "2574": "ĠEl", - "2575": "urch", - "2576": "Ġgirl", - "2577": "oe", - "2578": "itle", - "2579": "Ġ28", - "2580": "ĠChe", - "2581": "Ġrequest", - "2582": "Ġsoon", - "2583": "Ġhost", - "2584": "ky", - "2585": "Ġstates", - "2586": "omes", - "2587": "Ġmaterial", - "2588": "lex", - "2589": "Ġmoment", - "2590": "Ġansw", - "2591": "onse", - "2592": "Ġespecially", - "2593": "Ġnorm", - "2594": "Ġservices", - "2595": "pite", - "2596": "ran", - "2597": "Ġrole", - "2599": "):", - "2600": "Ġcred", - "2601": "Cl", - "2602": "________", - "2603": "Ġmat", - "2604": "Ġlog", - "2605": "ĠClinton", - "2606": "OU", - "2607": "Ġoffice", - "2608": "Ġ26", - "2609": "Ġcharg", - "2610": "Ġtrack", - "2611": "ma", - "2612": "Ġheart", - "2613": "Ġball", - "2614": "Ġpersonal", - "2615": "Ġbuilding", - "2616": "na", - "2617": "set", - "2618": "body", - "2619": "ĠBlack", - "2620": "Ġincrease", - "2621": "itten", - "2622": "Ġneeded", - "2625": "=\"", - "2626": "Ġlost", - "2627": "Ġbecame", - "2628": "Ġgroups", - "2629": "ĠMus", - "2630": "Ġwrote", - "2631": "ĠPe", - "2632": "Ġprop", - "2633": "joy", - "2634": "é", - "2635": "ĠWhite", - "2636": "Ġdead", - "2637": ".'", - "2638": "Ġhttp", - "2639": "Ġwebs", - "2640": "OS", - "2641": "Ġinside", - "2642": "Ġwrong", - "2643": "Ġstatement", - "2644": "Ġ...", - "2645": "yl", - "2646": "Ġfilm", - "2647": "Ġmusic", - "2648": "Ġshare", - "2649": "ification", - "2650": "Ġrelease", - "2651": "Ġforward", - "2652": "Ġstay", - "2653": "Ġcomput", - "2654": "itte", - "2655": "ser", - "2656": "Ġoriginal", - "2657": "Ġcard", - "2658": "Ġcand", - "2659": "Ġdiv", - "2660": "atural", - "2661": "Ġfavor", - "2662": "OM", - "2663": "Ġcases", - "2664": "uses", - "2665": "Ġsection", - "2666": "Ġleave", - "2667": "ging", - "2668": "oved", - "2669": "ĠWashington", - "2671": "ĠGl", - "2672": "Ġrequired", - "2673": "action", - "2674": "apan", - "2675": "oor", - "2676": "iter", - "2677": "ĠKing", - "2678": "Ġcountries", - "2679": "ĠGerman", - "2680": "lling", - "2681": "Ġ27", - "2683": "Ġquestions", - "2684": "Ġprim", - "2685": "Ġcell", - "2686": "Ġshoot", - "2687": "Ġanyone", - "2688": "ĠWest", - "2689": "Ġaffect", - "2690": "epend", - "2691": "Ġonline", - "2692": "ĠIsrael", - "2693": "ĠSeptember", - "2694": "Ġability", - "2695": "Ġcontent", - "2696": "ises", - "2697": "Ġreve", - "2698": "Ġlaun", - "2699": "Ġindic", - "2700": "Ġforce", - "2701": "cast", - "2702": "Ġsold", - "2703": "aving", - "2704": "fl", - "2705": "Ġsoft", - "2706": "Ġcompanies", - "2707": "ceed", - "2708": "Ġarticle", - "2709": "Ġaud", - "2710": "Ġrev", - "2711": "Ġeduc", - "2712": "Ġplaying", - "2713": "05", - "2714": "Ġheld", - "2715": "ctor", - "2716": "Ġreleased", - "2717": "Ġfederal", - "2719": "Ġadminist", - "2720": "Ġinterview", - "2721": "Ġinstall", - "2722": "Ġreceived", - "2723": "Ġsource", - "2724": "uk", - "2725": "Ph", - "2726": "Ġserious", - "2727": "Ġcreated", - "2728": "Ġcause", - "2729": "Ġimmedi", - "2730": "Ġdefin", - "2731": "uel", - "2732": "ĠDepartment", - "2733": "ctions", - "2734": "ĠCour", - "2735": "ĠNow", - "2736": "ze", - "2737": "ites", - "2738": "itution", - "2739": "Ġlate", - "2740": "Ġspeak", - "2741": "ners", - "2742": "Ġlegal", - "2743": "ari", - "2744": "ĠCor", - "2745": "Ġweeks", - "2746": "Ġmodel", - "2747": "Ġpred", - "2748": "Ġexact", - "2749": "BC", - "2750": "ĠBy", - "2751": "ING", - "2752": "osing", - "2753": "Ġtakes", - "2754": "Ġregard", - "2755": "Ġopportun", - "2756": "Ġprice", - "2757": "Ġ198", - "2758": "ĠApr", - "2759": "fully", - "2760": "Ġord", - "2761": "Ġproblems", - "2762": "ruction", - "2763": "ham", - "2764": "ĠCount", - "2765": "lege", - "2766": "Ġleaders", - "2767": "ET", - "2768": "lev", - "2769": "Ġdeep", - "2770": "ological", - "2771": "ese", - "2772": "haps", - "2773": "ĠSome", - "2774": "Ġpers", - "2775": "Ġcontract", - "2776": "Ġrelationship", - "2777": "sp", - "2778": "oud", - "2779": "Ġbase", - "2781": "mit", - "2782": "Ad", - "2783": "ancial", - "2784": "Ġconsum", - "2785": "Ġpotential", - "2786": "Ġlangu", - "2787": "rem", - "2788": "eth", - "2789": "Ġrelig", - "2790": "ressed", - "2792": "Ġlink", - "2793": "Ġlower", - "2794": "ayer", - "2795": "ĠJune", - "2796": "Ġfem", - "2797": "unt", - "2798": "erc", - "2799": "urd", - "2800": "Ġcontact", - "2801": "Ġill", - "2802": "Ġmother", - "2803": "Ġestab", - "2804": "htt", - "2805": "ĠMarch", - "2806": "ĠBro", - "2807": "ĠChina", - "2808": "Ġ29", - "2809": "Ġsqu", - "2810": "Ġprovided", - "2811": "Ġaverage", - "2812": "asons", - "2813": "Ġ2011", - "2814": "Ġexam", - "2815": "lin", - "2817": "ned", - "2818": "Ġperfect", - "2819": "Ġtou", - "2820": "alse", - "2821": "ux", - "2822": "Ġbuy", - "2823": "Ġshot", - "2824": "Ġcollect", - "2825": "Ġphot", - "2826": "Ġplayed", - "2827": "Ġsurpr", - "2828": "Ġofficials", - "2829": "Ġsimple", - "2830": "avy", - "2831": "Ġindustry", - "2832": "Ġhands", - "2833": "ground", - "2834": "Ġpull", - "2835": "Ġround", - "2836": "Ġuser", - "2837": "Ġrange", - "2838": "uary", - "2839": "Ġprivate", - "2840": "ops", - "2841": "ees", - "2842": "Ġways", - "2843": "ĠMich", - "2844": "Ġveh", - "2845": "Ġexcept", - "2846": "Ġterms", - "2847": "imum", - "2848": "pper", - "2849": "ION", - "2850": "ores", - "2851": "ĠDragon", - "2852": "oul", - "2853": "Ġden", - "2854": "Ġperformance", - "2855": "Ġbill", - "2856": "cil", - "2858": "Ġenvironment", - "2859": "Ġexc", - "2860": "add", - "2861": "Ġworth", - "2862": "Ġpict", - "2863": "Ġchance", - "2864": "Ġ2018", - "2865": "bor", - "2866": "Ġspeed", - "2867": "iction", - "2868": "Ġalleg", - "2869": "ĠJapan", - "2870": "atory", - "2871": "reet", - "2872": "Ġmatch", - "2873": "ĠII", - "2874": "Ġstru", - "2875": "order", - "2876": "Ġste", - "2877": "Ġliving", - "2878": "Ġstruct", - "2879": "ino", - "2880": "Ġsepar", - "2881": "hern", - "2882": "Ġresponse", - "2883": "Ġenjoy", - "2884": "Ġvia", - "2885": "AD", - "2886": "uments", - "2887": "acebook", - "2888": "Ġmember", - "2889": "ibr", - "2890": "izing", - "2891": "Ġtool", - "2892": "ĠMon", - "2893": "ĠWhile", - "2894": "hood", - "2895": "ĠAng", - "2896": "ĠDef", - "2897": "Ġoffer", - "2898": "Tr", - "2899": "aur", - "2900": "Ġturned", - "2901": "ĠJuly", - "2902": "down", - "2903": "anced", - "2904": "Ġrecently", - "2905": "ĠEar", - "2906": "Ġce", - "2907": "ĠStar", - "2908": "ĠCong", - "2909": "rought", - "2910": "Ġblood", - "2911": "Ġhope", - "2912": "Ġcomment", - "2913": "aint", - "2914": "Ġarri", - "2915": "iles", - "2916": "Ġparticip", - "2917": "ought", - "2918": "ription", - "2919": "08", - "2921": "Ġgave", - "2922": "Ġselect", - "2923": "Ġkilled", - "2924": "sych", - "2925": "Ġgoes", - "2926": "ij", - "2927": "Ġcoll", - "2928": "Ġimpact", - "2929": "atives", - "2930": "ĠSer", - "2931": "09", - "2932": "ĠAugust", - "2933": "Ġboy", - "2934": "de", - "2935": "ĠDes", - "2936": "Ġfelt", - "2937": "US", - "2938": "Ġexpected", - "2939": "Ġimage", - "2940": "ĠMark", - "2941": "ccording", - "2942": "oice", - "2943": "EC", - "2944": "ĠMag", - "2945": "ened", - "2946": "hold", - "2947": "ĠPost", - "2948": "Ġprevent", - "2949": "No", - "2950": "Ġinvolved", - "2951": "Ġeyes", - "2952": "Ġquickly", - "2953": "At", - "2954": "unk", - "2955": "Ġbehav", - "2956": "Ġur", - "2957": "Ġled", - "2958": "come", - "2959": "ey", - "2960": "Ġcandid", - "2961": "Ġearlier", - "2962": "Ġfocus", - "2963": "ety", - "2964": "Pro", - "2965": "ledge", - "2966": "ixed", - "2967": "illed", - "2968": "Ġpopular", - "2969": "AP", - "2970": "Ġsett", - "2971": "light", - "2972": "Ġvarious", - "2973": "inks", - "2974": "Ġlevels", - "2975": "Ġroad", - "2976": "ellig", - "2977": "ables", - "2978": "hel", - "2979": "ittee", - "2980": "ĠGener", - "2981": "ype", - "2982": "Ġheard", - "2983": "icles", - "2984": "Ġmis", - "2985": "Ġusers", - "2986": "ĠSan", - "2987": "Ġimprove", - "2988": "Ġfather", - "2989": "Ġsearch", - "2990": "They", - "2991": "vil", - "2992": "Ġprofess", - "2993": "Ġknew", - "2994": "Ġloss", - "2995": "Ġevents", - "2997": "Ġbillion", - "2998": "07", - "2999": "02", - "3000": "ĠNews", - "3001": "ĠAM", - "3002": "Ġcover", - "3003": "where", - "3004": "ension", - "3005": "Ġbott", - "3006": "Ġareas", - "3007": "ences", - "3008": "ope", - "3009": "ĠTwitter", - "3010": "ael", - "3011": "Ġgets", - "3012": "ĠGoogle", - "3013": "Ġsn", - "3014": "iant", - "3015": "Ġvote", - "3016": "Ġnearly", - "3017": "Ġincluded", - "3018": "Ġrecogn", - "3019": "zz", - "3020": "mm", - "3021": "aled", - "3022": "Ġhappened", - "3023": "04", - "3024": "Ġhot", - "3025": "Ġwhose", - "3026": "Ġcivil", - "3027": "Ġsuff", - "3028": "oes", - "3029": "itiz", - "3030": "ĠSyri", - "3031": "Ġrespond", - "3032": "Ġhon", - "3033": "Ġfeatures", - "3034": "Ġeconomic", - "3035": "ĠApril", - "3036": "rim", - "3037": "Ġtechnology", - "3038": "Ġoption", - "3039": "aging", - "3040": "Ġpurch", - "3041": "Re", - "3042": "Ġlat", - "3043": "chie", - "3044": "isl", - "3045": "Ġrecomm", - "3046": "uf", - "3047": "Ġtraining", - "3048": "Ġeffects", - "3049": "Ġfast", - "3050": "Ġ2010", - "3051": "Ġoccur", - "3052": "Ġwebsite", - "3053": "Ġemail", - "3054": "Ġsens", - "3055": "ech", - "3056": "Ġoil", - "3057": "Ġinflu", - "3058": "Ġcurrently", - "3059": "ĠSch", - "3060": "ĠAdd", - "3061": "Ġgoal", - "3062": "Ġscient", - "3063": "Ġconv", - "3065": "emy", - "3066": "Ġdecided", - "3067": "Ġtravel", - "3068": "Ġmention", - "3069": "LL", - "3070": "03", - "3071": "Ġelection", - "3072": "Ġphone", - "3073": "Ġlooks", - "3074": "Ġsituation", - "3075": "Ġcy", - "3076": "Ġhor", - "3077": "bed", - "3078": "ĠCourt", - "3079": "aily", - "3080": "aves", - "3081": "Ġquality", - "3082": "ĠComp", - "3083": "wise", - "3084": "Ġtable", - "3085": "Ġstaff", - "3086": "ĠWind", - "3087": "ett", - "3088": "Ġtried", - "3089": "idered", - "3090": "Ġaddition", - "3091": "Ġbox", - "3092": "Ġlack", - "3093": "arily", - "3094": "Ġwide", - "3095": "Ġmid", - "3096": "Ġboard", - "3097": "ysis", - "3098": "Ġanti", - "3099": "ha", - "3100": "Ġdig", - "3101": "ening", - "3102": "Ġdro", - "3103": "Con", - "3105": "Ġslow", - "3106": "based", - "3107": "sequ", - "3108": "Ġpath", - "3109": "Ex", - "3110": "aker", - "3111": "Ġworked", - "3112": "Ġpen", - "3113": "Ġengine", - "3114": "Ġlooked", - "3115": "ĠSuper", - "3116": "ĠServ", - "3117": "Ġvictim", - "3118": "Un", - "3119": "Ġproperty", - "3120": "Ġintrodu", - "3121": "Ġexecut", - "3122": "ĠPM", - "3123": "Le", - "3124": "Ġcolor", - "3125": "ĠMore", - "3126": "Ġ60", - "3127": "Ġnetwork", - "3128": "Ġdate", - "3129": "cul", - "3130": "idge", - "3131": "Ġextra", - "3133": "Ġsle", - "3135": "Ġwond", - "3136": "Ġreports", - "3137": "just", - "3138": "ĠAustral", - "3139": "Ġcapital", - "3140": "Ġens", - "3141": "Ġcommand", - "3142": "Ġallowed", - "3143": "Ġprep", - "3144": "Ġcapt", - "3145": "hib", - "3146": "Ġnumbers", - "3147": "chan", - "3148": "Ġfair", - "3149": "mp", - "3150": "oms", - "3151": "Ġreach", - "3152": "With", - "3153": "tain", - "3154": "Ġbroad", - "3155": "Ġcouple", - "3156": "ecause", - "3157": "lying", - "3158": "ĠFeb", - "3159": "Ġscreen", - "3160": "Ġlives", - "3161": "Ġprior", - "3162": "ĠCongress", - "3163": "Ar", - "3164": "Ġapproach", - "3165": "Ġemer", - "3166": "aries", - "3167": "ĠDis", - "3168": "serv", - "3169": "ĠNe", - "3170": "Ġbuilt", - "3171": "cies", - "3172": "Ġrepe", - "3173": "Ġrules", - "3174": "force", - "3175": "ĠPal", - "3176": "Ġfinancial", - "3177": "Ġconsidered", - "3178": "ĠChar", - "3179": "nces", - "3180": "ĠIS", - "3181": "Ġbrought", - "3182": "Ġbi", - "3183": "iers", - "3184": "ĠSim", - "3185": "OP", - "3186": "Ġproducts", - "3187": "Ġvisit", - "3188": "Ġdocument", - "3189": "Ġconduct", - "3190": "Ġcompletely", - "3191": "ining", - "3192": "ĠCalif", - "3193": "ibly", - "3194": "Ġwritten", - "3195": "ĠTV", - "3196": "ements", - "3197": "Ġdraw", - "3198": "One", - "3199": "Ġpublished", - "3200": "Ġsecret", - "3201": "rain", - "3202": "het", - "3203": "ĠFacebook", - "3204": "onday", - "3205": "ĠUp", - "3206": "Ġsexual", - "3207": "Ġthous", - "3208": "ĠPat", - "3209": "Ġess", - "3210": "Ġstandard", - "3211": "Ġarm", - "3212": "ges", - "3213": "ection", - "3214": "Ġfell", - "3215": "Ġforeign", - "3216": "ani", - "3217": "ĠFriday", - "3218": "Ġregular", - "3219": "inary", - "3220": "Ġincreased", - "3221": "Ġusually", - "3222": "Ġdemon", - "3223": "Ġdark", - "3224": "Ġadditional", - "3225": "rol", - "3226": "ĠOf", - "3227": "Ġproduction", - "3228": "!!", - "3229": "undred", - "3230": "Ġinternational", - "3231": "idents", - "3232": "ĠFree", - "3233": "roup", - "3234": "Ġrace", - "3235": "Ġmach", - "3236": "Ġhuge", - "3237": "All", - "3238": "lear", - "3239": "ovember", - "3240": "Ġtown", - "3241": "Ġattention", - "3242": "ĠOff", - "3243": "yond", - "3244": "ĠThen", - "3245": "field", - "3246": "Ġterror", - "3247": "raz", - "3248": "ĠBo", - "3249": "Ġmeeting", - "3250": "ĠPark", - "3251": "Ġarrest", - "3252": "Ġfear", - "3253": "Ġaw", - "3254": "ĠVal", - "3255": "oring", - "3256": "',", - "3257": "Ġextreme", - "3258": "arr", - "3259": "Ġworkers", - "3260": "After", - "3261": "Ġ31", - "3262": "net", - "3263": "ament", - "3264": "Ġdirectly", - "3265": "Ġpopulation", - "3266": "ube", - "3267": "ĠOctober", - "3268": "ĠIN", - "3269": "ĠJanuary", - "3271": "ĠDavid", - "3272": "Ġcross", - "3273": "cember", - "3274": "ĠFirst", - "3275": "Ġmessage", - "3276": "irit", - "3277": "Ġnation", - "3278": "Ġpoll", - "3279": "isions", - "3280": "Ġanswer", - "3281": "ny", - "3282": "isode", - "3283": "Ġcarry", - "3284": "ĠRussia", - "3285": "Ġhear", - "3286": "ength", - "3287": "roy", - "3288": "Ġnatural", - "3289": "inally", - "3290": "Ġdog", - "3291": "mitted", - "3292": "Ġtrade", - "3293": "Ġsubst", - "3294": "Ġmultiple", - "3295": "ĠAfric", - "3296": "Ġfans", - "3297": "Ġsort", - "3298": "Ġglobal", - "3299": "ication", - "3300": "ĠWed", - "3301": "ara", - "3302": "Ġachie", - "3303": "Ġlanguage", - "3304": "vey", - "3305": "Ġtal", - "3306": "Ġnecessary", - "3307": "Ġdetails", - "3308": "Ġsen", - "3309": "ĠSund", - "3310": "ĠReg", - "3311": "ĠRec", - "3312": "06", - "3313": "Ġsil", - "3314": "ressive", - "3315": "Ġmedical", - "3316": "unch", - "3317": "ornia", - "3318": "Ġund", - "3319": "fort", - "3320": "ocks", - "3321": "ĠMonday", - "3322": "uesday", - "3323": "craft", - "3325": "urt", - "3326": "Ġver", - "3327": "ĠHill", - "3328": "Ġreceive", - "3329": "Ġmorning", - "3330": "estern", - "3331": "Ġbank", - "3332": "Ġsat", - "3333": "irth", - "3334": "ĠHigh", - "3335": "Ġdevice", - "3336": "ĠTHE", - "3337": "ĠCenter", - "3338": "Ġsafe", - "3339": "Ġple", - "3340": "ĠCanada", - "3341": "Ġsystems", - "3342": "Ġassist", - "3343": "Ġsurv", - "3344": "Ġbattle", - "3345": "ĠSoc", - "3346": "vertis", - "3347": "She", - "3348": "Ġpaper", - "3349": "Ġgrowth", - "3350": "Ġcast", - "3351": "Sc", - "3352": "Ġplans", - "3353": "lled", - "3354": "Ġparts", - "3355": "Ġwall", - "3356": "Ġmovement", - "3357": "Ġpractice", - "3358": "imately", - "3359": "Ġdisplay", - "3360": "Ġsometimes", - "3361": "omp", - "3362": "ĠPaul", - "3363": "ĠYes", - "3364": "king", - "3366": "oly", - "3367": "Ġson", - "3368": "Ġavoid", - "3369": "okes", - "3370": "ĠJew", - "3371": "Ġtowards", - "3372": "asc", - "3373": "Ġ//", - "3374": "ĠKore", - "3375": "Ġtalking", - "3376": "Ġcorrect", - "3377": "Ġspent", - "3378": "icks", - "3379": "iable", - "3380": "eared", - "3381": "Ġterm", - "3382": "Ġwants", - "3383": "oming", - "3384": "Ġut", - "3385": "Ġdoub", - "3386": "Ġforces", - "3387": "Ġplease", - "3389": "ĠNovember", - "3390": "atform", - "3391": "ondon", - "3392": "Ġones", - "3393": "Ġimmediately", - "3394": "ĠRussian", - "3395": "ĠMet", - "3396": "Ġdeg", - "3397": "Ġparents", - "3398": "CH", - "3399": "ĠAmericans", - "3400": "aly", - "3401": "ĠMod", - "3402": "Ġshown", - "3403": "Ġconditions", - "3404": "Ġstuff", - "3405": "Ġreb", - "3406": "ĠYour", - "3407": "Ġincludes", - "3408": "nown", - "3409": "ĠSam", - "3410": "Ġexperien", - "3411": "mission", - "3412": "ĠEven", - "3413": "aught", - "3414": "Ġannounced", - "3415": "ĠRepublican", - "3416": "Ġdetermin", - "3417": "Ġdescribed", - "3418": "ĠCounty", - "3419": "()", - "3420": "Ġdoor", - "3421": "Ġchanged", - "3422": "Ġneigh", - "3423": "ĠHere", - "3424": "Ġclean", - "3425": "Ġpan", - "3426": "ĠDecember", - "3427": "ĠEuropean", - "3428": "iring", - "3429": "apter", - "3430": "Ġclub", - "3431": "ĠTuesday", - "3432": "Ġpaid", - "3433": "ĠNet", - "3434": "Ġattacks", - "3435": "Ġcharacters", - "3436": "Ġalone", - "3437": "Ġdirector", - "3438": "dom", - "3439": "Ġ35", - "3440": "Ġload", - "3441": "Ġrout", - "3442": "ĠCalifornia", - "3443": "Ġfinally", - "3444": "Ġrac", - "3445": "Ġcontr", - "3446": "Ġexactly", - "3447": "resh", - "3448": "pri", - "3449": "ĠIslam", - "3450": "Ġnature", - "3451": "Ġcareer", - "3452": "Ġlatest", - "3453": "Ġconvers", - "3454": "ĠSl", - "3455": "pose", - "3456": "cient", - "3457": "ĠInc", - "3458": "ivity", - "3460": "ĠAtt", - "3461": "ĠMor", - "3462": "nesday", - "3463": "Ġweight", - "3464": "ken", - "3465": "Ġnote", - "3466": "Ġteams", - "3467": "Ġ\\", - "3468": "airs", - "3469": "ĠGreen", - "3470": "Ġhundred", - "3471": "onent", - "3472": "Ġstreng", - "3473": "Ġconsist", - "3474": "icated", - "3475": "Ġregul", - "3476": "Ġlic", - "3477": "astic", - "3478": "Ġten", - "3479": "ursday", - "3480": "elligence", - "3481": "ously", - "3482": "ĠUK", - "3483": "BI", - "3484": "Ġcosts", - "3485": "Ġindepend", - "3486": "ĠAP", - "3487": "Ġnormal", - "3488": "Ġhom", - "3489": "Ġobvious", - "3490": "Ġswe", - "3491": "Ġstar", - "3492": "Ġready", - "3493": "acher", - "3494": "Ġimplement", - "3495": "gest", - "3496": "Ġsong", - "3497": "ĠGet", - "3498": "ĠLab", - "3499": "Ġinteresting", - "3500": "using", - "3501": "Ġgiving", - "3502": "ĠSunday", - "3503": "Ġetc", - "3504": "Ġmiddle", - "3505": "Ġremember", - "3506": "right", - "3507": "osition", - "3508": "utions", - "3509": "Ġmax", - "3511": "Ġyourself", - "3512": "Ġdemand", - "3513": "Ġtreatment", - "3514": "Ġdanger", - "3515": "ĠCons", - "3516": "Ġguy", - "3517": "ĠBritish", - "3518": "Ġphysical", - "3519": "Ġrelated", - "3520": "Ġremain", - "3521": "Ġcouldn", - "3522": "Ġrefer", - "3523": "Ġcitiz", - "3524": "box", - "3525": "ENT", - "3526": "board", - "3527": "Ġinn", - "3528": "IG", - "3529": "ero", - "3530": "ĠStreet", - "3531": "ospital", - "3532": "rench", - "3533": "chers", - "3534": "Ġstra", - "3535": "OL", - "3536": "ager", - "3537": "ĠAN", - "3538": "Ġeasily", - "3539": "IA", - "3540": "enge", - "3541": "iny", - "3542": "Ġclos", - "3543": "ocked", - "3544": "Ġuses", - "3545": "ĠCoun", - "3546": "Im", - "3547": "uild", - "3548": "??", - "3549": "more", - "3550": "Ġang", - "3551": "Ġwrite", - "3552": "olute", - "3554": "Ġleader", - "3555": "Ġreading", - "3556": "", - "3785": "Ġfigure", - "3786": "Ġdisapp", - "3787": "enty", - "3788": "Ġsoftware", - "3789": "Ġult", - "3790": "Ġofficers", - "3791": "New", - "3792": "Is", - "3793": "Ġremains", - "3794": "ĠIndia", - "3795": "Ġpsych", - "3796": "rief", - "3797": "Ġcat", - "3798": "esc", - "3799": "Ġobserv", - "3800": "Ġstage", - "3801": "ĠDark", - "3802": "Ġenter", - "3803": "change", - "3804": "Ġpassed", - "3805": "Ġdespite", - "3806": "ĠOut", - "3807": "Ġmovie", - "3808": "rs", - "3809": "Ġvoice", - "3810": "mine", - "3811": "ĠPlay", - "3812": "Ġtoward", - "3813": "ĠTer", - "3814": "Ġregion", - "3815": "Ġvalues", - "3816": "orters", - "3817": "Ġmount", - "3818": "Ġofficer", - "3819": "ĠOther", - "3820": "ban", - "3821": "Ġhous", - "3822": "wood", - "3823": "room", - "3824": "IV", - "3825": "ĠSun", - "3826": "see", - "3827": "ĠOver", - "3828": "rog", - "3830": "Ġlay", - "3831": "ĠTur", - "3832": "awn", - "3833": "Ġpressure", - "3834": "ĠSub", - "3835": "Ġbooks", - "3836": "edom", - "3837": "ĠSand", - "3838": "AA", - "3839": "ago", - "3840": "Ġreasons", - "3841": "ford", - "3842": "Ġactivity", - "3843": "UT", - "3844": "Now", - "3845": "ĠSenate", - "3846": "cell", - "3847": "night", - "3848": "Ġcalls", - "3849": "inter", - "3850": "Ġletter", - "3851": "ĠRob", - "3852": "ĠJe", - "3853": "Ġchoose", - "3854": "ĠLaw", - "3855": "Get", - "3856": "Be", - "3857": "Ġrob", - "3858": "Ġtypes", - "3859": "Ġplatform", - "3860": "Ġquarter", - "3861": "RA", - "3862": "ĠTime", - "3863": "Ġmaybe", - "3864": "ĠCr", - "3866": "pre", - "3867": "Ġmoving", - "3868": "Ġlif", - "3869": "Ġgold", - "3870": "Ġsom", - "3871": "Ġpatients", - "3872": "Ġtruth", - "3873": "ĠKe", - "3874": "urance", - "3875": "antly", - "3876": "mar", - "3877": "Ġcharge", - "3878": "ĠGreat", - "3879": "Ġcele", - "3880": "--------------------------------", - "3881": "Ġrock", - "3882": "roid", - "3883": "ancy", - "3884": "Ġcredit", - "3885": "aud", - "3886": "By", - "3887": "ĠEvery", - "3888": "Ġmoved", - "3889": "inger", - "3890": "ribution", - "3891": "Ġnames", - "3892": "Ġstraight", - "3893": "ĠHealth", - "3894": "ĠWell", - "3895": "Ġfeature", - "3896": "Ġrule", - "3897": "Ġsche", - "3898": "inated", - "3899": "ĠMichael", - "3900": "berg", - "3902": "iled", - "3903": "band", - "3904": "Ġclick", - "3905": "ĠAngel", - "3906": "onents", - "3907": "ÂŃ", - "3908": "ĠIraq", - "3909": "ĠSaturday", - "3910": "Ġaware", - "3911": "part", - "3912": "Ġpattern", - "3913": "OW", - "3914": "ĠLet", - "3915": "Ġgrad", - "3916": "igned", - "3917": "Ġassociated", - "3918": "Ġstyle", - "3919": "no", - "3920": "iation", - "3921": "aith", - "3922": "ilies", - "3923": "Ġstories", - "3924": "uration", - "3925": "Ġindividuals", - "3926": "Ġâ̦", - "3927": "miss", - "3928": "ĠAssoci", - "3929": "ishing", - "3930": "aby", - "3931": "Ġsummer", - "3932": "ĠBen", - "3933": "Ġ32", - "3934": "Ġarch", - "3935": "uty", - "3936": "ĠTexas", - "3937": "hol", - "3938": "Ġfully", - "3939": "Ġmill", - "3940": "Ġfollowed", - "3941": "ĠBill", - "3942": "ĠIndian", - "3943": "ĠSecret", - "3944": "ĠBel", - "3945": "ĠFebruary", - "3946": "Ġjobs", - "3947": "Ġseemed", - "3948": "ĠGovern", - "3949": "ipped", - "3950": "Ġreality", - "3951": "Ġlines", - "3952": "Ġpark", - "3953": "Ġmeasure", - "3954": "ĠOur", - "3955": "IM", - "3956": "Ġbrother", - "3957": "Ġgrowing", - "3958": "Ġban", - "3959": "Ġestim", - "3960": "Ġcry", - "3961": "ĠSchool", - "3962": "Ġmechan", - "3963": "ĠOF", - "3964": "ĠWindows", - "3965": "Ġrates", - "3966": "ĠOh", - "3967": "Ġpositive", - "3968": "Ġculture", - "3969": "istics", - "3970": "ica", - "3971": "Ġhar", - "3972": "ya", - "3973": "itely", - "3974": "ipp", - "3975": "Ġmap", - "3976": "encies", - "3977": "ĠWilliam", - "3978": "II", - "3979": "akers", - "3981": "ĠMart", - "3982": "ĠRem", - "3983": "Ġaltern", - "3984": "itude", - "3985": "Ġcoach", - "3986": "rowd", - "3987": "Don", - "3988": "Ġkids", - "3989": "Ġjournal", - "3990": "Ġcorpor", - "3991": "Ġfalse", - "3992": "Ġweb", - "3993": "Ġsleep", - "3994": "Ġcontain", - "3995": "Ġsto", - "3996": "Ġbed", - "3997": "iverse", - "3998": "ĠRich", - "3999": "ĠChinese", - "4000": "Ġpun", - "4001": "Ġmeant", - "4002": "known", - "4003": "Ġnotice", - "4004": "Ġfavorite", - "4005": "aven", - "4006": "Ġcondition", - "4007": "Ġpurpose", - "4008": "))", - "4009": "Ġorganization", - "4010": "Ġchalleng", - "4011": "Ġmanufact", - "4012": "Ġsusp", - "4013": "ĠAc", - "4014": "Ġcritic", - "4015": "unes", - "4016": "uclear", - "4017": "Ġmer", - "4018": "vention", - "4019": "Ġ80", - "4020": "Ġmist", - "4021": "ĠUs", - "4022": "ĠTor", - "4023": "http", - "4024": "olf", - "4025": "Ġlarger", - "4026": "Ġadvant", - "4027": "Ġresear", - "4028": "Ġactions", - "4029": "ml", - "4030": "Ġkept", - "4031": "Ġaim", - "4032": ",'", - "4033": "col", - "4034": "Ġbenefits", - "4035": "ifying", - "4036": "Ġactual", - "4037": "ĠInternational", - "4038": "Ġvehicle", - "4039": "Ġchief", - "4040": "Ġefforts", - "4041": "ĠLeague", - "4042": "ĠMost", - "4043": "Ġwait", - "4044": "Ġadult", - "4045": "Ġoverall", - "4046": "Ġspeech", - "4047": "Ġhighly", - "4048": "Ġfemale", - "4049": "Ġerror", - "4050": "Ġeffective", - "4052": "Ġencour", - "4053": "well", - "4054": "Ġfailed", - "4055": "Ġconserv", - "4056": "Ġprograms", - "4057": "Ġtrou", - "4058": "Ġahead", - "4060": "vertisement", - "4061": "IP", - "4062": "ĠFound", - "4063": "pir", - "4064": "Ġ%", - "4065": "Ġcrime", - "4066": "ander", - "4067": "Ġlocation", - "4068": "ĠIran", - "4069": "Ġbehavior", - "4070": "azing", - "4071": "Ġrare", - "4072": "Ġemb", - "4073": "Ġcaused", - "4074": "Ġship", - "4075": "Ġactive", - "4076": "Ġcontribut", - "4077": "Ġgreen", - "4078": "Ġacqu", - "4079": "Ġreflect", - "4080": "venue", - "4081": "Ġfirm", - "4082": "Ġbirth", - "4083": "].", - "4084": "Ġclearly", - "4085": "Ġemot", - "4086": "Ġagency", - "4087": "riage", - "4088": "Ġmemory", - "4090": "SA", - "4091": "ĠSee", - "4092": "acing", - "4093": "CC", - "4094": "Ġbiggest", - "4095": "Ġrap", - "4096": "Ġbasic", - "4097": "Ġband", - "4098": "eat", - "4099": "Ġsuspect", - "4100": "ĠMac", - "4101": "Ġ90", - "4102": "mark", - "4103": "istan", - "4104": "Ġspread", - "4105": "ams", - "4106": "ki", - "4107": "asy", - "4108": "rav", - "4109": "ĠRober", - "4110": "Ġdemonstr", - "4111": "rated", - "4112": "Ġabsolute", - "4113": "Ġplaces", - "4114": "Ġimpl", - "4115": "ibrary", - "4116": "Ġcards", - "4117": "Ġdestroy", - "4118": "Ġvirt", - "4119": "vere", - "4120": "Ġappeared", - "4121": "yan", - "4122": "point", - "4123": "Ġbeg", - "4124": "Ġtemper", - "4125": "spe", - "4126": "anted", - "4127": "ears", - "4128": "ĠDirect", - "4129": "Ġlength", - "4130": "Ġblog", - "4131": "amb", - "4132": "Ġinteg", - "4133": "Ġresources", - "4134": "acc", - "4135": "iful", - "4136": "Ġspot", - "4137": "Ġforced", - "4138": "Ġthousands", - "4139": "ĠMinister", - "4140": "Ġqual", - "4141": "ĠFrench", - "4142": "atically", - "4143": "Ġgenerally", - "4144": "Ġdrink", - "4145": "Ġthus", - "4146": "IL", - "4147": "odes", - "4148": "Ġappropri", - "4149": "ĠRead", - "4150": "Ġwhom", - "4151": "Ġeye", - "4152": "Ġcollege", - "4153": "Ġ45", - "4154": "irection", - "4155": "Ġensure", - "4156": "Ġapparent", - "4157": "iders", - "4158": "Ġreligious", - "4159": "Ġminor", - "4160": "olic", - "4161": "Ġtro", - "4162": "ĠWhy", - "4163": "ribute", - "4164": "met", - "4165": "Ġprimary", - "4166": "Ġdeveloped", - "4167": "Ġpeace", - "4168": "Ġskin", - "4169": "ste", - "4170": "ava", - "4171": "Ġblue", - "4172": "Ġfamilies", - "4173": "Ġir", - "4174": "Ġapply", - "4175": "Ġinform", - "4176": "ĠSmith", - "4177": "CT", - "4178": "ii", - "4179": "Ġlimit", - "4180": "Ġresist", - "4181": "................", - "4182": "umn", - "4183": "Ġconflic", - "4184": "Ġtwe", - "4185": "udd", - "4186": "ĠTom", - "4187": "Ġliter", - "4188": "que", - "4189": "bon", - "4190": "Ġhair", - "4191": "Ġeventually", - "4192": "Ġpus", - "4193": "Ġhelped", - "4194": "Ġagg", - "4195": "orney", - "4196": "ĠApple", - "4197": "Ġfit", - "4198": "ĠSur", - "4199": "Ġprem", - "4200": "Ġsales", - "4201": "Ġseconds", - "4202": "Ġstrength", - "4203": "Ġfeeling", - "4204": "¿½", - "4205": "Ġtour", - "4206": "Ġknows", - "4207": "oom", - "4208": "Ġexerc", - "4209": "Ġsomew", - "4210": "�", - "4211": ">>", - "4212": "Ġspokes", - "4213": "Ġideas", - "4214": "Ġregist", - "4215": "soft", - "4216": "ĠDel", - "4217": "ĠPC", - "4218": "Ġpropos", - "4219": "Ġlaunch", - "4220": "Ġbottom", - "4221": "TH", - "4222": "ĠPlease", - "4223": "vest", - "4224": "itz", - "4225": "ĠInter", - "4226": "Ġscript", - "4227": "Ġrat", - "4228": "arning", - "4229": "Ġil", - "4230": "ĠJer", - "4231": "ĠAre", - "4232": "Ġwhatever", - "4233": "oken", - "4234": "cience", - "4235": "Ġmode", - "4236": "Ġagree", - "4237": "Ġsources", - "4238": "Ġinitial", - "4239": "Ġrestrict", - "4240": "Ġwonder", - "4241": "usion", - "4242": "####", - "4243": "ĠSil", - "4244": "ville", - "4245": "Ġburn", - "4246": "tw", - "4247": "asion", - "4248": "Ġ£", - "4249": "Ġnor", - "4250": "uing", - "4251": "Ġreached", - "4252": "Ġsun", - "4253": "Ġcateg", - "4254": "igration", - "4255": "Ġcook", - "4256": "Ġpromot", - "4257": "Ġmale", - "4258": "Ġclimate", - "4259": "Ġfix", - "4260": "Ġalleged", - "4261": "UR", - "4262": "alled", - "4263": "Ġimages", - "4264": "Cont", - "4265": "ota", - "4266": "Ġschools", - "4267": "ios", - "4268": "Ġdrop", - "4269": "Ġstream", - "4270": "ĠMo", - "4271": "Ġpreviously", - "4272": "aling", - "4273": "Ġpet", - "4274": "Ġdouble", - "4275": "Ġ(@", - "4276": "annel", - "4277": "Ġdefault", - "4278": "ties", - "4279": "Ġrank", - "4280": "ĠDec", - "4281": "ĠCouncil", - "4282": "Ġweapon", - "4283": "Ġstock", - "4284": "Ġanaly", - "4285": "ĠStr", - "4286": "Ġpicture", - "4287": "ĠPolice", - "4288": "ference", - "4289": "Ġcentury", - "4290": "Ġcitizens", - "4291": "Ġonto", - "4292": "Ġexpand", - "4293": "Ġhero", - "4294": "ĠSol", - "4295": "Ġwild", - "4296": "Ġupdate", - "4297": "Ġcustomers", - "4298": "ront", - "4299": "def", - "4300": "Ġlik", - "4301": "Ġcriminal", - "4302": "ĠChristian", - "4303": "SP", - "4305": "Ġleaving", - "4306": "Ġotherwise", - "4307": "ĠDist", - "4308": "Ġbasis", - "4311": "icip", - "4312": "ĠBer", - "4313": "Ġrecommend", - "4314": "Ġfloor", - "4315": "Ġcrowd", - "4316": "oles", - "4317": "Ġ70", - "4318": "Ġcentral", - "4319": "ĠEv", - "4320": "Ġdream", - "4321": "Ġdownload", - "4322": "Ġconfir", - "4323": "ĠThom", - "4324": "Ġwindow", - "4325": "Ġhappens", - "4326": "Ġunit", - "4327": "Ġtend", - "4328": "Ġspl", - "4329": "Ġbecomes", - "4330": "Ġfighting", - "4331": "Ġpredict", - "4332": "ĠPress", - "4333": "ĠPower", - "4334": "Ġheavy", - "4335": "aked", - "4336": "Ġfan", - "4337": "orter", - "4338": "ategy", - "4339": "BA", - "4340": "izes", - "4341": "Ġspend", - "4342": "Here", - "4343": "Ġ2007", - "4344": "Ġadop", - "4345": "ĠHam", - "4346": "Ġfootball", - "4347": "ĠPort", - "4348": "oday", - "4350": "ampions", - "4351": "Ġtransfer", - "4352": "ht", - "4353": "Ġ38", - "4354": "term", - "4355": "acity", - "4356": "Ġbur", - "4357": "],", - "4358": "ternal", - "4359": "rig", - "4360": "but", - "4361": "Ġtherefore", - "4362": "ĠBecause", - "4363": "resp", - "4364": "rey", - "4365": "Ġmission", - "4366": "Some", - "4367": "Ġnoted", - "4368": "Ġassum", - "4369": "Ġdisease", - "4370": "Ġedit", - "4371": "Ġprogress", - "4372": "rd", - "4373": "ĠBrown", - "4374": "ocal", - "4375": "Ġadding", - "4376": "Ġraised", - "4377": "ĠAny", - "4378": "Ġtick", - "4379": "Ġseeing", - "4380": "ĠPeople", - "4381": "Ġagreement", - "4382": "Ġserver", - "4383": "Ġwat", - "4384": "Ġdebate", - "4385": "Ġsupposed", - "4386": "iling", - "4387": "Ġlargest", - "4388": "Ġsuccessful", - "4389": "ĠPri", - "4390": "ĠDemocratic", - "4391": "Ġjump", - "4392": "ĠSyria", - "4393": "Ġowners", - "4394": "Ġoffers", - "4395": "Ġshooting", - "4396": "Ġeffic", - "4397": "sey", - "4398": "Ġhaven", - "4399": "verse", - "4400": "tered", - "4401": "ĠLight", - "4402": "imal", - "4403": "ĠBig", - "4404": "Ġdefend", - "4405": "Ġbeat", - "4406": "Ġrecords", - "4407": "%)", - "4408": "Ġscen", - "4409": "Ġemployees", - "4410": "Ġdevices", - "4411": "hem", - "4412": "Ġcommer", - "4413": "ĠMex", - "4414": "Ġbenefit", - "4415": "ĠProf", - "4416": "Ġilleg", - "4417": "Ġsurface", - "4418": "ĠAlso", - "4419": "Ġharm", - "4420": "ingly", - "4421": "wide", - "4422": "ĠAlex", - "4423": "Ġshut", - "4424": "ĠCur", - "4425": "Ġlose", - "4426": "pm", - "4427": "Ġchallenge", - "4428": "semb", - "4429": "Ġstation", - "4430": "Ġintelligence", - "4431": "Ġaccur", - "4432": "ĠFlor", - "4433": "Ġrequires", - "4434": "ĠMal", - "4435": "bum", - "4436": "Ġhospital", - "4437": "Ġspirit", - "4438": "Ġoffered", - "4439": "Ġproduce", - "4440": "ĠCommun", - "4441": "Ġcreating", - "4442": "Ġcris", - "4443": "spect", - "4444": "Ġended", - "4445": "Ġdaily", - "4446": "Ġvoters", - "4447": "lands", - "4448": "ias", - "4449": "ih", - "4450": "ona", - "4451": "Ġsmart", - "4452": "ĠOffice", - "4453": "ĠLord", - "4454": "rial", - "4455": "ĠInternet", - "4456": "Ġcircum", - "4457": "Ġextremely", - "4458": "'.", - "4459": "Ġopinion", - "4460": "ĠMil", - "4461": "Ġgain", - "4462": "BS", - "4463": "ĠFin", - "4464": "yp", - "4465": "Ġuseful", - "4466": "Ġbudget", - "4467": "Ġcomfort", - "4468": "isf", - "4469": "Ġbackground", - "4470": "eline", - "4471": "Ġepisode", - "4472": "Ġenemy", - "4473": "Ġtrial", - "4474": "Ġestablish", - "4475": "date", - "4476": "ĠCap", - "4477": "Ġcontinues", - "4478": "Ġshowing", - "4479": "ĠUnion", - "4480": "with", - "4481": "Ġposted", - "4482": "ĠSystem", - "4483": "Ġeat", - "4484": "rian", - "4485": "Ġrise", - "4486": "ĠGermany", - "4487": "ils", - "4488": "Ġsigned", - "4489": "Ġvill", - "4490": "Ġgrand", - "4491": "mor", - "4492": "ĠEngland", - "4493": "Ġprojects", - "4494": "umber", - "4495": "Ġconference", - "4496": "za", - "4497": "Ġresponsible", - "4498": "ĠArab", - "4499": "Ġlearned", - "4500": "âĢĶâĢĶ", - "4501": "ipping", - "4502": "ĠGeorge", - "4503": "OC", - "4504": "Ġreturned", - "4505": "ĠAustralia", - "4506": "Ġbrief", - "4507": "Qu", - "4508": "Ġbrand", - "4509": "illing", - "4510": "abled", - "4511": "Ġhighest", - "4512": "Ġtrain", - "4513": "ĠCommission", - "4514": "while", - "4515": "Ġnom", - "4516": "ception", - "4517": "Ġmut", - "4518": "ĠBlue", - "4519": "Ġincident", - "4520": "vant", - "4522": "ĠID", - "4523": "Ġnuclear", - "4525": "ĠLike", - "4526": "ĠRE", - "4527": "ĠMicro", - "4528": "li", - "4529": "mail", - "4530": "Ġcharges", - "4532": "Ġadjust", - "4533": "ado", - "4534": "Ġearth", - "4535": "NA", - "4536": "Ġprices", - "4537": "PA", - "4538": "Ġdraft", - "4539": "Ġruns", - "4540": "Ġcandidate", - "4541": "enses", - "4542": "Ġmanagement", - "4543": "ĠPhil", - "4544": "ĠMiss", - "4545": "Ġteach", - "4546": "gram", - "4547": "Ġunderstanding", - "4548": "ait", - "4549": "icago", - "4550": "Add", - "4551": "ĠEp", - "4552": "secut", - "4553": "Ġseparate", - "4554": "Ġinstance", - "4555": "Ġeth", - "4556": "Ġunless", - "4557": "********", - "4558": "ĠFore", - "4559": "inate", - "4560": "Ġoperations", - "4561": "Sp", - "4562": "Ġfaith", - "4563": "gar", - "4564": "ĠChurch", - "4565": "ronic", - "4566": "Ġconfig", - "4567": "osure", - "4568": "Ġactivities", - "4569": "Ġtraditional", - "4570": "Ġ36", - "4571": "Ġdirection", - "4572": "Ġmachine", - "4573": "Ġsurround", - "4574": "Ġpush", - "4575": "unction", - "4576": "ĠEU", - "4577": "Ġeasier", - "4578": "Ġargument", - "4579": "GB", - "4580": "Ġmicro", - "4581": "Ġspending", - "4582": "izations", - "4583": "Ġtheory", - "4584": "adow", - "4585": "Ġcalling", - "4586": "ĠLast", - "4587": "Ġder", - "4588": "Ġinfluence", - "4589": "Ġcommit", - "4590": "Ġphoto", - "4591": "Ġunc", - "4592": "istry", - "4593": "gn", - "4594": "aste", - "4595": "acks", - "4596": "Ġdisp", - "4597": "ady", - "4598": "do", - "4599": "ĠGood", - "4600": "Ġ`", - "4601": "Ġwish", - "4602": "Ġrevealed", - "4603": "³³", - "4604": "lig", - "4605": "Ġenforce", - "4606": "ĠCommittee", - "4607": "Ġchem", - "4608": "Ġmiles", - "4609": "Ġinterested", - "4610": "Ġsolution", - "4611": "icy", - "4612": "inct", - "4613": "Ġ->", - "4614": "ĠDet", - "4615": "Ġremoved", - "4616": "Ġcompar", - "4617": "eah", - "4618": "Ġplant", - "4619": "ĠSince", - "4620": "Ġachieve", - "4621": "Ġadvantage", - "4622": "Ġslightly", - "4623": "bing", - "4624": "Ġplaced", - "4625": "under", - "4627": "ĠMad", - "4628": "Ġtim", - "4629": "oses", - "4630": "Ġcru", - "4631": "ĠRock", - "4632": "Ġmostly", - "4633": "Ġnegative", - "4634": "Ġsetting", - "4635": "Ġproduced", - "4636": "Ġmur", - "4637": "Ġconnection", - "4638": "ĠMer", - "4639": "Ġdriver", - "4640": "Ġexecutive", - "4641": "Ġassault", - "4642": "Ġborn", - "4643": "ĠVer", - "4644": "tained", - "4645": "Ġstructure", - "4646": "Ġreduce", - "4647": "Ġdecades", - "4648": "Ġded", - "4649": "uke", - "4650": "ĠMany", - "4651": "idden", - "4652": "Ġleague", - "4653": "Se", - "4654": "Ġjoin", - "4655": "Ġdisco", - "4656": "Ġdie", - "4657": "cks", - "4658": "actions", - "4659": "Ġassess", - "4660": "agn", - "4661": "Ġgoals", - "4662": "ours", - "4663": "IR", - "4664": "Ġsenior", - "4665": "iller", - "4666": "mod", - "4667": "ipment", - "4668": "ocol", - "4669": "uy", - "4670": "ĠQue", - "4671": "Ġparties", - "4672": "irgin", - "4673": "Ġlearning", - "4674": "itable", - "4675": "Ġstreet", - "4676": "Ġcamera", - "4677": "App", - "4678": "Ġskills", - "4679": "bre", - "4680": "cious", - "4681": "Ġcelebr", - "4682": "ĠFranc", - "4683": "Ġexisting", - "4684": "Ġwilling", - "4685": "lor", - "4686": "Ġid", - "4687": "ĠSpace", - "4688": "Ġcritical", - "4689": "ĠLa", - "4690": "ortunately", - "4691": "Ġserve", - "4692": "Ġcold", - "4693": "Ġspecies", - "4694": "TS", - "4695": "Ġanimals", - "4696": "ĠBay", - "4697": "Ġolder", - "4698": "ĠUnder", - "4699": "estic", - "4700": "ĠTre", - "4701": "Ġteacher", - "4702": "Ġprefer", - "4703": "vis", - "4704": "Ġthread", - "4705": "ĠMatt", - "4706": "Ġmanager", - "4707": "ãĥ»", - "4708": "Ġprofessional", - "4709": "ĠVol", - "4710": "Ġnotes", - "4711": "These", - "4712": "ula", - "4713": "Ġfresh", - "4714": "ented", - "4715": "uzz", - "4716": "edy", - "4717": "clusion", - "4718": "ĠRel", - "4719": "Ġdoubt", - "4720": "EO", - "4721": "Ġopened", - "4722": "ĠBit", - "4723": "Advertisement", - "4724": "Ġguess", - "4725": "ĠUN", - "4726": "Ġsequ", - "4727": "Ġexplain", - "4728": "otten", - "4729": "Ġattract", - "4730": "aks", - "4731": "Ġstring", - "4732": "Ġcontext", - "4733": "ossible", - "4734": "ĠRepublicans", - "4735": "Ġsolid", - "4736": "Ġcities", - "4737": "Ġasking", - "4738": "Ġrandom", - "4739": "ups", - "4740": "uries", - "4741": "arant", - "4742": "dden", - "4743": "gl", - "4744": "ĠFlorida", - "4745": "Ġdepend", - "4746": "ĠScott", - "4747": "Ġ33", - "4748": "ĠiT", - "4749": "icon", - "4750": "Ġmentioned", - "4751": "Ġ2000", - "4752": "Ġclaimed", - "4753": "Ġdefinitely", - "4754": "ulf", - "4755": "Ġcore", - "4756": "Ġopening", - "4757": "ĠConst", - "4758": "which", - "4759": "ĠTra", - "4760": "AG", - "4762": "Ġbelieved", - "4763": "ada", - "4764": "Ġ48", - "4765": "ĠSecurity", - "4766": "yright", - "4767": "ĠPet", - "4768": "ĠLou", - "4769": "Ġholding", - "4770": "================", - "4771": "Ġice", - "4772": "Ġbrow", - "4773": "Ġauthorities", - "4774": "host", - "4775": "word", - "4776": "Ġscore", - "4777": "ĠDiv", - "4778": "Ġcells", - "4779": "Ġtransl", - "4780": "Ġneighbor", - "4781": "Ġremove", - "4782": "uct", - "4783": "Ġdistrict", - "4784": "ĠAccording", - "4785": "Ġworse", - "4786": "Ġconcerns", - "4787": "Ġpresidential", - "4788": "Ġpolicies", - "4789": "ĠHall", - "4791": "Ġhus", - "4792": "AY", - "4793": "Ġ2006", - "4794": "ĠJud", - "4795": "Ġindependent", - "4796": "ĠJustice", - "4797": "iliar", - "4798": "print", - "4799": "ighter", - "4800": "Ġprotection", - "4801": "zen", - "4802": "Ġsudden", - "4803": "house", - "4804": "ĠJes", - "4805": "PR", - "4806": "ĠInf", - "4807": "Ġbul", - "4808": "Ġ_", - "4809": "ĠService", - "4810": "ĠPR", - "4811": "Ġstrategy", - "4812": "ffect", - "4813": "Ġgirls", - "4814": "Ġmissing", - "4815": "oyal", - "4816": "ĠTeam", - "4817": "ulated", - "4818": "Ġdat", - "4819": "Ġpolitics", - "4820": "abor", - "4821": "According", - "4822": "Ġspell", - "4823": "Ġgraph", - "4824": "orthern", - "4825": "TC", - "4826": "Ab", - "4827": "Ġlabor", - "4828": "isher", - "4829": "Ġkick", - "4830": "ĠiTunes", - "4831": "Ġsteps", - "4832": "poses", - "4833": "Ġsmaller", - "4834": "En", - "4835": "bert", - "4836": "Ġroll", - "4837": "Ġresearchers", - "4838": "Ġclosed", - "4839": "Ġtransport", - "4840": "Ġlawy", - "4841": "________________", - "4842": "ĠChicago", - "4843": "Ġaspect", - "4844": "Ġnone", - "4845": "Ġmarriage", - "4847": "Ġelements", - "4848": "ĠFre", - "4849": "ĠSal", - "4850": "Ġdram", - "4851": "FC", - "4852": "top", - "4853": "equ", - "4854": "Ġhearing", - "4855": "Ġsupported", - "4856": "Ġtesting", - "4857": "cohol", - "4858": "Ġmassive", - "4859": "Ġstick", - "4860": "Ġguard", - "4861": "isco", - "4862": "phone", - "4863": "From", - "4864": "However", - "4865": "Ġborder", - "4866": "Ġcopy", - "4867": "ography", - "4868": "list", - "4870": "Ġowner", - "4871": "class", - "4872": "ruit", - "4873": "rate", - "4874": "ĠOnce", - "4875": "Ġdigital", - "4876": "Ġtask", - "4877": "ERS", - "4878": "Ġincred", - "4879": "tes", - "4880": "++", - "4881": "ĠFrance", - "4882": "Ġbreat", - "4883": "owl", - "4884": "Ġissued", - "4885": "ĠWestern", - "4886": "Ġdetect", - "4887": "Ġpartners", - "4888": "Ġshared", - "4889": "ĠCall", - "4890": "Ġcancer", - "4891": "ache", - "4892": "ribe", - "4893": "Ġexplained", - "4894": "Ġheat", - "4895": "{\"", - "4896": "Ġinvestment", - "4897": "ĠBook", - "4898": "Ġwood", - "4899": "Ġtools", - "4900": "ĠAlthough", - "4901": "Ġbelief", - "4902": "Ġcrisis", - "4903": "Ġge", - "4904": "ĠMP", - "4905": "Ġoperation", - "4906": "type", - "4907": "~~", - "4908": "ga", - "4909": "Ġcontains", - "4910": "anta", - "4911": "Ġexpress", - "4912": "ĠGroup", - "4913": "ĠJournal", - "4914": "ka", - "4915": "Ġamb", - "4916": "ĠUSA", - "4917": "Ġfinding", - "4918": "Ġfunding", - "4919": "how", - "4920": "Ġestablished", - "4921": "ideos", - "4922": "Ġdegree", - "4923": "Ġdangerous", - "4924": "anging", - "4925": "Ġfreedom", - "4926": "pport", - "4927": "outhern", - "4928": "Ġchurch", - "4929": "Ġcatch", - "4930": "ĠTwo", - "4931": "Ġpresence", - "4932": "ĠGuard", - "4933": "Up", - "4934": "Ġauthority", - "4935": "ĠProject", - "4936": "Ġbutton", - "4937": "Ġconsequ", - "4938": "Ġvalid", - "4939": "Ġweak", - "4940": "Ġstarts", - "4941": "Ġreference", - "4942": "ĠMem", - "4943": "\")", - "4944": "UN", - "4945": "orage", - "4946": "ĠOpen", - "4947": "Ġcollection", - "4948": "ym", - "4949": "gency", - "4950": "Ġbeautiful", - "4951": "ros", - "4952": "Ġtells", - "4953": "Ġwaiting", - "4954": "nel", - "4955": "Ġproviding", - "4956": "ĠDemocrats", - "4957": "Ġdaughter", - "4958": "Ġmaster", - "4959": "Ġpurposes", - "4960": "ĠJapanese", - "4961": "Ġequal", - "4962": "Ġturns", - "4963": "Ġdocuments", - "4964": "Ġwatching", - "4965": "Res", - "4966": "Ġran", - "4968": "Ġreject", - "4969": "ĠKorea", - "4970": "Ġvictims", - "4971": "Level", - "4972": "erences", - "4973": "Ġwitness", - "4974": "Ġ34", - "4975": "Ġreform", - "4976": "coming", - "4977": "Ġoccup", - "4978": "Ġcaught", - "4979": "Ġtraffic", - "4980": "ading", - "4981": "Ġmodels", - "4982": "ario", - "4983": "Ġserved", - "4984": "Ġbatter", - "4985": "uate", - "4986": "ĠSecretary", - "4987": "Ġagreed", - "4988": "Ġtruly", - "4989": "ynam", - "4990": "ĠRet", - "4991": "Ġunits", - "4992": "ĠResearch", - "4993": "hand", - "4994": "azine", - "4995": "ĠMike", - "4996": "Ġvariety", - "4997": "otal", - "4998": "Ġamazing", - "4999": "Ġconfirmed", - "5000": "Ġentirely", - "5001": "Ġpurchase", - "5002": "Ġelement", - "5003": "Ġcash", - "5004": "Ġdetermine", - "5005": "De", - "5006": "Ġcars", - "5007": "ĠWall", - "5008": "âĸ", - "5009": "Ġviews", - "5010": "Ġdrugs", - "5011": "Ġdepartment", - "5012": "ĠStep", - "5013": "uit", - "5014": "Ġ39", - "5015": "asure", - "5016": "ĠClass", - "5017": "Ġcovered", - "5018": "ĠBank", - "5019": "Ġmere", - "5020": "uana", - "5021": "Ġmulti", - "5022": "Ġmix", - "5023": "Ġunlike", - "5024": "levision", - "5025": "Ġstopped", - "5026": "Ġsem", - "5027": "ĠGal", - "5028": "ules", - "5029": "Ġwel", - "5030": "ĠJohnson", - "5031": "la", - "5032": "Ġskill", - "5033": "Ġbecoming", - "5034": "rie", - "5035": "Ġappropriate", - "5036": "fe", - "5037": "ellow", - "5038": "ĠProt", - "5039": "ulate", - "5040": "ocation", - "5041": "Ġweekend", - "5042": "odies", - "5043": "Ġsites", - "5044": "Ġanimal", - "5045": "ĠTim", - "5046": "Ġscale", - "5047": "Ġcharged", - "5048": "Ġinstruct", - "5049": "illa", - "5050": "Ġmethods", - "5051": "Ġcert", - "5052": "Ġjudge", - "5053": "ĠHel", - "5054": "Ġdollars", - "5055": "Ġstanding", - "5056": "ĠSqu", - "5057": "Ġdebt", - "5058": "liam", - "5059": "Ġdriving", - "5060": "ĠSum", - "5061": "ĠEdition", - "5062": "Ġalbum", - "5063": "andon", - "5064": "IF", - "5065": "ĠUk", - "5067": "ader", - "5068": "Ġcommercial", - "5069": "esh", - "5070": "ĠGovernment", - "5071": "Ġdiscovered", - "5072": "Ġoutput", - "5073": "ĠHillary", - "5074": "ĠCarol", - "5075": "Ġ2005", - "5076": "Ġabuse", - "5077": "ancing", - "5078": "Ġswitch", - "5079": "Ġannual", - "5080": "Tw", - "5081": "Ġstated", - "5082": "agement", - "5083": "inner", - "5084": "Ġdemocr", - "5085": "Ġresidents", - "5086": "Ġallowing", - "5087": "Ġfactors", - "5088": "odd", - "5089": "Ġfuck", - "5090": "emies", - "5091": "Ġoccurred", - "5092": "oti", - "5093": "Ġnorth", - "5094": "ĠPublic", - "5095": "Ġinjury", - "5096": "Ġinsurance", - "5097": "CL", - "5098": "olly", - "5099": "ãĢ", - "5100": "Ġrepeated", - "5101": "Ġarms", - "5102": "anged", - "5103": "Ġconstruction", - "5104": "Ġfle", - "5105": "PU", - "5106": "icians", - "5107": "Ġforms", - "5108": "ĠMcC", - "5109": "antic", - "5110": "Ġmental", - "5111": "pire", - "5112": "Ġequipment", - "5113": "Ġfant", - "5114": "Ġdiscussion", - "5115": "Ġregarding", - "5116": "kin", - "5117": "arp", - "5118": "Ġchair", - "5119": "ogue", - "5120": "Ġproceed", - "5121": "ĠId", - "5122": "Our", - "5123": "Ġmurder", - "5124": "Man", - "5125": "Ġ49", - "5126": "asp", - "5127": "Ġsupply", - "5128": "Ġinput", - "5129": "Ġwealth", - "5130": "liament", - "5131": "Ġproced", - "5132": "orial", - "5133": "ĠStat", - "5134": "ĠNFL", - "5135": "hens", - "5136": "ĠInstitute", - "5137": "Ġputting", - "5138": "ournament", - "5139": "etic", - "5140": "Ġlocated", - "5141": "Ġkid", - "5142": "eria", - "5143": "run", - "5144": "Ġprinc", - "5145": "Ġ!", - "5146": "going", - "5147": "ĠBet", - "5148": "Ġclot", - "5149": "Ġtelling", - "5150": "Ġproposed", - "5151": "iot", - "5152": "orry", - "5153": "Ġfunds", - "5154": "gment", - "5155": "ĠLife", - "5156": "Ġbaby", - "5157": "ĠBack", - "5158": "Ġspoke", - "5159": "Image", - "5160": "Ġearn", - "5161": "ĠAT", - "5162": "gu", - "5163": "Ġexchange", - "5164": "ĠLin", - "5165": "oving", - "5166": "Ġpair", - "5167": "More", - "5168": "azon", - "5169": "Ġarrested", - "5170": "Ġkilling", - "5171": "can", - "5172": "ĠCard", - "5173": "yd", - "5174": "Ġidentified", - "5175": "Ġmobile", - "5176": "Ġthanks", - "5177": "onym", - "5178": "ĠForm", - "5179": "Ġhundreds", - "5180": "ĠChris", - "5181": "ĠCat", - "5182": "Ġtrend", - "5183": "hat", - "5184": "ĠAv", - "5185": "oman", - "5186": "Ġelectric", - "5187": "ĠWil", - "5188": "SE", - "5189": "Of", - "5190": "Ġrestaur", - "5191": "oted", - "5192": "Ġtrig", - "5193": "Ġnine", - "5194": "Ġbomb", - "5195": "Why", - "5196": "¯", - "5197": "Ġcoverage", - "5198": "Ġappeal", - "5199": "ĠRobert", - "5200": "ĠSup", - "5201": "Ġfinished", - "5202": "Ġflow", - "5203": "Ġdeliver", - "5204": "Ġcalcul", - "5205": "Ġphotos", - "5206": "Ġphil", - "5207": "Ġpieces", - "5208": "Ġappre", - "5209": "kes", - "5210": "Ġrough", - "5211": "Do", - "5212": "Ġpartner", - "5213": "Ġconcerned", - "5214": "Ġ37", - "5215": "ĠGen", - "5216": "Col", - "5217": "ctors", - "5218": "Ġ=>", - "5219": "state", - "5220": "Ġsuggested", - "5221": "ĠForce", - "5222": "CE", - "5223": "Ġherself", - "5224": "ĠPlan", - "5225": "works", - "5226": "ooth", - "5227": "rency", - "5228": "Ġcorner", - "5229": "Ġhusband", - "5230": "Ġinternet", - "5231": "ĠAut", - "5232": "ems", - "5233": "osen", - "5234": "ĠAtl", - "5235": "gen", - "5236": "Ġbalance", - "5238": "Ġsounds", - "5239": "text", - "5240": "Ġarr", - "5241": "oves", - "5242": "Ġmillions", - "5243": "Ġradio", - "5244": "Ġsatisf", - "5245": "ĠDam", - "5246": "Mr", - "5247": "Go", - "5248": "Spe", - "5249": "Ġcombat", - "5250": "rant", - "5251": "ĠGree", - "5252": "Ġfuel", - "5253": "Ġdistance", - "5254": "Ġtests", - "5255": "Ġdecre", - "5256": "ĠEr", - "5257": "Ġmanaged", - "5258": "DS", - "5259": "Ġtit", - "5260": "Ġmeasures", - "5261": "ĠLiber", - "5262": "Ġattend", - "5263": "ashed", - "5264": "ĠJose", - "5265": "ĠNight", - "5266": "dit", - "5267": "ĠNov", - "5268": "ĠEnd", - "5269": "outs", - "5270": "Ġgeneration", - "5271": "Ġadvoc", - "5272": "yth", - "5273": "Ġconversation", - "5274": "ĠSky", - "5275": "active", - "5276": "cel", - "5277": "rier", - "5278": "ĠFrank", - "5279": "Ġgender", - "5280": "Ġconcent", - "5281": "Ġcarried", - "5282": "anda", - "5283": "ĠVirgin", - "5284": "Ġarrived", - "5285": "icide", - "5286": "aded", - "5287": "Ġfailure", - "5288": "Ġminimum", - "5289": "lets", - "5290": "Ġworst", - "5291": "Ġkeeping", - "5292": "Ġintended", - "5293": "Ġillegal", - "5294": "Ġsubsc", - "5295": "Ġdetermined", - "5296": "Ġtrip", - "5297": "Yes", - "5298": "Ġraise", - "5299": "Ġ~", - "5300": "Ġfeels", - "5301": "Ġpackage", - "5302": "ĠJo", - "5303": "hi", - "5305": "real", - "5306": "Ġfra", - "5307": "Ġsymb", - "5308": "Me", - "5309": "ucky", - "5310": "pret", - "5311": "ĠKh", - "5312": "ĠEdit", - "5313": "ĠWeb", - "5314": "emic", - "5315": "ĠColor", - "5316": "Ġjustice", - "5317": "Int", - "5318": "Ġfarm", - "5319": "cknow", - "5320": "\">", - "5321": "eless", - "5322": "Ġreduced", - "5323": "Ġ500", - "5324": "xx", - "5325": "ĠRad", - "5326": "ĠWood", - "5327": "Ġclin", - "5328": "Ġhyp", - "5329": "iler", - "5330": "ura", - "5331": "kins", - "5334": "ĠTheir", - "5335": "ĠMary", - "5336": "Ġsan", - "5337": "Ġnovel", - "5338": "ĠWho", - "5339": "Ġcapacity", - "5340": "Ġimpossible", - "5341": "Ġplays", - "5342": "Ġminister", - "5343": "ijuana", - "5344": "icate", - "5345": "ĠSet", - "5346": "Ġfram", - "5347": "Ġing", - "5348": "Ġcommunities", - "5349": "ĠFBI", - "5350": "ita", - "5351": "Ġbon", - "5352": "Ġstrateg", - "5353": "Ġinterests", - "5354": "lock", - "5355": "gers", - "5356": "mas", - "5357": "ĠAND", - "5358": "Ġconflict", - "5359": "Ġrequirements", - "5360": "Ġsac", - "5361": "Ġoperating", - "5362": "ini", - "5363": "related", - "5364": "Ġcommitted", - "5365": "Ġrelatively", - "5366": "Ġsouth", - "5367": "¯¯", - "5368": "Ġafford", - "5369": "Ġidentity", - "5370": "Ġdecisions", - "5371": "Ġaccused", - "5372": "place", - "5373": "Ġvictory", - "5374": "och", - "5375": "iat", - "5376": "Name", - "5377": "Com", - "5378": "tion", - "5379": "eds", - "5380": "Ġseek", - "5381": "Ġtight", - "5382": "ĠImages", - "5383": "Ġiniti", - "5384": "Ġhumans", - "5385": "Ġfamiliar", - "5386": "Ġaudience", - "5387": "Ġinternal", - "5388": "venture", - "5389": "Ġsides", - "5390": "ĠTO", - "5391": "Ġdim", - "5392": "Ġconclud", - "5393": "Ġappoint", - "5394": "Ġenforcement", - "5395": "ĠJim", - "5396": "ĠAssociation", - "5397": "Ġcircumst", - "5398": "ĠCanadian", - "5399": "Ġjoined", - "5400": "Ġdifferences", - "5401": "ĠLos", - "5402": "Ġprotest", - "5403": "Ġtwice", - "5404": "win", - "5405": "Ġglass", - "5406": "arsh", - "5407": "ĠArmy", - "5408": "Ġexpression", - "5409": "Ġdecide", - "5410": "Ġplanning", - "5411": "ania", - "5412": "Ġhandle", - "5413": "ĠMicrosoft", - "5414": "ĠNor", - "5415": "Ġmaximum", - "5416": "ĠRev", - "5417": "Ġsea", - "5418": "Ġeval", - "5419": "Ġhelps", - "5420": "ref", - "5421": "Ġbound", - "5422": "Ġmouth", - "5423": "Ġstandards", - "5424": "Ġclim", - "5425": "ĠCamp", - "5426": "ĠFox", - "5427": "cles", - "5428": "Ġarmy", - "5429": "ĠTechn", - "5430": "acking", - "5431": "xy", - "5432": "SS", - "5433": "Ġ42", - "5434": "Ġbug", - "5435": "ĠUkrain", - "5436": "ĠMax", - "5437": "ĠJones", - "5438": "ĠShow", - "5439": "lo", - "5440": "Ġplanet", - "5441": "Ġ75", - "5442": "Ġwinning", - "5443": "Ġfaster", - "5444": "Ġspect", - "5445": "Ġbroken", - "5446": "TR", - "5447": "Ġdefined", - "5448": "Ġhealthy", - "5449": "Ġcompetition", - "5450": "https", - "5451": "ĠIsland", - "5452": "ĠFe", - "5453": "Ġannounce", - "5454": "ĠCup", - "5455": "ĠInstead", - "5456": "Ġclient", - "5457": "Ġpossibly", - "5458": "section", - "5459": "ocket", - "5460": "look", - "5461": "Ġfinish", - "5462": "Ġcrew", - "5463": "Ġreserv", - "5464": "Ġeditor", - "5465": "Ġhate", - "5466": "Ġsale", - "5467": "Ġcontrovers", - "5468": "Ġpages", - "5469": "wing", - "5470": "Ġnumer", - "5471": "Ġopposition", - "5472": "Ġ2004", - "5473": "Ġrefuge", - "5474": "Ġflight", - "5475": "Ġapart", - "5476": "ĠLat", - "5477": "Americ", - "5478": "ĠAfrica", - "5479": "Ġapplications", - "5480": "ĠPalest", - "5481": "ĠBur", - "5482": "Ġgar", - "5483": "ĠSocial", - "5484": "Ġupgr", - "5485": "Ġshape", - "5486": "Ġspeaking", - "5487": "ansion", - "5488": "ao", - "5489": "ĠSn", - "5490": "Ġworry", - "5491": "ĠBritain", - "5492": "Please", - "5493": "roud", - "5494": "Ġhun", - "5495": "Ġintroduced", - "5496": "Ġdiet", - "5497": "Ind", - "5498": "ĠSecond", - "5499": "Ġfunctions", - "5500": "uts", - "5501": "ĠEach", - "5502": "ĠJeff", - "5503": "Ġstress", - "5504": "Ġaccounts", - "5505": "Ġguarant", - "5506": "ĠAnn", - "5507": "edia", - "5508": "Ġhonest", - "5509": "Ġtree", - "5510": "ĠAfrican", - "5511": "ĠBush", - "5512": "},", - "5513": "Ġsch", - "5514": "ĠOnly", - "5515": "Ġfif", - "5516": "igan", - "5517": "Ġexercise", - "5518": "ĠExp", - "5519": "Ġscientists", - "5520": "Ġlegislation", - "5521": "ĠWork", - "5522": "ĠSpr", - "5523": "ÃĤ", - "5524": "ĠHuman", - "5525": "Ġè", - "5526": "Ġsurvey", - "5527": "Ġrich", - "5528": "rip", - "5529": "Ġmaintain", - "5530": "Ġflo", - "5531": "Ġleadership", - "5532": "stream", - "5533": "ĠIslamic", - "5534": "Ġ01", - "5535": "ĠCollege", - "5536": "Ġmagic", - "5537": "ĠPrime", - "5538": "Ġfigures", - "5540": "inder", - "5541": "xual", - "5542": "ĠDead", - "5543": "Ġabsolutely", - "5544": "Ġfourth", - "5545": "Ġpresented", - "5546": "respond", - "5547": "rible", - "5548": "Ġalcohol", - "5549": "ato", - "5550": "ĠDE", - "5551": "porary", - "5552": "Ġgrab", - "5553": "Ġvari", - "5554": "Ġquant", - "5555": "ĠPhoto", - "5556": "Ġplus", - "5557": "rick", - "5558": "arks", - "5559": "Ġalternative", - "5560": "Ġpil", - "5561": "Ġapprox", - "5562": "that", - "5563": "Ġobjects", - "5564": "ĠRo", - "5565": "ĠAndroid", - "5566": "Ġsignificantly", - "5567": "ĠRoad", - "5568": "kay", - "5569": "Read", - "5570": "avor", - "5571": "Ġacknow", - "5572": "ĠHD", - "5573": "ĠSing", - "5574": "Or", - "5575": "ĠMont", - "5576": "Ġuns", - "5577": "prof", - "5578": "Ġnegoti", - "5579": "ĠArch", - "5580": "iki", - "5581": "Ġtelevision", - "5582": "ĠJewish", - "5583": "Ġcommittee", - "5584": "Ġmotor", - "5585": "Ġappearance", - "5586": "Ġsitting", - "5587": "Ġstrike", - "5588": "ĠDown", - "5589": "comp", - "5590": "ĠHist", - "5591": "Ġfold", - "5592": "acement", - "5593": "ĠLouis", - "5594": "Ġbelong", - "5595": "ĠâĢ¢", - "5596": "Ġmort", - "5597": "Ġprepared", - "5598": "Ġ64", - "5599": "ĠMaster", - "5600": "Ġindeed", - "5601": "ĠDen", - "5602": "Ġrent", - "5603": "TA", - "5604": "ourney", - "5605": "arc", - "5606": "Su", - "5608": "Ġadvice", - "5609": "Ġchanging", - "5610": "Ġlisted", - "5611": "Ġlaunched", - "5612": "isation", - "5613": "ĠPeter", - "5614": "ishes", - "5615": "Ġlived", - "5616": "ĠMel", - "5617": "ĠSupreme", - "5618": "ĠFederal", - "5619": "Ġ);", - "5620": "ructure", - "5621": "Ġsets", - "5622": "Ġphilos", - "5623": "uous", - "5624": "ĠÂł", - "5625": "Ġapplied", - "5626": "ĠNOT", - "5627": "Ġhousing", - "5628": "ĠMount", - "5629": "Ġodd", - "5630": "Ġsust", - "5631": "DA", - "5632": "fficient", - "5633": "Ġ?", - "5634": "olved", - "5635": "Ġpowers", - "5636": "Ġthr", - "5637": "Ġremaining", - "5638": "ĠWater", - "5639": "LC", - "5640": "Ġcauses", - "5641": "ãģ®", - "5642": "Ġmanner", - "5643": "ads", - "5644": "Ġsuggests", - "5645": "Ġends", - "5646": "standing", - "5647": "fig", - "5648": "ĠDun", - "5649": "idth", - "5650": "Ġgay", - "5651": "Ġtermin", - "5652": "ĠAngeles", - "5653": "MS", - "5654": "Ġscientific", - "5655": "Ġcoal", - "5656": "apers", - "5657": "bar", - "5658": "ĠThomas", - "5659": "Ġsym", - "5660": "ĠRun", - "5661": "this", - "5662": "PC", - "5663": "igrants", - "5664": "Ġminute", - "5665": "ĠDistrict", - "5666": "cellent", - "5667": "Ġleaves", - "5668": "Ġcompleted", - "5669": "amin", - "5670": "Ġfocused", - "5671": "Ġmonitor", - "5672": "Ġvehicles", - "5673": "MA", - "5674": "ĠMass", - "5675": "ĠGrand", - "5676": "Ġaffected", - "5677": "itutional", - "5678": "Ġconstruct", - "5679": "Ġfollows", - "5680": "Ġton", - "5681": "reens", - "5682": "Ġhomes", - "5683": "ĠExt", - "5684": "ĠLevel", - "5685": "rast", - "5686": "ĠIr", - "5687": "Ġelim", - "5688": "Ġlargely", - "5689": "ĠJoe", - "5690": "Ġvotes", - "5691": "alls", - "5692": "Ġbusinesses", - "5693": "ĠFoundation", - "5694": "ĠCentral", - "5695": "Ġyards", - "5696": "Ġmaterials", - "5697": "ulner", - "5698": "Ġguide", - "5699": "Ġcloser", - "5700": "ums", - "5701": "Ġsports", - "5702": "eder", - "5703": "Just", - "5704": "Ġtaxes", - "5706": "ĠOld", - "5707": "Ġdecade", - "5708": "ola", - "5709": "Ġvir", - "5710": "Ġdropped", - "5711": "Ġdelay", - "5712": "itect", - "5713": "Ġsecure", - "5714": "stein", - "5715": "level", - "5716": "Ġtreated", - "5717": "Ġfiled", - "5718": "aine", - "5719": "Ġvan", - "5720": "Ġmir", - "5721": "Ġcolumn", - "5722": "icted", - "5723": "eper", - "5724": "Ġrot", - "5725": "Ġconsult", - "5726": "Ġentry", - "5727": "Ġmarijuana", - "5728": "ĠDou", - "5729": "Ġapparently", - "5730": "oking", - "5731": "clusive", - "5732": "Ġincreases", - "5733": "ano", - "5734": "Ġspecifically", - "5735": "Ġtele", - "5736": "ensions", - "5737": "Ġreligion", - "5738": "abilities", - "5739": "Ġframe", - "5740": "ĠNote", - "5741": "ĠLee", - "5742": "Ġhelping", - "5743": "Ġedge", - "5744": "oston", - "5745": "Ġorganizations", - "5746": "Ãĥ", - "5747": "ĠBoth", - "5748": "hips", - "5749": "Ġbigger", - "5750": "Ġboost", - "5751": "ĠStand", - "5752": "Ġrow", - "5753": "uls", - "5754": "abase", - "5755": "Ġrid", - "5756": "Let", - "5757": "aren", - "5758": "rave", - "5759": "Ġstret", - "5760": "PD", - "5761": "Ġvision", - "5762": "Ġwearing", - "5763": "Ġappreci", - "5764": "Ġaward", - "5765": "ĠUse", - "5766": "Ġfactor", - "5767": "war", - "5768": "ulations", - "5769": ")(", - "5770": "Ġgod", - "5771": "Ġterrit", - "5772": "Ġparam", - "5773": "asts", - "5775": "Ġenemies", - "5776": "ĠGames", - "5777": "FF", - "5778": "Ġaccident", - "5779": "Well", - "5780": "ĠMartin", - "5781": "TER", - "5782": "Ġath", - "5783": "ĠHell", - "5784": "Ġforg", - "5785": "Ġveter", - "5786": "ĠMedic", - "5787": "free", - "5788": "Ġstars", - "5789": "Ġexpensive", - "5790": "Ġacad", - "5791": "rawn", - "5792": "ĠWhe", - "5793": "Ġlock", - "5794": "Ġformat", - "5795": "Ġsoldiers", - "5796": "sm", - "5797": "Ġagent", - "5798": "Ġresponsibility", - "5799": "ora", - "5800": "ĠScience", - "5801": "Ġrapid", - "5802": "Ġtough", - "5803": "ĠJesus", - "5804": "Ġbelieves", - "5805": "ML", - "5806": "Ġwear", - "5807": "lete", - "5808": "ÃĥÃĤ", - "5809": "ĠDri", - "5810": "Ġcommission", - "5811": "ĠBob", - "5812": "Oh", - "5813": "aped", - "5814": "Ġwarm", - "5815": "ÃĥÃĤÃĥÃĤ", - "5816": "Ġ2003", - "5817": "ortion", - "5818": "Ġhasn", - "5819": "uster", - "5820": "Ġunivers", - "5821": "ĠIll", - "5822": "Ġking", - "5823": "ologies", - "5825": "ĠTem", - "5826": "ĠMos", - "5827": "Ġpatient", - "5828": "ĠMexico", - "5829": "cean", - "5830": "ĠDeath", - "5831": "ĠSanders", - "5832": "you", - "5833": "ĠCast", - "5834": "ĠCompany", - "5835": "pty", - "5836": "Ġhappening", - "5837": "FP", - "5838": "ĠBattle", - "5839": "Ġbought", - "5840": "Am", - "5841": "Mod", - "5842": "Us", - "5843": "uters", - "5844": "ĠCre", - "5845": "ĠThose", - "5846": "Ġ44", - "5847": "iser", - "5848": "Ġsoul", - "5849": "ĠTop", - "5850": "ĠHarry", - "5851": "ĠAw", - "5852": "Ġseat", - "5853": "ffee", - "5854": "Ġrevolution", - "5855": "Ġ(\"", - "5856": "ĠDuring", - "5857": "ette", - "5858": "Ġring", - "5859": "Ġoffensive", - "5860": "Ġreturns", - "5861": "Ġvideos", - "5862": "Ġdiscl", - "5863": "Ġfamous", - "5864": "enced", - "5865": "ĠSign", - "5866": "ĠRiver", - "5867": "Ġ300", - "5868": "PM", - "5869": "ĠBus", - "5870": "ĠCH", - "5871": "Ġcandidates", - "5872": "arden", - "5873": "Ġpercentage", - "5874": "Ġvisual", - "5875": "Ġthank", - "5876": "Ġtrouble", - "5877": "nergy", - "5878": "Ġ2001", - "5879": "Ġprove", - "5880": "ashion", - "5881": "Ġenh", - "5882": "ĠLong", - "5883": "UM", - "5884": "Ġconnected", - "5885": "Ġpossibility", - "5886": "Over", - "5887": "Ġexpert", - "5888": "Ġlibrary", - "5889": "arts", - "5890": "ĠDirector", - "5891": "Ġfellow", - "5893": "irty", - "5894": "Ġdry", - "5895": "Ġsigns", - "5896": "ĠLove", - "5897": "Ġquiet", - "5898": "foot", - "5899": "Ġpure", - "5900": "ĠHun", - "5901": "Ġfilled", - "5902": "phas", - "5903": "ĠElect", - "5904": "endment", - "5905": "ĠExpl", - "5906": "Ġunable", - "5907": "ns", - "5908": "mo", - "5909": "Ġvast", - "5910": "obe", - "5911": "Ġidentify", - "5912": "apping", - "5913": "ĠCarolina", - "5914": "gress", - "5915": "Ġprote", - "5916": "Ġfish", - "5917": "Ġcircumstances", - "5918": "razy", - "5919": "ĠPhot", - "5920": "Ġbodies", - "5921": "ĠMur", - "5922": "Ġdeveloping", - "5923": "ĠAR", - "5924": "Ġexperienced", - "5925": "Ġsubstant", - "5926": "ĠBoard", - "5927": "esome", - "5928": "Ġdomestic", - "5929": "Ġcombined", - "5930": "ĠPut", - "5931": "Ġchemical", - "5932": "ĠChild", - "5933": "Ġpool", - "5934": "ĠCy", - "5935": "Ġegg", - "5936": "cons", - "5937": "sters", - "5938": "Ġhurt", - "5939": "Ġmarkets", - "5940": "Ġconservative", - "5941": "Ġsupporters", - "5942": "Ġagencies", - "5943": "idel", - "5944": "Ob", - "5945": "urb", - "5946": "Ġ43", - "5947": "ĠDefense", - "5948": "ye", - "5949": "ĠAp", - "5950": "dule", - "5951": "Ġtemperature", - "5952": "Ġconducted", - "5953": "ĠChief", - "5954": "Ġpulled", - "5955": "Ġfol", - "5956": "Last", - "5957": "onto", - "5958": "osis", - "5959": "VER", - "5960": "Des", - "5961": "ĠPan", - "5962": "First", - "5963": "Ġadvance", - "5964": "Ġlicense", - "5965": "rors", - "5966": "ĠJon", - "5967": "Ġimagine", - "5968": "Ġhell", - "5969": "Ġfixed", - "5970": "Ġincor", - "5971": "osite", - "5972": "ĠLog", - "5973": "icken", - "5974": "]:", - "5975": "Ġsurprise", - "5976": "hab", - "5977": "Ġcraft", - "5978": "olt", - "5979": "ĠJul", - "5980": "Ġdial", - "5981": "Ġrelevant", - "5982": "Ġentered", - "5983": "Ġleads", - "5984": "ĠAD", - "5985": "ĠClean", - "5986": "Ġpictures", - "5987": "essor", - "5988": "Ġalt", - "5989": "Ġpaying", - "5990": "Per", - "5991": "ĠMarket", - "5992": "Ġupdates", - "5993": "amily", - "5994": "ĠType", - "5995": "ĠHome", - "5996": "Ġ55", - "5997": "sembly", - "5998": "rome", - "6000": "Ġgreatest", - "6001": "Ġheight", - "6002": "Ġheav", - "6003": "aints", - "6004": "Ġlisten", - "6005": "aser", - "6006": "ĠSH", - "6007": "Ġcapable", - "6008": "acle", - "6009": "Ġperspect", - "6010": "inating", - "6011": "Ġoffering", - "6012": "rypt", - "6013": "ĠDevelop", - "6014": "abin", - "6015": "rc", - "6016": "Ġbright", - "6017": "alty", - "6018": "arrow", - "6019": "Ġsuppl", - "6020": "inding", - "6021": "acked", - "6022": "gypt", - "6023": "ĠAnother", - "6024": "pg", - "6025": "ĠVirginia", - "6026": "ĠLu", - "6027": "Ġplanned", - "6028": "Ġpit", - "6029": "Ġsweet", - "6030": "Type", - "6031": "ĠDi", - "6032": "Ġtypically", - "6033": "ĠFrancisco", - "6034": "Ġprospect", - "6035": "ĠDan", - "6036": "Ġteen", - "6037": "rees", - "6038": "Ġsched", - "6039": "Ġhol", - "6040": "Ġscr", - "6041": "Ġlots", - "6042": "life", - "6043": "Ġnewsp", - "6044": "Ġforget", - "6045": "ĠNone", - "6046": "ĠMiddle", - "6047": "ĠRyan", - "6048": "edd", - "6049": "Ġsevere", - "6050": "Ġsuit", - "6051": "ller", - "6053": "Ġcorrespond", - "6054": "Ġexplos", - "6055": "uations", - "6056": "Ġflag", - "6057": "game", - "6058": "rid", - "6059": "Ġprin", - "6060": "ĠData", - "6061": "Ġdeploy", - "6062": "ĠEnter", - "6063": "suit", - "6064": "ghan", - "6065": "ĠMen", - "6066": "Ġthoughts", - "6067": "Ġmatters", - "6068": "Ġadapt", - "6069": "ĠAri", - "6070": "Ġfill", - "6071": "Ġforth", - "6072": "Ġsam", - "6073": "Ġ41", - "6074": "Ġpayment", - "6075": "ĠHor", - "6076": "Ġspring", - "6077": "duc", - "6078": "Ġlosing", - "6079": "Ġbringing", - "6080": "FO", - "6081": "ala", - "6082": "Ġdistribution", - "6083": "hered", - "6084": "bour", - "6085": "ĠIsraeli", - "6086": "oma", - "6087": "Ġcombination", - "6088": "Ġplenty", - "6089": "VE", - "6090": "Can", - "6091": "ĠHaw", - "6092": "Ġperman", - "6093": "ĠSpecial", - "6094": "Ġtow", - "6095": "Ġseeking", - "6096": "Ġexamples", - "6097": "Ġclasses", - "6098": "cr", - "6099": "Ġbeer", - "6100": "Ġmoves", - "6101": "ĠIP", - "6102": "ĠKn", - "6103": "Ġpanel", - "6104": "Even", - "6105": "Ġproperly", - "6106": "Ġris", - "6107": "Ġplug", - "6108": "Ġestimated", - "6109": "Every", - "6110": "Ġdefensive", - "6111": "agraph", - "6112": "Ġpregn", - "6113": "Ġinstit", - "6114": "ĠVict", - "6115": "Ġvolume", - "6116": "Ġpositions", - "6117": "Ġlinks", - "6118": "ĠProgram", - "6119": "ĠWeek", - "6120": "agues", - "6121": "Ġtransform", - "6122": "ker", - "6123": "ĠCEO", - "6124": "Ġcas", - "6125": "Ġopponent", - "6126": "Ġtweet", - "6127": "ĠCode", - "6128": "Ġshop", - "6129": "Ġfly", - "6130": "Ġtalks", - "6131": "Ġbag", - "6132": "Phone", - "6133": "Ġaid", - "6134": "Ġplants", - "6135": "Ġ65", - "6136": "Ġattorney", - "6137": "arters", - "6138": "quest", - "6139": "ĠMagic", - "6140": "Ġbegins", - "6141": "Ġmyster", - "6142": "Ġenvironmental", - "6143": "Ġstorage", - "6144": "NN", - "6145": "Ġmarg", - "6146": "Ġske", - "6147": "Ġmetal", - "6148": "elly", - "6149": "Ġordered", - "6150": "Ġremained", - "6151": "Ġloved", - "6152": "Ġprompt", - "6153": "Ġupdated", - "6154": "Ġexperts", - "6155": "Ġwalking", - "6156": "Ġancient", - "6157": "Ġperformed", - "6158": "ATE", - "6159": "Ġneither", - "6160": "iency", - "6161": "Ġmanufacture", - "6162": "ĠPak", - "6163": "Ġselected", - "6164": "Ġmine", - "6165": "Ġultimately", - "6166": "Ġexplan", - "6167": "Ġlabel", - "6168": "ĠServices", - "6169": "ributed", - "6170": "Trump", - "6171": "Ġsyn", - "6172": "ĠUlt", - "6173": "SC", - "6174": "Ġmeat", - "6175": "Ġgiant", - "6176": "ĠWars", - "6177": "ĠON", - "6178": "Ġadm", - "6179": "Ġinterpret", - "6180": "Ġevening", - "6181": "Ġevil", - "6182": "ĠBoston", - "6183": "ĠWild", - "6184": "ĠÃ", - "6185": "ĠBitcoin", - "6186": "ĠAmazon", - "6187": "Dr", - "6188": "ĠInformation", - "6189": "Ġobviously", - "6190": "Ġadvanced", - "6191": "Photo", - "6192": "olar", - "6193": "Ġweather", - "6194": "Ġsymbol", - "6195": "Ġsole", - "6196": "Ġpotentially", - "6197": "oster", - "6198": "Ġoriginally", - "6199": "mun", - "6201": "aze", - "6202": "essions", - "6203": "Ġdeck", - "6204": "Ġstood", - "6205": "Ġyouth", - "6206": "ĠBern", - "6207": "Rep", - "6208": "ĠTest", - "6209": "Ġbasically", - "6210": "otic", - "6211": "Ġinvolve", - "6212": "olit", - "6213": "lyn", - "6214": "See", - "6215": "Ġaircraft", - "6216": "Ġconfirm", - "6217": "EW", - "6218": "Ġmessages", - "6219": "ĠRichard", - "6220": "Ġkit", - "6221": "Ġprohib", - "6222": "Ġvulner", - "6223": "isters", - "6224": "Ġexistence", - "6225": "Ġturning", - "6226": "ĠSP", - "6227": "Ġdesire", - "6228": "Ġflat", - "6229": "Ġment", - "6230": "season", - "6231": "anges", - "6232": "Ġneighborhood", - "6233": "ĠLake", - "6234": "ATION", - "6235": "Ġpointed", - "6236": "bur", - "6237": "Ġinnov", - "6238": "ucks", - "6239": "UL", - "6240": "Ġprofessor", - "6241": "Ġexpressed", - "6242": "AB", - "6243": "icious", - "6244": "Ġ2002", - "6245": "ĠDev", - "6246": "Ġsession", - "6247": "Ġbare", - "6248": "sen", - "6249": "Ġdiss", - "6250": "ĠCath", - "6251": "ĠPass", - "6252": "ĠPoint", - "6253": "Ġdoctor", - "6254": "orrow", - "6255": "ailed", - "6256": "ĠRub", - "6257": "ĠDC", - "6258": "ĠCharl", - "6259": "person", - "6260": "Ġwriter", - "6261": "ighters", - "6262": "ureau", - "6263": "Ġoblig", - "6264": "Ġrecorded", - "6265": "Ġbroke", - "6266": "Ġorders", - "6267": "ilty", - "6268": "Ġmotion", - "6269": "inity", - "6270": "law", - "6271": "adium", - "6272": "Ġimmigration", - "6273": "Ġcontrast", - "6274": "Ġbatt", - "6275": "Ġexcellent", - "6276": "Ġtechnical", - "6277": "ami", - "6278": "Ġtun", - "6279": "Ġcloud", - "6280": "ĠYear", - "6281": "geon", - "6282": "Ġcreation", - "6283": "Ġstrange", - "6284": "Ġauth", - "6285": "Ġfort", - "6286": "born", - "6287": "Ġextent", - "6288": "ĠToday", - "6289": "ĠClub", - "6290": "Ġrain", - "6291": "Ġsample", - "6292": "Ġaccepted", - "6293": "Ġtact", - "6294": "Ġfired", - "6295": "ĠSon", - "6296": "Ġstands", - "6297": "Ġboot", - "6298": "Ġ47", - "6299": "Ġstatements", - "6300": "Ġversions", - "6301": "Ġselling", - "6302": "ounded", - "6303": "Ġ1990", - "6304": "Ġweren", - "6305": "ĠWatch", - "6306": "Ġexperiment", - "6307": "Post", - "6308": "Ġretail", - "6309": "uled", - "6310": "Inst", - "6311": "unte", - "6312": "ãĥ¼", - "6313": "Ġdepart", - "6314": "Ġbond", - "6315": "ivery", - "6316": "ompl", - "6317": "Ġreaction", - "6318": "ĠSyrian", - "6319": "ĠPac", - "6320": "apped", - "6321": "aniel", - "6322": "DP", - "6323": "Ġresolution", - "6324": "Ġreact", - "6325": "Ġapproved", - "6326": "onom", - "6327": "mond", - "6328": "ĠOffic", - "6329": "---", - "6330": "Ġreplace", - "6331": "Ġtack", - "6332": "Ġsport", - "6333": "Ġchain", - "6334": "Ġemergency", - "6335": "rad", - "6336": "ĠPalestin", - "6337": "Ġ46", - "6338": "Ġautomatically", - "6339": "Ġroute", - "6340": "Ġpal", - "6341": "Ġbanks", - "6342": "ĠParis", - "6343": "ĠMedia", - "6344": "road", - "6345": "icing", - "6346": "ixt", - "6347": "isted", - "6348": "Ġgrew", - "6349": "Ġcoord", - "6350": "ĠWhere", - "6351": "omin", - "6352": "Ġsubs", - "6353": "��", - "6354": "Ġ±", - "6355": "Ġcorporate", - "6356": "Ġselection", - "6357": "noon", - "6358": "ĠReport", - "6359": "cs", - "6360": "cluding", - "6361": "orders", - "6362": "anche", - "6363": "ĠIts", - "6364": "Ġslowly", - "6365": "ĠEgypt", - "6366": "ĠAcc", - "6367": "Ġcolle", - "6368": "iques", - "6369": "EX", - "6370": "Ġattempts", - "6371": "url", - "6372": "ĠCross", - "6373": "Ġfindings", - "6374": "ĠSC", - "6375": "ĠOR", - "6376": "Ġindex", - "6377": "ensity", - "6378": "ĠWay", - "6379": "ĠLand", - "6380": "Ġshock", - "6381": "dis", - "6382": "Ġdynam", - "6383": "Ġcart", - "6384": "mosp", - "6385": "Since", - "6386": "iest", - "6387": "ĠBoy", - "6388": "Ġstorm", - "6389": "ĠContin", - "6391": "hew", - "6392": "ilit", - "6393": "Ġessential", - "6394": "iquid", - "6395": "Other", - "6396": "ivered", - "6397": "Ġreasonable", - "6398": "Act", - "6399": "Ġsubsequ", - "6400": "ĠPack", - "6401": "ĠFort", - "6402": "Ġconsidering", - "6403": "Ġuniversity", - "6404": "log", - "6405": "Ġmarried", - "6406": "Ġillust", - "6407": "ĠTrue", - "6408": "£ı", - "6409": "Ġnumerous", - "6410": "rastructure", - "6411": "Ġseriously", - "6412": "Ġreferred", - "6413": "ua", - "6414": "Ġconsistent", - "6415": "onna", - "6416": "ĠReal", - "6417": "ruption", - "6418": "ciples", - "6419": "Ġfacts", - "6421": "otes", - "6422": "erg", - "6423": "Then", - "6424": "Ġaccompl", - "6425": "Note", - "6426": "Ġrevenue", - "6427": "Ġpassing", - "6428": "Ġmal", - "6429": "een", - "6430": "ĠYet", - "6431": "Ġgather", - "6432": "terday", - "6433": "ework", - "6434": "ĠAuthor", - "6435": "Pe", - "6436": "Ġoptim", - "6437": "Ġrub", - "6438": "Ġè£ı", - "6439": "Ġunknown", - "6440": "stone", - "6441": "Ġunion", - "6442": "olve", - "6443": "Ġopportunities", - "6444": "Ġbrowser", - "6445": "ĠWal", - "6446": "ĠCost", - "6447": "Ġreporting", - "6448": "sts", - "6449": "pet", - "6450": "Ġsand", - "6451": "Ġsuddenly", - "6452": "Ġsurprising", - "6453": "ĠVR", - "6454": "Ġsomewhat", - "6455": "ĠBas", - "6456": "ulture", - "6457": "izz", - "6458": "ĠCD", - "6459": "Ġchallenges", - "6460": "Ġsettings", - "6461": "Ġexperiences", - "6462": "ĠFull", - "6463": "Ġcann", - "6464": "Ġreceiving", - "6465": "EST", - "6466": "Ġjoint", - "6467": "Ġcultural", - "6468": "Ġast", - "6470": "astern", - "6471": "ceived", - "6472": "ĠCru", - "6473": "Ġbull", - "6474": "pired", - "6475": "amm", - "6476": "Ġfacing", - "6477": "power", - "6478": "Ġboss", - "6479": "ĠHol", - "6480": "Ġinstr", - "6481": "Ġincreasingly", - "6482": "Ġshift", - "6483": "Ġstreets", - "6484": "ĠWilliams", - "6485": "abb", - "6486": "Ġlie", - "6487": "Ġlaugh", - "6488": "ĠCa", - "6489": "PL", - "6490": "Ġadults", - "6491": "Ġcustomer", - "6492": "Ġobtained", - "6493": "Ġsupporting", - "6494": "html", - "6495": "fire", - "6496": "Ġdetailed", - "6497": "Ġpicked", - "6498": "ĠRight", - "6499": "lder", - "6500": "EE", - "6501": "stood", - "6502": "ĠKim", - "6503": "Ġwire", - "6504": "Ġsight", - "6505": "Ġdevelopers", - "6506": "Ġpersons", - "6507": "Ġsad", - "6508": "Ġcup", - "6509": "Ġwarning", - "6510": "Ġboys", - "6511": "long", - "6512": "Ġbird", - "6513": "fo", - "6514": "Ġwal", - "6515": "Ġobserved", - "6516": "Ġzone", - "6517": "iveness", - "6518": "Ġchannel", - "6519": "cript", - "6520": "Ġrefused", - "6521": "ĠAgain", - "6522": "Ġsuc", - "6523": "Ġspokesman", - "6524": "ĠRef", - "6525": "rite", - "6526": "ouston", - "6527": "ãĥ³", - "6528": "ĠSher", - "6529": "Ġacts", - "6530": "ĠName", - "6531": "Ġstruggle", - "6532": "arry", - "6533": "ometimes", - "6534": "Ġdiscrim", - "6535": "HT", - "6536": "Ġcategory", - "6537": "Ġrealize", - "6538": "Ġemployee", - "6539": "ĠAfghan", - "6540": "enger", - "6541": "Ġguns", - "6542": "ĠSteve", - "6543": "ĠMot", - "6544": "ĠOl", - "6545": "oked", - "6546": "Ġthick", - "6547": "Ġfairly", - "6548": "illy", - "6549": "Ġsurve", - "6550": "ĠMat", - "6551": "weight", - "6552": "âĶ", - "6553": "Ġtroops", - "6554": "Ġagents", - "6555": "Ġbattery", - "6556": "Ġmotiv", - "6557": "á", - "6558": "Sec", - "6559": "den", - "6560": "overy", - "6561": "LS", - "6562": "Ġflu", - "6563": "Ġconfident", - "6564": "ĠOper", - "6565": "Ġempty", - "6566": "Ġphen", - "6567": "Ġsector", - "6568": "Ġexcited", - "6569": "Ġremote", - "6570": "aph", - "6571": "oen", - "6572": "Ġdestroyed", - "6573": "Ġmoral", - "6574": "ĠHP", - "6575": "ĠRon", - "6576": "Ġdress", - "6577": "ĠBat", - "6578": "Ġlit", - "6579": "ĠMS", - "6580": "Ġaf", - "6581": "HL", - "6582": "rum", - "6583": "isms", - "6584": "Ġshouldn", - "6585": "Ġsympt", - "6586": "ĠToronto", - "6587": "hetic", - "6588": "Ġcarbon", - "6589": "Ġinstalled", - "6590": "Ġviolent", - "6591": "Ġsolar", - "6592": "ja", - "6593": "Ġpractices", - "6594": "Ġride", - "6595": "ĠPenn", - "6596": "Ġimproved", - "6597": "Ġaudio", - "6598": "Ġbehavi", - "6599": "ĠPS", - "6600": "Ġeating", - "6601": "Data", - "6602": "ĠReview", - "6603": "pass", - "6604": "claim", - "6605": "uated", - "6606": "angers", - "6607": "chen", - "6608": "Ġproperties", - "6609": "Ġanywhere", - "6610": "Another", - "6611": "Ġblow", - "6612": "ĠJackson", - "6613": "Ġproud", - "6614": "Ġplane", - "6615": "lines", - "6616": "Ġsquare", - "6617": "Ġproof", - "6618": "ansas", - "6619": "Ġtalked", - "6620": "makers", - "6621": "Ġsister", - "6622": "Ġholds", - "6623": "Ġresident", - "6624": "Ġ==", - "6625": "Ġresistance", - "6626": "Ġsplit", - "6627": "Ġprosecut", - "6628": "Ġconfidence", - "6629": "resents", - "6630": "Ġcuts", - "6631": "Ġexception", - "6632": "Ġzero", - "6633": "Getty", - "6634": "Ġcopyright", - "6635": "Ġtotally", - "6636": "ormal", - "6637": "ifications", - "6638": "ĠAustralian", - "6639": "Ġsick", - "6640": "Ġ150", - "6641": "Ġhousehold", - "6642": "Ġfees", - "6643": "Ġdrivers", - "6644": "ogen", - "6645": "ĠNY", - "6646": "Ġnecessarily", - "6647": "Ġregulations", - "6648": "earing", - "6649": "sl", - "6650": "Ġperspective", - "6651": "care", - "6652": "icial", - "6653": "His", - "6654": "Ġescape", - "6655": "Ġsurprised", - "6656": "ĠVan", - "6657": "urrent", - "6658": "Ġvac", - "6660": "ĠThus", - "6661": "Ġemphas", - "6662": "ĠChampions", - "6663": "ĠIce", - "6664": "Ġnarr", - "6665": "Ġheads", - "6666": "Ġcausing", - "6667": "bel", - "6668": "fortunately", - "6669": "ĠMa", - "6670": "Ġtargets", - "6671": "cipl", - "6672": "Ġafternoon", - "6673": "Ġadds", - "6674": "ĠMaybe", - "6675": "ĠFour", - "6676": "essed", - "6677": "plete", - "6678": "Ġusual", - "6679": "cho", - "6680": "ingu", - "6681": "Ġwithd", - "6682": "ĠEnergy", - "6683": "ĠEconom", - "6684": "OO", - "6685": "Ġarticles", - "6686": "Ġinjured", - "6687": "Ġmanage", - "6688": "Ġexplains", - "6689": "Ġdiagn", - "6690": "Rec", - "6691": "atures", - "6692": "Ġlinked", - "6693": "Ġdiscussed", - "6694": "Ġexplo", - "6695": "Ġoccasion", - "6696": "athan", - "6697": "Ġopposite", - "6698": "Ġfaces", - "6699": "Ġdenied", - "6700": "ĠKnight", - "6701": "Ġnut", - "6702": "Ġapproximately", - "6703": "Ġdisappoint", - "6704": "onymous", - "6705": "ĠBest", - "6706": "ĠLo", - "6707": "ĠHy", - "6708": "ĠAff", - "6709": "Ġvoting", - "6710": "anwhile", - "6711": "ĠIII", - "6712": "Ġinstitutions", - "6713": "agram", - "6714": "ĠDaily", - "6715": "Ġdrag", - "6716": "Ġnearby", - "6717": "Ġguilty", - "6718": "Ġconver", - "6719": "Pre", - "6720": "ship", - "6721": "Ġreward", - "6722": "Ġphilosoph", - "6723": "ĠSS", - "6724": "ugh", - "6725": "Ġapps", - "6726": "friend", - "6727": "Ġupper", - "6728": "Ġadvert", - "6729": "Ġsnow", - "6730": "Ġfrust", - "6731": "Ġourselves", - "6732": "Fr", - "6733": "ĠDie", - "6734": "ampion", - "6735": "Ġdismiss", - "6736": "Ġcere", - "6737": "Ġsignal", - "6738": "from", - "6739": "Ġ).", - "6740": "Ġ52", - "6741": "Ġcrimes", - "6742": "itors", - "6743": "estival", - "6744": "useum", - "6745": "Ġcouncil", - "6746": "ĠSaud", - "6747": "May", - "6748": "ĠGun", - "6749": "ician", - "6750": "ether", - "6751": "Ġsufficient", - "6752": "ĠHen", - "6753": "sole", - "6754": "Ġhistorical", - "6755": "ĠFar", - "6756": "ĠTurn", - "6757": "Ġpin", - "6758": "Ġsucceed", - "6759": "mat", - "6760": "lymp", - "6761": "Ġtradition", - "6762": "ĠOk", - "6763": "Ġcro", - "6764": "Ġdescription", - "6765": "alle", - "6766": "Ġsky", - "6767": "Te", - "6768": "Ġwidely", - "6769": "Ġwave", - "6770": "Ġdefinition", - "6771": "ĠJews", - "6772": "Ġcycle", - "6773": "Ġrefere", - "6774": "Ġbrings", - "6775": "usal", - "6776": "Ġalive", - "6777": "Ġfrequently", - "6778": "Ġintention", - "6779": "ĠControl", - "6780": "lv", - "6781": "ystem", - "6782": "Ġprivacy", - "6783": "gent", - "6784": "rence", - "6785": "ĠQuest", - "6786": "ĠChristmas", - "6787": "Ġrail", - "6788": "Ġcooper", - "6789": "Ġtested", - "6790": "ĠCapt", - "6791": "asks", - "6792": "Ġcomfortable", - "6793": "Ġdelivered", - "6794": "scape", - "6795": "Ġdepth", - "6796": "ĠGOP", - "6797": "Ġwrites", - "6798": "Ġassets", - "6799": "Ġsav", - "6800": "iments", - "6801": "Ġtransition", - "6802": "Ġartist", - "6803": "ĠLook", - "6804": "Ġlob", - "6805": "Ġcomponents", - "6806": "arity", - "6807": "Ġwalked", - "6808": "Ġroot", - "6809": "Ġparticipants", - "6810": "Ġnoticed", - "6811": "Ġresc", - "6812": "Ġnav", - "6813": "ĠAdminist", - "6814": "da", - "6815": "utral", - "6816": "plate", - "6817": "Ġimportance", - "6818": "Ġassert", - "6819": "iously", - "6820": "cription", - "6821": "Ġinjuries", - "6822": "ĠCheck", - "6823": "Ġregistered", - "6824": "Ġintent", - "6825": "Ġmissed", - "6826": "ographic", - "6827": "Ġsentence", - "6828": "ounter", - "6829": "Ġassistance", - "6830": "evin", - "6831": "Ġdatabase", - "6832": "Ġbuildings", - "6833": "Ġclassic", - "6834": "Ġthinks", - "6835": "ĠOhio", - "6836": "Pr", - "6837": "ugg", - "6838": "Ġfee", - "6839": "pan", - "6840": "Ġeffectively", - "6841": "Ġfacility", - "6842": "Ġbear", - "6843": "Ġchapter", - "6844": "Ġdogs", - "6845": "ĠColumb", - "6846": "Ġlatter", - "6847": "itial", - "6848": "Ġadmitted", - "6849": "TV", - "6850": "ĠGeorg", - "6851": "Ġposts", - "6852": "\\\\", - "6853": "Ġlawyer", - "6854": "Ġequival", - "6855": "Ġmand", - "6856": "Ġcontrolled", - "6857": "ĠWalk", - "6858": "ĠAndrew", - "6859": "Ġmenu", - "6860": "amental", - "6861": "Ġprotected", - "6862": "va", - "6863": "Ġadministr", - "6864": "oral", - "6865": "Ġrein", - "6866": "ĠSar", - "6867": "Ġamounts", - "6868": "Ġnative", - "6869": "ĠMoon", - "6870": "Ġrepresents", - "6871": "Ġabandon", - "6872": "Ġcarrying", - "6873": "Ġtank", - "6874": "mary", - "6875": "Ġdeclared", - "6876": "Tube", - "6877": "Ġhat", - "6878": "Ġpunish", - "6879": "ellect", - "6880": "mes", - "6881": "Ġuniverse", - "6882": "ĠRod", - "6883": "phy", - "6884": "Ġinfrastructure", - "6885": "Ġ51", - "6886": "Ġopposed", - "6887": "ownt", - "6888": "ca", - "6889": "ĠMake", - "6890": "Ġhardware", - "6891": "Ġcoffee", - "6892": "Rel", - "6893": "bal", - "6894": "world", - "6895": "ĠSaf", - "6896": "ĠSea", - "6897": "inals", - "6898": "Ġowned", - "6899": "Ġhall", - "6900": "ersion", - "6901": "Ġdescribe", - "6902": "ĠPot", - "6903": "Ġportion", - "6904": "Ġatmosp", - "6905": "Ġgovernments", - "6906": "Ġdepending", - "6907": "Ġoffense", - "6908": "Ġtrick", - "6909": "awa", - "6910": "ĠLine", - "6911": "ĠVis", - "6912": "ĠHard", - "6913": "ĠOrig", - "6914": "ĠClick", - "6915": "Ġdesk", - "6916": "ĠValley", - "6917": "ĠSov", - "6918": "Ġmovies", - "6919": "Ġremark", - "6920": "Ġmail", - "6921": "Ġconscious", - "6922": "Ġruling", - "6923": "ĠRights", - "6924": "Ġmedic", - "6925": "hent", - "6926": "ĠWomen", - "6927": "><", - "6928": "Ġreplaced", - "6929": "ĠPrem", - "6930": "ĠThanks", - "6931": "Ġrenew", - "6932": "ĠBall", - "6933": "iform", - "6934": "Ġshots", - "6935": "Comm", - "6936": "Ġarmed", - "6937": "Ġconstant", - "6938": "Ġtaste", - "6939": "Ġrealized", - "6940": "Ġbuff", - "6941": "Ġmo", - "6942": "Ġefficient", - "6943": "Most", - "6944": "oration", - "6945": "ifies", - "6946": "Ġcommunication", - "6947": "Ġflood", - "6948": "Ġconsequences", - "6949": "Ġanyway", - "6950": "igg", - "6951": "ĠGM", - "6952": "ĠThank", - "6953": "Ġiron", - "6954": "Ġevolution", - "6955": "ĠCop", - "6956": "twitter", - "6957": "Ġ95", - "6958": "Ġrelationships", - "6959": "adel", - "6960": "ĠYoung", - "6961": "Ġproposal", - "6962": "ayers", - "6963": "uilding", - "6964": "ĠHot", - "6965": "ORE", - "6966": "cos", - "6967": "Ġcollabor", - "6968": "PG", - "6969": "axy", - "6970": "Ġknowing", - "6971": "Ġsupports", - "6972": "owed", - "6973": "Ġcontrols", - "6974": "Ġmerely", - "6975": "umer", - "6976": "Ġathlet", - "6977": "Ġfashion", - "6978": "path", - "6979": "Ġgift", - "6980": "Ġera", - "6981": "AND", - "6982": "Ġkinds", - "6983": "ĠKorean", - "6984": "Ġlegit", - "6985": "ulous", - "6986": "Ġessentially", - "6987": "Ġtherap", - "6988": "nic", - "6989": "Ġsuffered", - "6990": "Ġhur", - "6991": "Ġpromise", - "6992": "Ġexcess", - "6993": "Ġoverw", - "6994": "Ġprime", - "6995": "ĠHouston", - "6996": "erry", - "6997": "ĠMs", - "6998": "RS", - "7000": "Ġstores", - "7001": "ĠOlymp", - "7002": "Ġjourney", - "7003": "Although", - "7004": "Sub", - "7005": "ĠEduc", - "7006": "ĠChapter", - "7007": "Ġrequests", - "7008": "Ġconsumers", - "7009": "Ġtiny", - "7010": "Ġisol", - "7011": "ĠFair", - "7012": "ba", - "7013": "ĠYOU", - "7014": "Ġcrash", - "7015": "celer", - "7016": "Ġemotional", - "7017": "Ġgoods", - "7018": "Ġelected", - "7019": "Ġmoder", - "7020": "ĠLinux", - "7021": "Ġblocks", - "7022": "Ġisland", - "7023": "ĠSociety", - "7024": "Ġelections", - "7025": "Ġbroadcast", - "7026": "Ġcheap", - "7027": "Ġnations", - "7028": "Ġseasons", - "7030": "Ġwaste", - "7031": "ĠSat", - "7032": "Ġfields", - "7033": "employ", - "7034": "Ġprofile", - "7035": "Ġauthors", - "7036": "ALL", - "7037": "ĠGra", - "7038": "west", - "7039": "ĠTy", - "7040": "Ġdeaths", - "7041": "Ġvacc", - "7042": "Ġformed", - "7043": "Ġdu", - "7044": "Ġongoing", - "7045": "ĠMuslims", - "7046": "elf", - "7047": "igure", - "7048": "Ġassume", - "7049": "ĠUkraine", - "7050": "water", - "7051": "Ġcoast", - "7052": "Ġvoted", - "7053": "gor", - "7054": "ĠAS", - "7055": "ĠMichigan", - "7056": "aza", - "7057": "ĠArm", - "7058": "iro", - "7059": "Ġflex", - "7060": "asters", - "7061": "''", - "7062": "Ġwelcome", - "7063": "arl", - "7064": "Ġlocations", - "7065": "igation", - "7066": "ĠFil", - "7067": "Ġbuying", - "7068": "Ġarchitect", - "7069": "Ġharder", - "7070": "ĠCub", - "7071": "Ġinterface", - "7072": "Ġrestaurant", - "7073": "Ġdiscover", - "7074": "Ġexceed", - "7075": "Ġfavour", - "7076": "gery", - "7077": "Ġduty", - "7078": "Ġpitch", - "7079": "ador", - "7080": "ĠMach", - "7081": "boy", - "7082": "Ġresponded", - "7083": "Ġextended", - "7084": "hers", - "7085": "Many", - "7086": "raid", - "7087": "ifer", - "7088": "ĠIns", - "7089": "Ser", - "7090": "Ġmedium", - "7091": "she", - "7092": "ĠSports", - "7093": "Ġmagazine", - "7094": "utation", - "7095": "Ġlimits", - "7096": "ĠGall", - "7097": "Ġexternal", - "7098": "razil", - "7099": "Ġyounger", - "7100": "tle", - "7101": "Ġremind", - "7102": "ĠCON", - "7103": "Ġimmediate", - "7104": "Ġhidden", - "7105": "Ġvolunte", - "7106": "Ġsimpl", - "7107": "odcast", - "7108": "Ġphase", - "7109": "dr", - "7110": "Ġplot", - "7111": "Ġexposure", - "7112": "RI", - "7113": "ograp", - "7114": "vin", - "7115": "anish", - "7116": "ĠAcad", - "7117": "ĠEngine", - "7118": "Ġexpansion", - "7119": "ĠPay", - "7120": "Your", - "7121": "Ġpushed", - "7122": "ĠEll", - "7123": "ĠHead", - "7124": "Ġmarketing", - "7125": "ĠAC", - "7126": "ket", - "7127": "Ġhits", - "7128": "Ġgro", - "7129": "ĠAge", - "7130": "ĠScot", - "7131": "][", - "7132": "Ġstim", - "7133": "ĠiPhone", - "7134": "ĪĴ", - "7135": "Ġnarrow", - "7136": "ĠGetty", - "7137": "ĠTurkey", - "7138": "Ġperfectly", - "7139": "Ġenable", - "7140": "utch", - "7141": "Ġprecise", - "7142": "Ġregime", - "7143": "Ġshif", - "7144": "Ġcompens", - "7145": "gun", - "7146": "div", - "7147": "Ġchosen", - "7148": "ĠKen", - "7149": "Any", - "7150": "Ġtrees", - "7151": "Ġrecommended", - "7152": "ĠRen", - "7153": "uable", - "7154": "ĠHT", - "7155": "Follow", - "7156": "EG", - "7157": "ĠHand", - "7158": "ĠKenn", - "7159": "Ġarguments", - "7160": "Ġexists", - "7161": "Ġbike", - "7162": "ĠConserv", - "7163": "Ġbreaking", - "7164": "ĠGar", - "7165": "Ġcrazy", - "7166": "Ġvirtual", - "7167": "aylor", - "7168": "ixel", - "7169": "Ġ1980", - "7170": "Ġpermission", - "7171": "ĠSeries", - "7172": "Ġconsumer", - "7173": "Ġclosely", - "7174": "called", - "7175": "Ġ54", - "7176": "Ġhopes", - "7177": "Ġarray", - "7178": "ĠWin", - "7179": "ĠLabour", - "7180": "Ġspons", - "7181": "ĠIre", - "7182": "Ġpow", - "7183": "Ġreaders", - "7184": "Ġemployment", - "7185": "Ġcreature", - "7186": "Ġresulting", - "7187": "Ġaccurate", - "7188": "Ġmoments", - "7189": "Ġargued", - "7190": "Ġped", - "7191": "During", - "7192": "Ġ53", - "7193": "ĠTal", - "7194": "Ġsought", - "7195": "Ġsuffering", - "7196": "Ġicon", - "7197": "lee", - "7198": "Ġ($", - "7199": "alian", - "7200": "°", - "7201": "Ġpra", - "7202": "Ġbonus", - "7203": "(\"", - "7204": "ko", - "7205": "Ġacting", - "7206": "DE", - "7207": "fall", - "7208": "Ġcomparison", - "7209": "Ġsmooth", - "7210": "ĠNAS", - "7211": "upp", - "7212": "ĠJoseph", - "7213": "eping", - "7214": "ĠTake", - "7215": "ĠMid", - "7216": "Ġsending", - "7217": "fast", - "7218": "ĠFall", - "7219": "Ġdealing", - "7220": "user", - "7221": "ĠOrgan", - "7222": "Co", - "7223": "Ġattached", - "7224": "Ġsees", - "7225": "%.", - "7226": "Ġtypical", - "7227": "ART", - "7228": "Ġfinds", - "7229": "ĠAsia", - "7230": "umin", - "7231": "ĠCore", - "7232": "ĠEnt", - "7233": "inent", - "7234": "uce", - "7235": "ĠBlood", - "7236": "ĠNever", - "7237": "Ġemails", - "7238": "Ġhighlight", - "7239": "Ġconfront", - "7240": "atus", - "7241": "uted", - "7242": "Ġunus", - "7243": "Ġtopic", - "7244": "ĠAdam", - "7245": "Ġble", - "7246": "ati", - "7247": "Ġunderstood", - "7248": "Set", - "7249": "struct", - "7250": "TP", - "7251": "Ġmob", - "7252": "aa", - "7253": "ĠStart", - "7254": "pected", - "7255": "sell", - "7256": "Ġdedicated", - "7257": "ĠCA", - "7258": "uan", - "7259": "Ġsongs", - "7260": "escription", - "7261": "Ġtech", - "7262": "Ġrape", - "7263": "Ġaside", - "7264": "Ġgrant", - "7265": "Ġ56", - "7266": "sub", - "7267": "Ġargue", - "7268": "Ġcontaining", - "7269": "Ġschedule", - "7270": "Ġliberal", - "7271": "Ġpublicly", - "7272": "Ġheavily", - "7273": "ĠUt", - "7274": "iner", - "7275": "ĠSection", - "7276": "ĠCare", - "7277": "weet", - "7278": "ls", - "7279": "Dis", - "7280": "âĶĢ", - "7281": "ĠFollow", - "7282": "Back", - "7283": "ĠIT", - "7284": "Ġbes", - "7285": "ji", - "7286": "ĠHit", - "7287": "ested", - "7288": "Ġeverybody", - "7289": "ĠSwed", - "7290": "Ġfemin", - "7291": "Ġfacilities", - "7292": "Ġconven", - "7293": "Comp", - "7294": "ĠOS", - "7295": "core", - "7296": "Ġanx", - "7297": "Ġdivision", - "7298": "ĠCam", - "7299": "ĠStan", - "7300": "mates", - "7301": "Ġexplore", - "7302": "plom", - "7303": "Ġshares", - "7304": "pload", - "7305": "anes", - "7306": "Ġideal", - "7307": "eters", - "7308": "ĠBase", - "7309": "Ġplastic", - "7310": "Ġdistinct", - "7311": "ĠNetwork", - "7312": "ĠSeattle", - "7313": "Ġtrading", - "7314": "ensus", - "7315": "intend", - "7316": "Ġexhib", - "7317": "Ġinitially", - "7318": "ĠFood", - "7319": "Ġthousand", - "7320": "ĠBusiness", - "7321": "acter", - "7322": "Ġparagraph", - "7323": "Ġroughly", - "7324": "Ġwww", - "7325": "Ġcreative", - "7326": "ĠConf", - "7327": "Ġconsumption", - "7328": "Ġfilms", - "7329": "agan", - "7330": "Ġobtain", - "7331": "Ġtall", - "7332": "Ġtor", - "7333": "Ġacknowled", - "7334": "Ġgrown", - "7335": "alo", - "7336": "KE", - "7337": "Ġ400", - "7338": "enders", - "7339": "taining", - "7340": "UG", - "7341": "Ġsuicide", - "7342": "Ġwatched", - "7343": "ĠList", - "7344": "ali", - "7345": "rehens", - "7346": "Ġsurrounding", - "7347": "Ġpip", - "7348": "Ġflying", - "7349": "ĠJava", - "7350": "ordan", - "7351": "Ġserving", - "7352": "inations", - "7353": "post", - "7354": "Ġsho", - "7355": "Av", - "7356": "Ġjail", - "7357": "zy", - "7358": "Ġ1999", - "7359": "Ġ>", - "9610": "orous", - "9611": "Ġfirms", - "9612": "screen", - "9613": "una", - "9614": "Ġembarrass", - "9615": "ulse", - "9616": "Ġletting", - "9617": "Ġthrew", - "9618": "iley", - "9619": "Ġchannels", - "9620": "lan", - "9621": "ĠVegas", - "9622": "Ġsear", - "9623": "Ġfantastic", - "9624": "arre", - "9625": "uzzle", - "9626": "ĠDer", - "9627": "Those", - "9628": "Ġswing", - "9629": "Ġsheet", - "9630": "index", - "9631": "cover", - "9632": "ogan", - "9633": "Ġvariables", - "9634": "ĠTech", - "9635": "Ġspoken", - "9636": "achel", - "9637": "ĠDa", - "9638": "ĠMountain", - "9639": "Ġloaded", - "9640": "Ġfootage", - "9641": "version", - "9642": "Ġunl", - "9643": "ĠPhoenix", - "9644": "Ġthrowing", - "9645": "Ġfiring", - "9646": "Ġtracking", - "9647": "Ġwidth", - "9648": "Ġstruggling", - "9649": "rooms", - "9650": "otion", - "9651": "Ġmonthly", - "9652": "ĠServer", - "9653": "Ġeggs", - "9654": "open", - "9655": "MC", - "9656": "Ġ1993", - "9657": "Ġhired", - "9658": "Ġstayed", - "9659": "ĠAllen", - "9660": "Ġstro", - "9661": "Ġ98", - "9662": "step", - "9663": "ĠTurkish", - "9664": "Ġfabric", - "9665": "isting", - "9666": "ĠDom", - "9667": "Ġdates", - "9668": "Ġpron", - "9669": "Ġbasketball", - "9670": "Ġlucky", - "9671": "ĠArabia", - "9672": "Ġassumed", - "9673": "esty", - "9674": "Ġaffairs", - "9675": "Ġglad", - "9676": "ĠIndeed", - "9677": "ĠFA", - "9678": "ĠWord", - "9679": "Ġjoining", - "9680": "ifice", - "9681": "pread", - "9682": "irts", - "9683": "ĠSelect", - "9684": "Ġpopulations", - "9685": "aware", - "9686": "Ġnose", - "9687": "Ġcomplaints", - "9688": "start", - "9689": "Ġscoring", - "9690": "Thanks", - "9691": "Ġmining", - "9692": "Ġvisitors", - "9693": "SH", - "9694": "Ġdamaged", - "9695": "Ġcharacteristics", - "9696": "ĠPent", - "9697": "DC", - "9698": "Ġ83", - "9699": "ĠSix", - "9700": "rates", - "9701": "Ġflags", - "9702": "ĠBrew", - "9703": "dog", - "9704": "Mark", - "9705": "////", - "9706": "Ġexecution", - "9707": "Ġjoke", - "9708": "phones", - "9709": "Ġtestimony", - "9710": "Ġobst", - "9711": "QL", - "9712": "ĠCut", - "9713": "Ġstudied", - "9714": "ĠNintendo", - "9715": "icket", - "9716": "ĠNBC", - "9717": "Ġlad", - "9718": "ĠBra", - "9719": "ĠMoh", - "9720": "Ġkernel", - "9721": "Ġoverwhelming", - "9722": "Ġaged", - "9723": "Ġapplicable", - "9724": "ĠCond", - "9725": "Ġroads", - "9726": "ĠBlock", - "9727": "made", - "9728": "odge", - "9729": "Ġcommands", - "9730": "Ġoffices", - "9731": "veland", - "9732": "Ġtut", - "9733": "Ġreceiver", - "9734": "ĠFro", - "9735": "Ġshopping", - "9736": "ĠiP", - "9737": "ĠStre", - "9738": "ĠABC", - "9739": "Ġentertainment", - "9740": "ĠBow", - "9741": "orted", - "9742": "Mc", - "9743": "Ġreads", - "9744": "grad", - "9745": "ĠCollect", - "9746": "ĠâĪĴ", - "9747": "ĠCapital", - "9748": "ederation", - "9749": "Ġemployer", - "9750": "Ġinvolvement", - "9751": "Ġanxiety", - "9752": "alia", - "9753": "Ġroof", - "9754": "ĠAmong", - "9755": "ĠDemocrat", - "9756": "Ġstats", - "9757": "ĠVill", - "9758": "Ġconstitutional", - "9759": "Ġreferring", - "9760": "itty", - "9761": "Ġtackle", - "9762": "outube", - "9763": "Ġbacked", - "9764": "ĠHong", - "9765": "ĠBroad", - "9766": "Ġele", - "9767": "ĠOtt", - "9768": "Ġ1992", - "9769": "hour", - "9770": "achusetts", - "9771": "Cal", - "9772": "Ġdefeated", - "9773": "Ġ81", - "9774": "esp", - "9775": "Ġseemingly", - "9776": "was", - "9777": "ĠJenn", - "9778": "ĠKurd", - "9779": "Ġgene", - "9780": "Ġdiscount", - "9781": "Ret", - "9782": "ECT", - "9783": "();", - "9784": "Ġclubs", - "9785": "Ġsid", - "9786": "ĠMarsh", - "9787": "Check", - "9788": "Ġpp", - "9789": "ĠEag", - "9790": "idespread", - "9791": "Ġbeings", - "9792": "FT", - "9793": "Ġintroduction", - "9794": "ĠChange", - "9795": "ARD", - "9796": "Ġ110", - "9797": "adows", - "9798": "ierce", - "9799": "Ġmeal", - "9800": "author", - "9801": "ĠBang", - "9802": "lahoma", - "9803": "Ġranks", - "9805": "????", - "9806": "max", - "9807": "Ġcollapse", - "9808": "Ġopens", - "9809": "Ġecho", - "9810": "Ġsoph", - "9811": "Ġracist", - "9812": "Ġenormous", - "9813": "Ġwaves", - "9814": "Ġtap", - "9815": "Ġcomprehensive", - "9816": ".--", - "9817": "ĠRoy", - "9818": "Ġfarmers", - "9819": "Related", - "9820": "aired", - "9821": "rones", - "9822": "ĠCrim", - "9823": "Ġproportion", - "9824": "Ġdesigns", - "9825": "Ġnegotiations", - "9826": "Ġvirtually", - "9827": "ĠBatman", - "9828": "Ġwarn", - "9829": "Ġlegitimate", - "9830": "mate", - "9831": "Ġconvention", - "9832": ",,", - "9833": "netic", - "9834": "ĠSD", - "9835": "Ġconsistently", - "9836": "Ġcompensation", - "9837": "Ġpunishment", - "9838": "Ġye", - "9839": "Ġtie", - "9840": "ĠBureau", - "9841": "irlf", - "9842": "ĠBu", - "9843": "ĠAren", - "9844": "ĠPhilipp", - "9845": "Ġknife", - "9846": "Ġmemories", - "9847": "ĠRoss", - "9848": "Ġangle", - "9849": "Ġ86", - "9850": "ĠThunder", - "9851": "Ġrend", - "9852": "ĠTour", - "9853": "Ġcounts", - "9854": "sung", - "9855": "ĠImp", - "9856": "Ġeducational", - "9857": "Ġaccessible", - "9858": "COM", - "9859": "Ġdrew", - "9860": "yer", - "9861": "Gl", - "9862": "amine", - "9863": "ORT", - "9864": "OB", - "9865": "IB", - "9866": "master", - "9867": "Ġtrials", - "9868": "ogy", - "9869": "har", - "9870": "ĠTrust", - "9871": "Ġpreferred", - "9872": "irlfriend", - "9873": "ĠNev", - "9874": "Ġbin", - "9875": "Ġcow", - "9876": "Page", - "9877": "Ġsignature", - "9878": "ĠBL", - "9880": "Ġretired", - "9881": "Ġbytes", - "9882": "Ġneighb", - "9883": "ĠLegend", - "9884": "Ġdevast", - "9885": "Ġsuspected", - "9886": "isons", - "9887": "ĠPokémon", - "9888": "scale", - "9889": "Ġcapabilities", - "9890": "Ġrevel", - "9891": "Ġcheese", - "9892": "dy", - "9893": "igrant", - "9894": "Ġfailing", - "9895": "bits", - "9896": "ĠHeroes", - "9897": "ĠGhost", - "9898": "ĠScient", - "9899": "Ġappointed", - "9900": "uri", - "9901": "Ġinstitution", - "9902": "Ġexpanded", - "9903": "greg", - "9904": "Ġmonitoring", - "9905": "Ġpodcast", - "9906": "Ġcoalition", - "9907": "Ġ96", - "9908": "Jo", - "9909": "Ġstolen", - "9910": "ĠSab", - "9911": "Ġstops", - "9912": "Ġholiday", - "9913": "Ġintr", - "9914": "Car", - "9915": "Black", - "9916": "ĠLGBT", - "9917": "Ġwarming", - "9918": "ĠAnderson", - "9919": "Ġ89", - "9920": "Ġproducer", - "9921": "Med", - "9922": "Ġaccuracy", - "9923": "ĠMarvel", - "9924": "izabeth", - "9925": "ĠPatrick", - "9926": "mony", - "9927": "Ġmini", - "9928": "acles", - "9929": "Ġovert", - "9930": "they", - "9931": "Ġmembership", - "9932": "ĠVen", - "9933": "Ġexch", - "9934": "Ġremoval", - "9935": "ĠDave", - "9936": "TY", - "9937": "mad", - "9938": "ĠFind", - "9939": "Ġadequ", - "9940": "Ġec", - "9941": "Ġteeth", - "9942": "Ġemotion", - "9943": "Ġperm", - "9944": "Ġsolely", - "9945": "db", - "9946": "Ġextraord", - "9947": "IGHT", - "9948": "cal", - "9949": "Ġguidelines", - "9950": "Ġdying", - "9951": "Ġsuspended", - "9952": "ĠPremier", - "9953": "ĠAnthony", - "9954": "elve", - "9955": "Ġdad", - "9956": "ĠEth", - "9957": "ĠFootball", - "9958": "Ġabandoned", - "9959": "Ġ<<", - "9960": "Ġmarch", - "9961": "Ġhorror", - "9962": "â̦\"", - "9963": "Ġchildhood", - "9964": "Ġcampaigns", - "9965": "Ġlunch", - "9966": "ĠAlbert", - "9967": "block", - "9968": "âĸĪâĸĪ", - "9969": "ounding", - "9970": "Ġbone", - "9971": "organ", - "9972": "aders", - "9973": "ĠFlash", - "9974": "ĠDrive", - "9975": "Ġtonight", - "9976": "Ġwars", - "9977": "ĠFL", - "9978": "Ġformation", - "9979": "const", - "9980": "News", - "9981": "Ġcompe", - "9982": "orious", - "9983": "ĠStaff", - "9984": "Ġdiscussions", - "9985": "ĠProtection", - "9986": "ĠJam", - "9987": "Ġcriteria", - "9988": "Ġinstallation", - "9989": "Ġaccomplish", - "9990": "izza", - "9991": "Ġpublisher", - "9992": "Ġrescue", - "9993": "ĠTry", - "9994": "ULL", - "9995": "ĠSom", - "9996": "ĠHop", - "9997": "oret", - "9998": "ths", - "9999": "ordon", - "10000": "Ġpocket", - "10001": "ĠInv", - "10002": "Download", - "10003": "ĠCrime", - "10004": "Ġbene", - "10005": "ĠGuide", - "10006": "ĠAssembly", - "10007": "Ġparameters", - "10008": "IE", - "10009": "ĠAlexander", - "10010": "Ġconcert", - "10011": "ĠSche", - "10012": "Ġshoes", - "10013": "Ġvisiting", - "10014": "Ġrecall", - "10015": "Ġbub", - "10016": "Ġrural", - "10017": "Ġconcrete", - "10018": "ĠRos", - "10019": "Next", - "10020": "Russ", - "10021": "Ġloans", - "10022": "ĠShield", - "10023": "Ġtrem", - "10024": "hemat", - "10025": "kg", - "10026": "ĠHarris", - "10027": "isition", - "10028": "ĠMove", - "10029": "ĠFC", - "10030": "Ġfate", - "10031": "ĠCho", - "10032": "Ġtired", - "10033": "Ġprincipal", - "10034": "hist", - "10035": "iences", - "10036": "athy", - "10037": "Ġsevent", - "10038": "Ġmood", - "10039": "Ġstrategic", - "10040": "Ġdiseases", - "10041": "Ġforum", - "10042": "Ġtempor", - "10043": "Ġheadquarters", - "10044": "Par", - "10045": "ige", - "10046": "flix", - "10047": "Ġguitar", - "10048": "Ġ94", - "10049": "Only", - "10050": "Ġreleases", - "10051": "roph", - "10052": "================================", - "10053": "Ġ600", - "10054": "ĠContinue", - "10055": "igate", - "10056": "ĠCrit", - "10057": "system", - "10058": "Ġdisabled", - "10059": "Ġunexpected", - "10060": "ithub", - "10061": "Ġunclear", - "10062": "ĠEst", - "10063": "Ġcontrad", - "10064": "Ġstrategies", - "10065": "ventures", - "10066": "Ġpassage", - "10067": "AME", - "10068": "Ġimproving", - "10069": "Ġreveals", - "10070": "Ġdecrease", - "10071": "ova", - "10072": "Ġannoy", - "10073": "ĠShort", - "10074": "ĠLibrary", - "10075": "Ġcyber", - "10076": "nell", - "10077": "ĠHur", - "10078": "ĠCB", - "10079": "Ġphotograp", - "10080": "UI", - "10081": "Ġsed", - "10082": "Ge", - "10083": "Ġ87", - "10084": "Ġdiverse", - "10085": "Ġencouraged", - "10086": "Ġconspiracy", - "10087": "Ġbirds", - "10088": "Ġoperator", - "10089": "Ġhandful", - "10090": "Ġclassified", - "10091": "?)", - "10092": "Ġdramatic", - "10093": "Ġinvestigators", - "10094": "ito", - "10095": "Ġwidespread", - "10096": "ĠRoom", - "10097": "----------------------------------------------------------------", - "10098": "Ġcollective", - "10099": "Ġjournalist", - "10100": "String", - "10101": "Ġtemperatures", - "10102": "ila", - "10103": "Ġguid", - "10104": "Ġinspect", - "10105": "Ġmissile", - "10106": "ĠMayor", - "10107": "Ġmanual", - "10108": "Ġsimultane", - "10109": "Ġratings", - "10110": "Ġsuck", - "10111": "Ġ97", - "10112": "Ġuniversal", - "10113": "Ġpharm", - "10114": "Ġdisrupt", - "10115": "iano", - "10116": "AV", - "10117": "Ġft", - "10118": "Ġstatist", - "10119": "olds", - "10120": "ĠWalker", - "10121": "php", - "10122": "Ġundert", - "10123": "ĠLas", - "10124": "ishop", - "10125": "ntil", - "10126": "reshold", - "10127": "ĠWhether", - "10128": "Ms", - "10129": "Ġdeny", - "10130": "ĠCloud", - "10131": "Ġprovider", - "10132": "Ġsurviv", - "10133": "ĠUpdate", - "10134": "has", - "10135": "Ġmistakes", - "10136": "charge", - "10137": "pled", - "10138": "rity", - "10139": "Ġnode", - "10140": "ĠMassachusetts", - "10141": "ools", - "10142": "lication", - "10143": "Ġfails", - "10144": "emale", - "10145": "ori", - "10146": "backs", - "10147": "Ġshirt", - "10148": "Ġ''", - "10149": "ĠNAT", - "10150": "Ġwaters", - "10151": "elson", - "10152": "Ġease", - "10153": "Ġscar", - "10154": "Ġcontents", - "10155": "mind", - "10156": "Ġcontribution", - "10157": "Ġshr", - "10158": "Ġhanded", - "10159": "Ġstability", - "10160": "Ġtrave", - "10161": "Em", - "10162": "Ġmirror", - "10164": "Ġweigh", - "10165": "Ġfiction", - "10166": "ouver", - "10167": "istant", - "10168": "rition", - "10169": "ĠFed", - "10170": "Ġphysically", - "10171": "Ġstake", - "10172": "ĠArticle", - "10173": "ĠArc", - "10174": "ĠLewis", - "10175": "ĠMind", - "10176": "Ġdemonstrate", - "10177": "Ġprofits", - "10178": "vision", - "10179": "omic", - "10180": "olid", - "10181": "Ġbattles", - "10182": "Ġdrives", - "10183": "Ġeastern", - "10184": "ĠSony", - "10185": "!!!", - "10186": "aration", - "10187": "vard", - "10188": "ĠGL", - "10189": "portation", - "10190": "Ġ92", - "10191": "Ġlawmakers", - "10192": "Ġprotecting", - "10193": "ĠEPA", - "10194": "Ġyeah", - "10195": "Ġshame", - "10196": "olph", - "10197": "even", - "10198": "xit", - "10199": "Ġattach", - "10200": "Ġrepresenting", - "10201": "Ġobs", - "10202": "ĠUtah", - "10203": "iffs", - "10204": "ĠFreedom", - "10205": "ó", - "10206": "AK", - "10207": "Ġincidents", - "10208": "itage", - "10209": "Ġviewers", - "10210": "cd", - "10211": "Ġmouse", - "10212": "Ġclar", - "10213": "Ġaccordance", - "10214": "Ġbot", - "10215": "cor", - "10216": "ĠSummer", - "10217": "held", - "10218": "Ġinnocent", - "10219": "Ġinitiative", - "10220": "ols", - "10221": "________________________________", - "10222": "Ġspots", - "10223": "pace", - "10224": "Ġconventional", - "10225": "Ġcorporations", - "10226": "Ġblocked", - "10227": "HD", - "10228": "attered", - "10229": "Ġrefers", - "10230": "Ġbuck", - "10231": "ĠDigital", - "10233": "Ġtopics", - "10234": "TF", - "10235": "Äģ", - "10236": "brid", - "10237": "reement", - "10238": "Ġunderlying", - "10239": "ĠMember", - "10240": "Ġinvestigating", - "10241": "Ġpregnancy", - "10242": "Ġtouchdown", - "10243": "ĠBand", - "10244": "ĠCaller", - "10245": "Ġinstances", - "10246": "PP", - "10247": "wa", - "10248": "Good", - "10249": "Ġ1991", - "10250": "ĠCold", - "10251": "Ġfears", - "10252": "Ġremarks", - "10253": "ĨĴ", - "10254": "atal", - "10255": "Ġmit", - "10256": "Ġexperiments", - "10257": "ipt", - "10258": "Color", - "10259": "indu", - "10260": "Update", - "10261": "Ġ93", - "10262": "Ag", - "10263": "Ġå", - "10264": "ancouver", - "10265": "Both", - "10266": "Ġjudges", - "10267": "Object", - "10268": "Ġstere", - "10269": "umbn", - "10270": "Ġparticipation", - "10271": "ĠStars", - "10272": "ĠJere", - "10273": "Ġweekly", - "10274": "ĠBan", - "10275": "Ġconversations", - "10276": "ĠPitt", - "10277": "uz", - "10278": "ĠIndiana", - "10279": "ĠKick", - "10280": "Ġinfection", - "10281": "Ġheroes", - "10282": "Ġsettled", - "10283": "Ġstrip", - "10284": "Ġhal", - "10285": "Ġdump", - "10286": "ĠSci", - "10287": "Ġles", - "10288": "Ġreferences", - "10289": "ĠURL", - "10290": "ĠBridge", - "10291": "Ġwanting", - "10292": "Force", - "10293": "Ġexclus", - "10294": "Meanwhile", - "10295": "mn", - "10296": "Ġgentle", - "10297": "maker", - "10298": "senal", - "10299": "ĠGro", - "10300": "ouri", - "10301": "ĠRain", - "10302": "ĠAlliance", - "10303": "Ġlift", - "10304": "ela", - "10305": "SD", - "10306": "ĠCleveland", - "10307": "Ġranked", - "10308": "Ġstadium", - "10309": "Ġdeadly", - "10310": "ä¸", - "10311": "Ġriding", - "10312": "aria", - "10313": "ĠArmor", - "10314": "Ġdocumentation", - "10315": "ĠGreece", - "10316": "reek", - "10317": "Ġlens", - "10318": "ĠSa", - "10319": "Ġgross", - "10320": "ĠEmer", - "10321": "agers", - "10322": "ĠDub", - "10323": "ĠRh", - "10324": "ĠAMD", - "10325": "Ġarrival", - "10326": "Ġdesert", - "10327": "Ġsupplement", - "10328": "ĠResp", - "10329": "Ġknee", - "10330": "Ġmargin", - "10331": "font", - "10332": "ogg", - "10334": "ĠPir", - "10335": "ĠProm", - "10336": "ivals", - "10337": "Ġintake", - "10338": "Ġdifferently", - "10339": "ugs", - "10340": "Ġbits", - "10341": "cluded", - "10342": "Ġsearching", - "10343": "ĠDu", - "10344": "umble", - "10345": "Ġfunctional", - "10346": "ĠBaltimore", - "10347": "ĠCould", - "10348": "Ġdesired", - "10349": "Ġcircuit", - "10350": "ĠLyn", - "10351": "ĠGO", - "10352": "ĠFalse", - "10353": "repre", - "10354": "':", - "10355": "alties", - "10356": "Ġminim", - "10357": "Ġdrove", - "10358": "ĠShould", - "10359": "Ġhip", - "10360": "Ġpros", - "10361": "Ġutility", - "10362": "ĠNature", - "10363": "ĠMode", - "10364": "President", - "10365": "opp", - "10366": "rat", - "10367": "formance", - "10368": "Ġconcentration", - "10369": "Ġfont", - "10370": "ĠBud", - "10371": "Ġamid", - "10372": "Ġrevers", - "10373": "ĠML", - "10374": "Bar", - "10375": "Ġinteraction", - "10376": "Ġjurisd", - "10377": "Ġspells", - "10378": "dep", - "10379": "fil", - "10380": "Ġcivilians", - "10381": "utter", - "10382": "ĠCooper", - "10383": "ĠBelow", - "10384": "Ġentrance", - "10385": "Ġconvert", - "10386": "Ġcontroversy", - "10387": "owered", - "10388": "Ġcontrary", - "10389": "Ġarc", - "10390": "ĠExecutive", - "10391": "ĠOfficer", - "10392": "Ġpackages", - "10393": "Ġprogressive", - "10394": "width", - "10395": "Ġreserved", - "10396": "vol", - "10397": "ĠSamsung", - "10398": "Ġprinted", - "10399": "Ġcenters", - "10400": "Ġintroduce", - "10401": "ĠKennedy", - "10402": "Ġodds", - "10403": "Ġsurely", - "10404": "Ġindependence", - "10405": "Ġpassengers", - "10406": "reprene", - "10407": "ĠBeh", - "10408": "Ġloves", - "10409": "ĠESPN", - "10410": "Ġfacilit", - "10411": "Ġidentical", - "10412": "Ġdoct", - "10413": "Ġpartnership", - "10414": "conf", - "10415": "ĠHide", - "10416": "Ġconfused", - "10417": "ĠCow", - "10418": "Men", - "10419": "Ġwrest", - "10420": "ĠIraqi", - "10421": "Ġholes", - "10422": "ĠStudies", - "10423": "Ġpregnant", - "10424": "hard", - "10425": "Ġsignals", - "10426": "IX", - "10427": "Ġpulling", - "10428": "Ġgraduate", - "10429": "Ġnominee", - "10430": "Date", - "10431": "Ġpermitted", - "10432": "ĠâĤ¬", - "10433": "ĠOklahoma", - "10434": "Start", - "10435": "Ġauthorized", - "10436": "Ġalarm", - "10437": "ĠCos", - "10438": "van", - "10439": "Ġgenerations", - "10440": "cular", - "10441": "Ġdragon", - "10442": "ĠSoftware", - "10443": "ĠEdward", - "10444": "Ġcontroller", - "10445": "Sen", - "10446": "gered", - "10447": "ĠVik", - "10448": "Ġapproached", - "10449": "Thank", - "10450": "Ġcance", - "10451": "Ġformula", - "10452": "ĠSmall", - "10453": "Ġweakness", - "10454": "Ġramp", - "10455": "itudes", - "10456": "jud", - "10457": "Ġbrilliant", - "10458": "Ġaccus", - "10459": "source", - "10460": "Ġ800", - "10461": "ĠEvil", - "10462": "Sw", - "10463": "Ġhomeless", - "10464": "week", - "10465": "iens", - "10466": "rics", - "10467": "ĠThird", - "10468": "TO", - "10469": "Ġorganic", - "10470": "Ġpresentation", - "10471": "agh", - "10472": "ĠDownload", - "10473": "vation", - "10474": "Ġassembly", - "10475": "orable", - "10476": "holders", - "10477": "ĠBernie", - "10478": "ĠHelp", - "10479": "Ġtong", - "10480": "ĠFight", - "10481": "Ġbeach", - "10482": "Book", - "10483": "ĠLic", - "10484": "Ġrush", - "10485": "ĠRound", - "10486": "oup", - "10487": "ĠMarx", - "10488": "Ġcalculated", - "10489": "ĠDevil", - "10490": "ĠSarah", - "10491": "Ġoccasionally", - "10492": "Ġbullet", - "10493": "Available", - "10494": "gate", - "10495": "Ġ91", - "10496": "Ġhosp", - "10497": "Ġpromises", - "10498": "ĠHIV", - "10499": "ĠStadium", - "10500": "ĠStock", - "10501": "ĠCorporation", - "10502": "gage", - "10503": "NG", - "10504": "ĠCredit", - "10505": "Ġsne", - "10506": "ibl", - "10507": "Ġaccum", - "10508": "such", - "10509": "Ġterrorists", - "10510": "Ġconsciousness", - "10511": "ĠZh", - "10512": "Ġdrama", - "10513": "oola", - "10514": "piration", - "10515": "Ġlabour", - "10516": "ĠNin", - "10517": "Ġutter", - "10518": "Ġdemocratic", - "10519": "Ġassass", - "10520": "ilation", - "10521": "Ġgest", - "10522": "Ġabroad", - "10523": "Ġmetab", - "10524": "Ġsorts", - "10525": "Ġflav", - "10526": "UB", - "10527": "Ġmg", - "10528": "ĠNothing", - "10529": "ĠOd", - "10530": "Ġmusical", - "10532": "Ġdrops", - "10533": "ocated", - "10534": "ateral", - "10535": "000000", - "10536": "Ġgre", - "10537": "Ġequality", - "10538": "Ġburden", - "10539": "Ġvig", - "10540": "ĠLeader", - "10541": "------------", - "10542": "Ġceremony", - "10543": "Ġfighter", - "10544": "Ġactors", - "10545": "Ġæ", - "10546": "aman", - "10547": "Fi", - "10548": "Ġalign", - "10549": "puter", - "10550": "Ġelder", - "10551": "ĠNSA", - "10552": "Ġrepresentation", - "10553": "ĠOntario", - "10554": "ITH", - "10555": "usalem", - "10556": "Ġharassment", - "10557": "itzer", - "10558": "Ġsymp", - "10559": "Ġboxes", - "10560": "ĠDR", - "10561": "Ġmanifest", - "10562": "atre", - "10563": "Ġ^", - "10564": "Ġdies", - "10565": "leton", - "10566": "Ġmissions", - "10567": "ethe", - "10568": "Ġresolve", - "10569": "Ġfollowers", - "10570": "Ġasc", - "10571": "Ġkm", - "10572": "lord", - "10573": "ammed", - "10574": "Ġsilent", - "10575": "ĠAssociated", - "10576": "Ġtiming", - "10577": "Ġprisoners", - "10578": "ĠKings", - "10579": "ĠFive", - "10580": "Ġtower", - "10581": "Ġapproaches", - "10582": "Ġprecisely", - "10583": "Ġbureau", - "10584": "ĠMother", - "10585": "ĠIss", - "10586": "Ġkeyboard", - "10587": "itual", - "10588": "Ġfunded", - "10589": "Ġstaying", - "10590": "Ġpsychological", - "10591": "Ġmile", - "10592": "ĠLeon", - "10593": "ĠBarb", - "10594": "will", - "10595": "Ġwider", - "10596": "ĠAtlantic", - "10597": "Ġtill", - "10598": "ĠRome", - "10599": "rot", - "10600": "Ġaccompan", - "10601": "Ġflour", - "10602": "aco", - "10603": "World", - "10604": "ĠExpress", - "10605": "ĠYu", - "10606": "Cor", - "10607": "Ġpleased", - "10608": "party", - "10609": "Ġpointing", - "10610": "Ġinflation", - "10611": "Ġroy", - "10612": "Ġ),", - "10613": "ainer", - "10614": "Ġwedding", - "10615": "ormon", - "10616": "Ġrequiring", - "10617": "Ġqualified", - "10618": "Ġsegment", - "10619": "END", - "10620": "Ġsizes", - "10621": "eals", - "10622": "Ġcorrupt", - "10623": "assador", - "10624": "Ġceleb", - "10625": "Ġdreams", - "10626": "ĠMess", - "10627": "Ġchecking", - "10628": "ĠVersion", - "10629": "Ġpreparing", - "10630": "Ġactively", - "10631": "ĠDiff", - "10632": "Ġlux", - "10633": "ĠWinter", - "10634": "acteria", - "10635": "ĠNE", - "10636": "Ġdeputy", - "10637": "Ġtransgender", - "10638": "Ġsummary", - "10639": "Ġinher", - "10640": "eries", - "10641": "char", - "10642": "ĠYan", - "10643": "Ġknock", - "10644": "ĠPath", - "10645": "Ġlip", - "10646": "roller", - "10647": "Ġimpression", - "10648": "Ġcelebrate", - "10649": "Ġslide", - "10650": "Ġguests", - "10651": "Ġclip", - "10652": "FS", - "10653": "Ġsavings", - "10654": "Ġcaptain", - "10655": "Ġlegacy", - "10656": "ĠDenver", - "10657": "Ġwounded", - "10658": "taboola", - "10659": "ACT", - "10660": "Ġpursue", - "10661": "Ġoxy", - "10662": "Ġq", - "10663": "Ġsemi", - "10664": "ĠNeed", - "10665": "ĠAffairs", - "10666": "Ġobsc", - "10667": "Ġchecked", - "10668": "Ġdual", - "10669": "Code", - "10670": "ĠMD", - "10671": "lem", - "10672": "ulty", - "10673": "Ġ©", - "10674": "ĠElizabeth", - "10675": "Ġcenturies", - "10676": "arded", - "10677": "src", - "10678": "Ġevident", - "10679": "ennis", - "10680": "atin", - "10681": "Ġunemployment", - "10682": "ĠMario", - "10683": "Ġintim", - "10684": "Christ", - "10685": "Ġbiological", - "10686": "Ġsoldier", - "10687": "ĠAdded", - "10688": "Ġmath", - "10689": "ĠGil", - "10690": "Ġbias", - "10691": "Ġdating", - "10692": "ĠOcean", - "10693": "Ġmice", - "10694": "Mus", - "10695": "hire", - "10696": "ĠTes", - "10697": "Server", - "10698": "limited", - "10699": "Size", - "10700": "Ġmeters", - "10701": "Ġrocket", - "10702": "essee", - "10703": "Ġcertificate", - "10704": "ĠIranian", - "10705": "ASS", - "10706": "Ġgrid", - "10707": "Dec", - "10708": "Ġrolling", - "10709": "commun", - "10710": "ĠSweden", - "10711": "bury", - "10712": "Ġtissue", - "10713": "Ġracism", - "10714": "ĠLocal", - "10715": "Ġmystery", - "10716": "Ġexamine", - "10717": "Ġstem", - "10718": "Ġsits", - "10719": "Ġhoped", - "10720": "oting", - "10721": "Ġdialogue", - "10722": "Ġpersu", - "10723": "Watch", - "10724": "lay", - "10725": "MAN", - "10726": "Ġchronic", - "10727": "ĠPortland", - "10728": "market", - "10729": "ĠSEC", - "10730": "Ġparallel", - "10731": "Ġscandal", - "10732": "Ġcarries", - "10733": "Ġphenomenon", - "10734": "human", - "10735": "acker", - "10736": "ĠOx", - "10737": "Ġretirement", - "10738": "tainment", - "10739": "ovie", - "10740": "ĠGear", - "10741": "Ġduties", - "10742": "Ġdose", - "10743": "Ġscroll", - "10744": "MB", - "10745": "inf", - "10746": "Ġsauce", - "10747": "Ġlandscape", - "10748": "reddit", - "10749": "ĠChampionship", - "10750": "ĠReddit", - "10751": "alid", - "10752": "Ġcoin", - "10753": "Ġovers", - "10754": "Ġposting", - "10755": "about", - "10756": "Ġfel", - "10757": "andy", - "10758": "Ġbold", - "10759": "Ġfocusing", - "10760": "effect", - "10761": "GR", - "10762": "Ġdeemed", - "10763": "Ġrecommendations", - "10764": "Ġstepped", - "10765": "Ġvoter", - "10766": "ĠDeep", - "10767": "ĠInstagram", - "10768": "Ġmoderate", - "10769": "ĠMaryland", - "10770": "Ġrestricted", - "10771": "ĠMB", - "10772": "ĠChall", - "10773": "Ġtob", - "10774": "Ġcir", - "10775": "ĠOcc", - "10776": "ĠEver", - "10777": "Ġcollaps", - "10778": "INFO", - "10779": "=-", - "10780": "ĠPict", - "10781": "ĠAccount", - "10782": "nc", - "10783": "Ġought", - "10784": "Ġexport", - "10785": "Ġdrunk", - "10786": "('", - "10787": "Ġwise", - "10788": "ĠMort", - "10789": "necess", - "10790": "Ġancest", - "10791": "ĠIncre", - "10792": "Ġfrequent", - "10793": "mir", - "10794": "Ġinterpretation", - "10795": "Ġdependent", - "10796": "Ġcoins", - "10797": "ĠBol", - "10798": "Video", - "10799": "ĠJustin", - "10800": "Ġfatal", - "10801": "Ġcooking", - "10802": "Ġconfusion", - "10803": "ipher", - "10804": "Ġcustody", - "10805": "ĠMorgan", - "10806": "omach", - "10807": "ĠGovernor", - "10808": "Ġrestaurants", - "10809": "eling", - "10810": "Ġacknowledged", - "10811": "Ġther", - "10812": "Ġgenes", - "10813": "ching", - "10814": "Hey", - "10815": "Ġtactics", - "10816": "ĠMexican", - "10817": "Ġvend", - "10818": "Ġhes", - "10819": "quer", - "10820": "Ġnoting", - "10821": "ĠCameron", - "10822": "Ġtargeting", - "10823": "rock", - "10824": "Ġcredits", - "10825": "Ġemotions", - "10826": "Ġrepresentatives", - "10827": "news", - "10828": "Ġlegislative", - "10829": "Ġremoving", - "10830": "Ġtweeted", - "10831": "ĠCarter", - "10832": "ĠFixed", - "10833": "Ġforcing", - "10834": "Ġspeaker", - "10835": "Ġmales", - "10836": "ĠVietnam", - "10837": "lined", - "10838": "Ġconcepts", - "10839": "Ġvoices", - "10840": "oir", - "10841": "ĠTrib", - "10842": "Whe", - "10843": "ĠJerusalem", - "10844": "ĠSant", - "10845": "Ġcul", - "10846": "Ġlady", - "10847": "ĠHawai", - "10848": "Ġarts", - "10849": "ĠInn", - "10850": "ĠMachine", - "10851": "ĠEmperor", - "10852": "Ġslot", - "10853": "gly", - "10854": "ĠProcess", - "10855": "III", - "10856": "Ġathletes", - "10857": "ĠTemple", - "10858": "ĠRepresent", - "10859": "Ġpresc", - "10860": "Ġtons", - "10861": "Ġgolden", - "10862": "Ġpunch", - "10863": "ĠGR", - "10864": "iverpool", - "10865": "Ġenact", - "10866": "Ġlobby", - "10867": "Ġmos", - "10868": "Ġpicking", - "10869": "Ġlifetime", - "10870": "Ġcognitive", - "10871": "Each", - "10872": "zo", - "10873": "Ġdub", - "10874": "Ġconsists", - "10875": "oln", - "10876": "Ġfestival", - "10877": "amous", - "10878": "Ġintellig", - "10879": "words", - "10880": "ĠSmart", - "10881": "Ġdele", - "10882": "Ġlapt", - "10883": "Ġmagical", - "10884": "ĠSin", - "10885": "bus", - "10886": "urities", - "10887": "ighth", - "10888": "ĠRuby", - "10889": "ĠSure", - "10890": "olving", - "10891": "Ġjun", - "10892": "OST", - "10893": "Ġimposed", - "10894": "Ġastron", - "10895": "Ġcorrel", - "10896": "ĠNS", - "10897": "ĠKit", - "10898": "ĠFuture", - "10899": "burn", - "10900": "Ġimmune", - "10901": "ocus", - "10902": "Ġcourses", - "10903": "ĠString", - "10904": "Ġlean", - "10905": "Ġghost", - "10906": "Ġoutcomes", - "10907": "Ġexpense", - "10908": "Ġeveryday", - "10909": "Ġacceptable", - "10910": "Ah", - "10911": "Ġequipped", - "10912": "Ġorange", - "10913": "FR", - "10914": "ĠDutch", - "10915": "Though", - "10916": "ĠRank", - "10917": "QU", - "10918": "ĠRoberts", - "10919": "what", - "10920": "rend", - "10921": "Ġdisappear", - "10922": "Ġspawn", - "10923": "ĠLam", - "10924": "ois", - "10925": "Ġdeserve", - "10926": "Ġminimal", - "10927": "Ġnervous", - "10928": "ĠWould", - "10929": "Ġrook", - "10930": "ĠVancouver", - "10931": "Ġresign", - "10932": "shire", - "10933": "ĠWorks", - "10934": "ĠBuild", - "10935": "Ġaffordable", - "10936": "ĠGary", - "10937": "ĠArena", - "10938": "Ġhanging", - "10939": "Ġimplications", - "10940": "ĠSong", - "10941": "Ġmaintaining", - "10942": "Ġguards", - "10943": "CON", - "10944": "Ġderived", - "10945": "Ġexecuted", - "10946": "Ġtheories", - "10947": "Ġquoted", - "10948": "ĠAndre", - "10949": "oga", - "10950": "seless", - "10951": "info", - "10952": "ĠBelg", - "10953": "Ġtears", - "10954": "ĠSurv", - "10955": "Ġbirthday", - "10956": "igious", - "10957": "immer", - "10958": "Ġspectrum", - "10959": "Ġarchitecture", - "10960": "Ġrecruit", - "10961": "arma", - "10962": "Table", - "10963": "Ġmonsters", - "10964": "ĠGov", - "10965": "Ġdestination", - "10966": "Ġattractive", - "10967": "Ġfoss", - "10968": "ĠMoreover", - "10969": "Ġpresents", - "10970": "THE", - "10971": "Ġreply", - "10972": "pton", - "10973": "Ġcum", - "10974": "Ġdelight", - "10975": "Ġaffects", - "10976": "Ġdonations", - "10977": "ĠToy", - "10978": "ĠHim", - "10979": "MENT", - "10980": "Ġovercome", - "10981": "itched", - "10982": "ĠFantasy", - "10983": "ĠHat", - "10984": "ĠBeast", - "10985": "bott", - "10986": "Ġinvestigations", - "10987": "Run", - "10988": "Ġhunting", - "10989": "di", - "10990": "fund", - "10991": "Ġsessions", - "10992": "estyle", - "10993": "Ġportray", - "10994": "oids", - "10995": "Yeah", - "10996": "Ġcommunicate", - "10997": "Ġcomedy", - "10998": "ĠYang", - "10999": "Ġbelt", - "11000": "ĠMarine", - "11001": "Ġpredicted", - "11002": "Play", - "11003": "Ġimportantly", - "11004": "Ġremarkable", - "11005": "Ġeliminate", - "11006": "David", - "11007": "Ġbind", - "11008": "VID", - "11009": "Ġadvocates", - "11010": "ĠGaza", - "11011": "imp", - "11012": "DB", - "11013": "ĠNa", - "11014": "ĠSimilar", - "11015": "IES", - "11016": "Ġcharity", - "11017": "vas", - "11018": "math", - "11019": "Ġâĸ", - "11020": "oker", - "11021": "ndum", - "11022": "Ġcaps", - "11023": "ĠHal", - "11025": "ean", - "11026": "Ġfleet", - "11027": "Ġrecre", - "11028": "Right", - "11029": "Ġsleeping", - "11030": "ijing", - "11031": "kind", - "11032": "Ġdesignated", - "11033": "ä", - "11034": "Ġanimation", - "11035": "kee", - "11036": "ĠIntrodu", - "11037": "Ġ/>", - "11038": "Ġdelayed", - "11039": "Ġtremend", - "11040": "Ġcurious", - "11041": "Use", - "11042": "Ġlect", - "11043": "dam", - "11044": "Ġinnovation", - "11045": "ĠPoints", - "11046": "Ġloading", - "11047": "Ġdispute", - "11048": "ctic", - "11049": "irds", - "11050": "ĠBY", - "11051": "Ġnurs", - "11052": "ĠValue", - "11053": "IONS", - "11054": "ĠHum", - "11055": "Ġtemplate", - "11056": "mers", - "11057": "Ġappearances", - "11058": "ĠEntertainment", - "11059": "Ġtranslation", - "11060": "Ġsake", - "11061": "Ġbeneath", - "11062": "Ġinhib", - "11063": "Ġeuro", - "11064": "abetes", - "11065": "Ġstudying", - "11066": "ĠMas", - "11067": "Ġperceived", - "11068": "Ġexamined", - "11069": "Ġeager", - "11070": "Ġcoaches", - "11071": "Ġimper", - "11072": "chi", - "11073": "Ġproduces", - "11074": "\").", - "11075": "ĠEveryone", - "11076": "Ġmunicip", - "11077": "Ġgirlfriend", - "11078": "Ġhire", - "11079": "ĠVice", - "11080": "Ġsuitable", - "11081": "opy", - "11082": "Ġinequ", - "11083": "ĠDuke", - "11084": "fish", - "11085": "first", - "11086": "ĠObs", - "11087": "Ġinterior", - "11088": "ĠBruce", - "11089": "ĠRy", - "11090": "Ġanalys", - "11091": "Ġconsiderable", - "11092": "Ġforecast", - "11093": "Ġfert", - "11094": "orship", - "11095": "ĠDrug", - "11096": "ĠALL", - "11097": ":\"", - "11098": "thur", - "11099": "ĠMail", - "11100": "Ġballot", - "11101": "Ġinstantly", - "11102": "ĠChannel", - "11103": "Ġpicks", - "11104": "Ġ1989", - "11105": "Ġtent", - "11106": "oli", - "11107": "Ġcivilian", - "11108": "bling", - "11109": "ello", - "11110": "bu", - "11111": "Ġinch", - "11112": "Ġlogo", - "11113": "Ġcooperation", - "11114": "Ġwalks", - "11115": "Ġinvestments", - "11116": "Ġimprison", - "11117": "ĠFestival", - "11118": "ĠKy", - "11119": "Ġlegally", - "11120": "Ġgri", - "11121": "charg", - "11122": "Sl", - "11123": "Ġthreatening", - "11124": "duction", - "11125": "flow", - "11126": "Ġdismissed", - "11127": "ibraries", - "11128": "cap", - "11129": "ele", - "11130": "ĠMcG", - "11131": "ĠHarvard", - "11132": "ĠConservative", - "11133": "ĠCBS", - "11134": "png", - "11135": "Ġroots", - "11136": "ĠHaving", - "11137": "umbled", - "11138": "ĠFun", - "11139": "\\/", - "11140": "ĠSearch", - "11141": "plex", - "11142": "Ġdiscussing", - "11143": "Ġcontinu", - "11144": "ĠTai", - "11145": "ĠWik", - "11146": "Free", - "11147": "fit", - "11148": "Ġrefuse", - "11149": "Ġmanaging", - "11150": "Ġsynd", - "11151": "ipedia", - "11152": "walk", - "11153": "Ġprofessionals", - "11154": "Ġguidance", - "11155": "Ġuniversities", - "11156": "Ġassemb", - "11157": "untu", - "11158": "Finally", - "11159": "ASE", - "11160": "ĠAuto", - "11161": "ĠHad", - "11162": "Ġanniversary", - "11163": "LD", - "11164": "ĠDur", - "11165": "ĠUltimate", - "11166": "ihad", - "11167": "product", - "11168": "Ġtransit", - "11169": "Ġrestore", - "11170": "Ġexplaining", - "11171": "Ġasset", - "11172": "Ġtransferred", - "11173": "Ġburst", - "11174": "apolis", - "11175": "ĠMagazine", - "11176": "ĠCra", - "11177": "ĠBR", - "11178": "gged", - "11179": "ĠHE", - "11180": "Mich", - "11181": "bet", - "11182": "ĠLady", - "11183": "ylum", - "11184": "erves", - "11185": "Ġmeets", - "11186": "white", - "11187": "Log", - "11188": "Ġcorresponding", - "11189": "Ġinsisted", - "11190": "GG", - "11191": "Ġsurrounded", - "11192": "Ġtens", - "11193": "Ġlane", - "11194": "Ġcoinc", - "11195": "home", - "11196": "Ġexisted", - "11197": "ected", - "11198": "ĠDouble", - "11199": "lamm", - "11200": "Ġskept", - "11201": "exp", - "11202": "Ġperception", - "11203": "iev", - "11204": "ĠBeing", - "11205": "oft", - "11206": "Ġadopt", - "11207": ".:", - "11208": "];", - "11209": "Windows", - "11210": "Ġsatellite", - "11211": "ASH", - "11212": "Ġinfant", - "11213": "description", - "11214": "ĠMeanwhile", - "11215": "cm", - "11216": "oca", - "11217": "ĠTreat", - "11218": "actor", - "11219": "Ġtobacco", - "11220": "ĠNorm", - "11221": "emption", - "11222": "Ġflesh", - "11223": "Ġje", - "11224": "oop", - "11225": "ĠHeaven", - "11226": "Ġbeating", - "11227": "anim", - "11228": "Ġgathering", - "11229": "Ġcultiv", - "11230": "GO", - "11231": "abe", - "11232": "ĠJonathan", - "11233": "ĠSafety", - "11234": "Ġbadly", - "11235": "prot", - "11236": "Ġchoosing", - "11237": "Ġcontacted", - "11238": "Ġquit", - "11239": "Ġdistur", - "11240": "Ġstir", - "11241": "Ġtoken", - "11242": "Det", - "11243": "ĠPa", - "11244": "Ġfunctionality", - "11245": "003", - "11246": "some", - "11247": "Ġlimitations", - "11248": "Ġmeth", - "11249": "build", - "11250": "config", - "11251": "NT", - "11252": "rell", - "11253": "blem", - "11254": "ĠMom", - "11255": "Ġveterans", - "11256": "ĠHu", - "11257": "Ġtrends", - "11258": "arer", - "11259": "ĠGiven", - "11260": "ĠCaption", - "11261": "may", - "11262": "AST", - "11263": "Ġwondering", - "11264": "ĠClark", - "11265": "normal", - "11266": "Ġseparated", - "11267": "Ġdesp", - "11268": "stic", - "11269": "brew", - "11270": "Ġrelating", - "11271": "ĠNik", - "11272": "ĠFarm", - "11273": "Ġenthusi", - "11274": "good", - "11275": "deb", - "11276": "Ġactivist", - "11277": "Ġmart", - "11278": "Ġexplosion", - "11279": "ĠEconomic", - "11280": "Link", - "11281": "Ġinsight", - "11282": "Ġconvenient", - "11283": "Ġcounterpart", - "11284": "support", - "11285": "ĠVirt", - "11286": "agen", - "11287": "ĠTennessee", - "11288": "ĠSimon", - "11289": "ĠAward", - "11290": "OCK", - "11291": "ĠFigure", - "11292": "Ġoverseas", - "11293": "Ġpride", - "11294": "ĠCas", - "11295": "note", - "11296": "mg", - "11297": "Current", - "11298": "Ġdisplays", - "11299": "content", - "11300": "Ġtraveling", - "11301": "Ġhospitals", - "11302": "ĠFinancial", - "11303": "ĠPast", - "11304": "Ġdefendant", - "11305": "Ġstreaming", - "11306": "mble", - "11307": "ĠBerlin", - "11308": "uki", - "11309": "Ġdistribut", - "11310": "Ġantib", - "11311": "Ġchocolate", - "11312": "ĠCastle", - "11313": "Ġinterrupt", - "11314": "ĠRow", - "11315": "Ġconversion", - "11316": "Ġbugs", - "11317": "ĠRather", - "11318": "liest", - "11319": "LY", - "11320": "ĠJean", - "11321": "common", - "11322": "akh", - "11323": "Ġ130", - "11324": "otton", - "11325": "ĠDean", - "11326": "Ġamendment", - "11327": "Ġgameplay", - "11328": "ĠWarren", - "11329": "oda", - "11330": "Ġhighlights", - "11331": "Ġirre", - "11332": "ĠNATO", - "11333": "Ġballs", - "11334": "Ġdemanding", - "11335": "URE", - "11336": "ĠLuke", - "11337": "Figure", - "11338": "stop", - "11339": "onia", - "11340": "zone", - "11341": "izers", - "11342": "ĠWR", - "11343": "Ġawarded", - "11344": "Ġregulatory", - "11345": "ĠHart", - "11346": "ĠSN", - "11347": "pling", - "11348": "Ġsour", - "11349": "ĠPixel", - "11350": "usive", - "11351": "Ġfet", - "11352": "ĠSent", - "11353": "Ġautomatic", - "11354": "Ġfer", - "11355": "vernment", - "11356": "ĠKhan", - "11357": "TON", - "11358": "father", - "11359": "Ġextraordinary", - "11360": "throp", - "11361": "ĠPython", - "11362": "ĠGPU", - "11363": "Ġsexually", - "11364": "Ġdesktop", - "11365": "itivity", - "11366": "ĠAntonio", - "11367": "Ġorient", - "11368": "Ġears", - "11369": "obby", - "11370": "ouses", - "11371": "vertisements", - "11372": "Ġmanufacturers", - "11373": "icient", - "11374": "minute", - "11375": "Ġconviction", - "11376": "Ġgarden", - "11377": "public", - "11378": "Ġsatisfied", - "11379": "fold", - "11380": "OK", - "11381": "Ġinhab", - "11382": "ĠThink", - "11383": "Ġprogramme", - "11384": "Ġstomach", - "11385": "Ġcoordin", - "11386": "Ġholy", - "11387": "Ġthreshold", - "11388": "Ġrhet", - "11389": "Ġserial", - "11390": "Ġemployers", - "11391": "ĠEverything", - "11392": "rah", - "11393": "Ġbother", - "11394": "Ġbrands", - "11395": "Value", - "11396": "ĠTed", - "11397": "ĠPlanet", - "11398": "Ġpink", - "11399": "ĠFurthermore", - "11400": "sa", - "11401": "PE", - "11402": "reck", - "11403": "ĠUSD", - "11404": "otte", - "11405": "Ġ&&", - "11406": "Ġlanded", - "11407": "gets", - "11408": "Ġproducers", - "11409": "Ġhealthcare", - "11410": "Ġdominant", - "11411": "Ġdestro", - "11412": "Ġamended", - "11413": "chron", - "11414": "Ġfits", - "11415": "ĠSyd", - "11416": "ĠAuthority", - "11417": "ATCH", - "11418": "Ġfights", - "11419": "ĠLLC", - "11420": "Ġ---", - "11421": "ĠCorp", - "11422": "Ġtoxic", - "11423": "specific", - "11424": "ĠCorn", - "11425": "ĠChel", - "11426": "Ġtelephone", - "11427": "ĠPant", - "11428": "Ġmysterious", - "11429": "aunch", - "11430": "odox", - "11431": "media", - "11432": "Ġwitnesses", - "11433": "agu", - "11434": "Ġquestioned", - "11435": "ĠBrexit", - "11436": "ĠRemember", - "11437": "enez", - "11438": "Ġendorse", - "11439": "iatric", - "11440": "ĠIdent", - "11441": "Ġridiculous", - "11443": "Ġprayer", - "11444": "Ġscientist", - "11445": "Ġ1950", - "11446": "ĠAqu", - "11447": "Ġunderground", - "11448": "ĠUFC", - "11449": "mare", - "11450": "ĠLater", - "11451": "wich", - "11452": "Ġsubscrib", - "11453": "Ġhosts", - "11454": "Ġerr", - "11455": "Ġgrants", - "11456": "antom", - "11457": "Ġsummon", - "11458": "early", - "11459": "ĠClear", - "11460": "ĠPrim", - "11461": "Ġsuspension", - "11462": "Ġguaranteed", - "11463": "apper", - "11464": "Ġrice", - "11465": "ĠSean", - "11466": "ĠShin", - "11467": "Ġreferendum", - "11468": "Ġfled", - "11469": "rust", - "11470": "Ġ360", - "11471": "tery", - "11472": "Ġshocked", - "11473": "BR", - "11474": "ĠOil", - "11475": "ĠAllah", - "11476": "Ġpartly", - "11477": "Ġignor", - "11478": "Ġtransmission", - "11479": "Ġhomosexual", - "11480": "iversal", - "11481": "Ġhopefully", - "11482": "ãĤ¤", - "11483": "Ġlesson", - "11484": "Leg", - "11485": "Ġ..", - "11486": "Yet", - "11487": "table", - "11488": "appropri", - "11489": "rett", - "11490": "Ġboards", - "11491": "Ġincorrect", - "11492": "Ġbacteria", - "11493": "aru", - "11494": "amac", - "11495": "Ġsnap", - "11496": ".'\"", - "11497": "Ġparad", - "11498": "tem", - "11499": "heart", - "11500": "Ġavailability", - "11501": "Ġwisdom", - "11502": "Ġ(+", - "11503": "Ġpriest", - "11504": "ĠÂłĠÂł", - "11505": "Open", - "11506": "Ġspan", - "11507": "Ġparameter", - "11508": "Ġconvince", - "11509": "Ġ(%)", - "11510": "rac", - "11511": "Ġfo", - "11512": "Ġsafely", - "11513": "Ġconverted", - "11514": "ĠOlympic", - "11515": "Ġreserve", - "11516": "Ġhealing", - "11517": "ĠMine", - "11518": "Max", - "11519": "Ġinherent", - "11520": "ĠGraham", - "11521": "Ġintegrated", - "11522": "Dem", - "11523": "Ġpipeline", - "11524": "Ġapplying", - "11525": "Ġembed", - "11526": "ĠCharlie", - "11527": "Ġcave", - "11529": "Ġconsensus", - "11530": "Ġrewards", - "11531": "Pal", - "11532": "ĠHTML", - "11533": "Ġpopularity", - "11534": "looking", - "11535": "ĠSword", - "11536": "ĠArts", - "11537": "')", - "11538": "Ġelectron", - "11539": "clusions", - "11540": "Ġintegrity", - "11541": "Ġexclusively", - "11542": "Ġgrace", - "11543": "Ġtorture", - "11544": "Ġburned", - "11545": "two", - "11546": "Ġ180", - "11547": "Produ", - "11548": "Ġentreprene", - "11549": "raphics", - "11550": "Ġgym", - "11551": "ricane", - "11552": "ĠTam", - "11553": "Ġadministrative", - "11554": "Ġmanufacturer", - "11555": "Ġvel", - "11556": "ĠNi", - "11557": "Ġisolated", - "11558": "ĠMedicine", - "11559": "Ġbackup", - "11560": "Ġpromoting", - "11561": "Ġcommander", - "11562": "Ġflee", - "11563": "ĠRussell", - "11564": "Ġforgotten", - "11565": "ĠMissouri", - "11566": "Ġresidence", - "11567": "mons", - "11568": "Ġresemb", - "11569": "Ġwand", - "11570": "Ġmeaningful", - "11571": "PT", - "11572": "Ġbol", - "11573": "Ġhelic", - "11574": "Ġwealthy", - "11575": "Ġrifle", - "11576": "strong", - "11577": "rowing", - "11578": "plan", - "11579": "asury", - "11580": "â̦.", - "11581": "Ġexpanding", - "11582": "ĠHamilton", - "11583": "Ġreceives", - "11584": "SI", - "11585": "eatures", - "11586": "ĠAnim", - "11587": "REE", - "11588": "Put", - "11589": "Ġbriefly", - "11590": "rive", - "11591": "Ġstimul", - "11592": "Ġ``(", - "11593": "Ġ__", - "11594": "Ġchip", - "11595": "Ġhaz", - "11596": "Ġprize", - "11597": "ĠThings", - "11598": "ACE", - "11599": "ulin", - "11600": "dict", - "11601": "oku", - "11602": "Ġassociate", - "11603": "ockets", - "11604": "youtube", - "11605": "Story", - "11606": "ategory", - "11607": "Ġmild", - "11608": "ailing", - "11609": "ĠYe", - "11610": "Orig", - "11611": "ĠKa", - "11612": "orig", - "11613": "Ġpropaganda", - "11614": "Ġanonymous", - "11615": "Ġstruggled", - "11616": "Ġoutrage", - "11617": "ATED", - "11618": "ĠBeijing", - "11619": "rary", - "11620": "Ġleather", - "11621": "Ġworlds", - "11622": "Ġbroader", - "11624": "idal", - "11625": "ĠBetter", - "11626": "Ġtear", - "11627": "Ext", - "11628": "Ġproposals", - "11629": "Ġiter", - "11630": "ĠSquad", - "11631": "Ġvolunt", - "11632": "mi", - "11633": "Did", - "11634": "ĠPu", - "11635": "pin", - "11636": "Ġspeakers", - "11637": "Ġborders", - "11638": "Ġfigured", - "11639": "='", - "11640": "Ġsimultaneously", - "11641": "aeda", - "11642": "Ġcharging", - "11643": "Ġurged", - "11644": "Ġconj", - "11646": "ĠGordon", - "11647": "merce", - "11648": "Ġdocumentary", - "11649": "Share", - "11650": "itol", - "11651": "ONE", - "11652": "ĠGarden", - "11653": "hatt", - "11654": "ĠThompson", - "11655": "aneous", - "11656": "apore", - "11657": "Ġtanks", - "11658": "Ġlessons", - "11659": "track", - "11660": "Ġoutstanding", - "11661": "Ġvolunteers", - "11662": "Ġspray", - "11663": "Ġmanagers", - "11664": "large", - "11665": "Ġcamps", - "11666": "Ġartificial", - "11667": "ĠRu", - "11668": "Ġbags", - "11669": "thal", - "11670": "Ġcompatible", - "11671": "ĠBlade", - "11672": "Ġfed", - "11673": "Ġargues", - "11674": "FI", - "11675": "Ġunfair", - "11676": "Ġcorn", - "11677": "Ġoffset", - "11678": "Ġdirections", - "11679": "Ġdisappointed", - "11680": "ĠConvention", - "11681": "Ġviewing", - "11682": "ME", - "11683": "ocity", - "11684": "Ġtowns", - "11685": "Ġlayers", - "11686": "Ġrolled", - "11687": "Ġjumped", - "11688": "Ġattribute", - "11689": "Ġunnecess", - "11690": "incoln", - "11691": "Ġsuppose", - "11692": "ĠNether", - "11693": "cha", - "11694": "Ġburied", - "11695": "Ġsixth", - "11696": "Ben", - "11697": "ressing", - "11698": "OUR", - "11699": "Ġwound", - "11700": "Ġcycl", - "11701": "Ġmechanisms", - "11702": "Ġcongressional", - "11703": "ĠElement", - "11704": "Ġagreements", - "11705": "Ġdecor", - "11706": "Ġclosest", - "11707": "ĠMit", - "11708": "Google", - "11709": "}}", - "11710": "Ġmixture", - "11711": "Ġfluid", - "11712": "Sign", - "11713": "ĠScholar", - "11714": "Ġpist", - "11715": "asket", - "11716": "abling", - "11717": "Ġracing", - "11718": "hero", - "11719": "riel", - "11720": "assy", - "11721": "Ġcheaper", - "11722": "ben", - "11723": "Ġvertical", - "11724": "amacare", - "11725": "ĠReading", - "11726": "gments", - "11727": "Ġhelicop", - "11728": "Ġsacrifice", - "11729": "aya", - "11730": "paren", - "11731": "VA", - "11732": "ĠLes", - "11733": "ĠStudio", - "11734": "Ġviolations", - "11735": "ĠAnna", - "11736": "acer", - "11737": "é¾", - "11738": "ĠRat", - "11739": "ĠBeck", - "11740": "ĠDick", - "11741": "ĠACT", - "11742": "Ġcomposition", - "11743": "Ġtexture", - "11744": "ĠOwn", - "11745": "Ġsmartphone", - "11746": "ĠNA", - "11747": "Ġforb", - "11748": "import", - "11749": "Ġdefending", - "11750": "ilst", - "11751": "rer", - "11752": "Ġoh", - "11753": "ĠJeremy", - "11754": "Ġbanking", - "11755": "ceptions", - "11756": "Ġrespective", - "11757": "/.", - "11758": "Ġdrinks", - "11759": "ĠWi", - "11760": "Ġbands", - "11761": "ĠLiverpool", - "11762": "Ġgrip", - "11763": "ĠBuy", - "11764": "Ġopenly", - "11765": "Ġreviewed", - "11766": "pert", - "11767": "Ġverify", - "11768": "ĠCole", - "11769": "ĠWales", - "11770": "MO", - "11771": "Ġunpre", - "11772": "Ġshelter", - "11773": "ĠImperial", - "11774": "Ġgui", - "11775": "ĠDak", - "11776": "Ġsuggestions", - "11777": "Ġexplicitly", - "11778": "Ġslave", - "11779": "Ġblockchain", - "11780": "Ġcompeting", - "11781": "Ġpromising", - "11782": "SON", - "11783": "Ġsoccer", - "11784": "Ġconstitution", - "11786": "Ġdistract", - "11787": "ĠUser", - "11788": "esides", - "11789": "ĠMethod", - "11790": "ĠTokyo", - "11791": "Ġaccompanied", - "11792": "Client", - "11793": "sur", - "11794": "alog", - "11795": "Ġidentification", - "11796": "Ġinvasion", - "11797": "asma", - "11798": "Ġindustries", - "11799": "ppers", - "11800": "Ġsubtle", - "11801": "ĠUnit", - "11802": "natural", - "11803": "Ġsurvived", - "11804": "Ġflaw", - "11805": "ĺħ", - "11806": "ĠHoll", - "11807": "Ġdeficit", - "11808": "Ġtutorial", - "11809": "ĠChance", - "11810": "Ġarguing", - "11811": "Ġcontemporary", - "11812": "Ġintegration", - "11813": "forward", - "11814": "Ġtum", - "11815": "itis", - "11816": "Ġhiding", - "11817": "ĠDomin", - "11818": "ĠTan", - "11819": "ĠBuilding", - "11820": "ĠVin", - "11821": "Ġspokesperson", - "11822": "ĠNotes", - "11823": "Ġemerging", - "11824": "Ġpreparation", - "11825": "Ġprost", - "11826": "Ġsuspects", - "11827": "Ġautonom", - "11828": "Description", - "11829": "Ġdealt", - "11830": "ĠPear", - "11831": "Ġsteady", - "11832": "Ġdecreased", - "11833": "Ġsovere", - "11834": "ĠClin", - "11835": "Ġgradually", - "11836": "orses", - "11837": "ĠWAR", - "11838": "Serv", - "11839": "ãĤ¢", - "11840": "hr", - "11841": "Ġdirty", - "11842": "ĠBarn", - "11843": "ĠBC", - "11844": "Ġdil", - "11845": "Ġcalendar", - "11846": "Ġcompliance", - "11847": "Ġchamber", - "11848": "bb", - "11849": "Ġpassenger", - "11850": "ateful", - "11851": "ĠTitle", - "11852": "ĠSydney", - "11853": "ĠGot", - "11854": "Ġdarkness", - "11855": "Ġdefect", - "11856": "Ġpacked", - "11857": "assion", - "11858": "Ġgods", - "11859": "Ġharsh", - "11860": "ICK", - "11861": "leans", - "11862": "Ġalgorithm", - "11863": "Ġoxygen", - "11864": "Ġvisits", - "11865": "Ġblade", - "11866": "Ġkilomet", - "11867": "ĠKentucky", - "11868": "Ġkiller", - "11869": "Pack", - "11870": "enny", - "11871": "Ġdivine", - "11872": "Ġnomination", - "11873": "being", - "11874": "Ġengines", - "11875": "Ġcats", - "11876": "Ġbuffer", - "11877": "ĠPhill", - "11878": "Ġtraff", - "11879": "AGE", - "11880": "Ġtongue", - "11881": "Ġradiation", - "11882": "erer", - "11883": "mem", - "11884": "ĠExplicit", - "11885": "é¾į", - "11886": "Ġcouples", - "11887": "Ġphysics", - "11888": "ĠMcK", - "11889": "Ġpolitically", - "11890": "awks", - "11891": "ĠBloom", - "11892": "Ġworship", - "11893": "eger", - "11894": "uter", - "11895": "ĠFO", - "11896": "Ġmathemat", - "11897": "Ġsentenced", - "11898": "Ġdisk", - "11899": "ĠMarg", - "11900": "Ġ/*", - "11901": "PI", - "11902": "Ġoptional", - "11903": "Ġbabies", - "11904": "Ġseeds", - "11905": "ĠScottish", - "11906": "Ġthy", - "11907": "]]", - "11908": "ĠHitler", - "11909": "PH", - "11910": "ngth", - "11911": "Ġrecovered", - "11912": "inge", - "11913": "Ġpowder", - "11914": "Ġlips", - "11915": "Ġdesigner", - "11916": "Ġdisorders", - "11917": "Ġcourage", - "11918": "Ġchaos", - "11919": "\"},{\"", - "11920": "Ġcarrier", - "11921": "bably", - "11922": "High", - "11923": "ĠRT", - "11924": "esity", - "11925": "len", - "11926": "Ġroutes", - "11927": "uating", - "11928": "Fil", - "11929": "NOT", - "11930": "wall", - "11931": "sburgh", - "11932": "Ġengaging", - "11933": "ĠJavaScript", - "11934": "orer", - "11935": "lihood", - "11936": "Ġunions", - "11937": "ĠFederation", - "11938": "ĠTesla", - "11939": "Ġcompletion", - "11940": "ĠTa", - "11941": "Ġprivilege", - "11942": "ĠOrange", - "11943": "Ġneur", - "11944": "parency", - "11945": "Ġbones", - "11946": "Ġtitled", - "11947": "Ġprosecutors", - "11948": "ĠME", - "11949": "Ġengineer", - "11950": "ĠUniverse", - "11951": "ĠHig", - "11952": "nie", - "11953": "oard", - "11954": "Ġhearts", - "11955": "ĠGre", - "11956": "ussion", - "11957": "Ġministry", - "11958": "Ġpenet", - "11959": "ĠNut", - "11960": "ĠOw", - "11961": "ĠXP", - "11962": "instein", - "11963": "Ġbulk", - "11964": "System", - "11965": "icism", - "11966": "ĠMarketable", - "11967": "Ġpreval", - "11968": "Ġposter", - "11969": "Ġattending", - "11970": "urable", - "11971": "Ġlicensed", - "11972": "ĠGh", - "11973": "etry", - "11974": "ĠTradable", - "11975": "Ġblast", - "11976": "à¤", - "11977": "ĠTitan", - "11978": "elled", - "11979": "die", - "11980": "Have", - "11981": "ĠFlame", - "11982": "Ġprofound", - "11983": "Ġparticipating", - "11984": "Ġanime", - "11985": "ĠEss", - "11986": "Ġspecify", - "11987": "Ġregarded", - "11988": "ĠSpell", - "11989": "Ġsons", - "11990": "owned", - "11991": "Ġmerc", - "11992": "Ġexperimental", - "11993": "lando", - "11994": "hs", - "11995": "ĠDungeon", - "11996": "inos", - "11997": "Ġcomply", - "11998": "ĠSystems", - "11999": "arth", - "12000": "Ġseized", - "12001": "local", - "12002": "ĠGirls", - "12003": "udo", - "12004": "oned", - "12005": "ĠFle", - "12006": "Ġconstructed", - "12007": "Ġhosted", - "12008": "Ġscared", - "12009": "actic", - "12010": "ĠIslands", - "12011": "ĠMORE", - "12012": "Ġbless", - "12013": "Ġblocking", - "12014": "Ġchips", - "12015": "Ġevac", - "12016": "Ps", - "12017": "Ġcorporation", - "12018": "Ġox", - "12019": "Ġlighting", - "12020": "Ġneighbors", - "12021": "ĠUb", - "12022": "aro", - "12023": "Ġbeef", - "12024": "ĠUber", - "12025": "Facebook", - "12026": "armed", - "12027": "itate", - "12028": "ĠRating", - "12029": "ĠQuick", - "12030": "Ġoccupied", - "12031": "Ġaims", - "12032": "ĠAdditionally", - "12033": "ĠInterest", - "12034": "Ġdramatically", - "12035": "Ġheal", - "12036": "Ġpainting", - "12037": "Ġengineers", - "12038": "MM", - "12039": "ĠMust", - "12040": "Ġquantity", - "12041": "Paul", - "12042": "Ġearnings", - "12043": "ĠPosts", - "12044": "stra", - "12045": "ãĥ¼ãĥ", - "12046": "Ġstance", - "12047": "Ġdropping", - "12048": "script", - "12049": "Ġdressed", - "12050": "Make", - "12051": "Ġjustify", - "12052": "ĠLtd", - "12053": "Ġprompted", - "12054": "Ġscrut", - "12055": "Ġspeeds", - "12056": "ĠGiants", - "12057": "omer", - "12058": "ĠEditor", - "12059": "Ġdescribing", - "12060": "ĠLie", - "12061": "mented", - "12062": "Ġnowhere", - "12063": "ocaly", - "12064": "Ġinstruction", - "12065": "fortable", - "12066": "Ġentities", - "12067": "Ġcm", - "12068": "ĠNatural", - "12069": "Ġinquiry", - "12070": "Ġpressed", - "12071": "izont", - "12072": "forced", - "12073": "Ġraises", - "12074": "ĠNetflix", - "12075": "ĠSide", - "12076": "Ġouter", - "12077": "Ġamongst", - "12078": "ims", - "12079": "owski", - "12080": "Ġclimb", - "12081": "never", - "12082": "Ġcombine", - "12083": "ding", - "12084": "Ġcompr", - "12085": "Ġsignificance", - "12086": "Ġremembered", - "12087": "ĠNevada", - "12088": "ĠTel", - "12089": "ĠScar", - "12090": "ĠWarriors", - "12091": "ĠJane", - "12092": "Ġcoup", - "12093": "bas", - "12094": "Ġterminal", - "12095": ",-", - "12096": "OH", - "12097": "Ġtension", - "12098": "Ġwings", - "12099": "ĠMyster", - "12100": "����", - "12101": "ĠUnlike", - "12102": "valid", - "12103": "vironments", - "12104": "ĠAli", - "12105": "Ġnaked", - "12106": "books", - "12107": "ĠMun", - "12108": "ĠGulf", - "12109": "Ġdensity", - "12110": "Ġdimin", - "12111": "Ġdesperate", - "12112": "Ġpresidency", - "12113": "Ġ1986", - "12114": "hy", - "12115": "IND", - "12116": "Ġunlock", - "12117": "imens", - "12118": "Ġhandled", - "12119": "ĠEb", - "12120": "Ġdisappeared", - "12121": "Ġgenre", - "12122": "Ġ1988", - "12123": "Ġdetermination", - "12124": "Stream", - "12125": "iko", - "12126": "apters", - "12127": "Ġacknowledge", - "12128": "Jan", - "12129": "Ġcapitalism", - "12130": "Pat", - "12131": "Ġ2020", - "12132": "Ġpainful", - "12133": "Ġcurve", - "12134": "Ġbombs", - "12135": "storm", - "12136": "ĠMetal", - "12137": "encer", - "12138": "ĠFig", - "12139": "ĠAaron", - "12140": "anches", - "12141": "Ġinspiration", - "12142": "Ġexhaust", - "12143": "tains", - "12144": "ashi", - "12145": "Ġdescript", - "12146": "Ġritual", - "12147": "ĠChelsea", - "12148": "Ġpromotion", - "12149": "ĠHung", - "12150": "ĠWard", - "12151": "iva", - "12152": "ĠET", - "12153": "Ġtoss", - "12154": "allow", - "12155": "ĠFrancis", - "12156": "Dep", - "12157": "Ġhappiness", - "12158": "ĠGlass", - "12159": "Ġbeta", - "12160": "Ġstrengthen", - "12161": "NE", - "12162": "oa", - "12163": "Ġbuttons", - "12164": "ĠMurray", - "12165": "Ġkicked", - "12166": "Quest", - "12167": "ĠTalk", - "12168": "ĠSeveral", - "12169": "ĠZero", - "12170": "Ġdrone", - "12171": "ulk", - "12172": "Ġcam", - "12173": "ĠMobile", - "12174": "Ġpreventing", - "12175": "Ġretro", - "12176": "ĠAx", - "12177": "Ġcruel", - "12178": "Ġfloat", - "12179": ".),", - "12180": "Ġfiling", - "12181": "ĠGrant", - "12182": "ĠBor", - "12183": "Ġrib", - "12184": "Ġchampionship", - "12185": "ĠMerc", - "12186": "Ġstyles", - "12187": "Ġcake", - "12188": "Ġbuilds", - "12189": "ĠSelf", - "12190": "iox", - "12191": "Ġepic", - "12192": "oyd", - "12193": "Bel", - "12194": "ĠStew", - "12195": ".(", - "12196": "ahu", - "12197": "ĠBeyond", - "12198": "Ġouts", - "12199": "Ġsolo", - "12200": "ĠTree", - "12201": "Ġpreserve", - "12202": "Ġtub", - "12203": "ARE", - "12204": "roc", - "12205": "ĠImpro", - "12206": "ĠWright", - "12207": "Ġbund", - "12208": "Ġtraged", - "12209": "Ġoccasional", - "12210": "bian", - "12211": "Second", - "12212": "rons", - "12213": "Ġinteractions", - "12214": "formed", - "12215": "sing", - "12216": "Ġowns", - "12217": "Ġhockey", - "12218": "General", - "12219": "Ġlogical", - "12220": "Ġexpend", - "12221": "Ġescal", - "12222": "ĠGriff", - "12223": "ĠCrown", - "12224": "ĠReserve", - "12225": "Ġstopping", - "12226": "Ġexcuse", - "12227": "second", - "12228": "Ġoperated", - "12229": "Ġreaches", - "12230": "ĠMalays", - "12231": "Ġpollution", - "12232": "ĠBrooklyn", - "12233": "Ġdelete", - "12234": "Ġhash", - "12235": "Block", - "12236": "aha", - "12237": "â̳", - "12238": "Ġshorter", - "12239": "piece", - "12240": ">>>", - "13164": "ĠMormon", - "13165": "tor", - "13166": "Ġparticles", - "13167": "ĠBart", - "13168": "ryption", - "13169": "Ġadmin", - "13170": "Ġsquee", - "13171": "VIDIA", - "13172": "Ġcreator", - "13173": "iameter", - "13174": "icular", - "13175": "NBC", - "13176": "Ġgrabbed", - "13177": "Ġnodd", - "13178": "Ġrated", - "13179": "Ġrotation", - "13180": "Ġgrasp", - "13181": "Ġexcessive", - "13182": "ĠEC", - "13183": "ĠWhit", - "13184": "Ġinventory", - "13185": "aults", - "13186": "ĠFB", - "13187": "Ġecosystem", - "13188": "Ġbillions", - "13189": "Ġventure", - "13190": "named", - "13191": "Ġdefender", - "13192": "oute", - "13193": "Instead", - "13194": "irable", - "13195": "War", - "13196": "Ġassumption", - "13197": "Ġbite", - "13198": "Ġearthqu", - "13199": "tail", - "13200": "space", - "13201": "Ġgifts", - "13202": "boys", - "13203": "Ġinevitable", - "13204": "Ġstructural", - "13205": "Ġbeneficial", - "13206": "Ġcompelling", - "13207": "hole", - "13208": "ervation", - "13209": "Ġcoat", - "13210": "oj", - "13211": "incarn", - "13212": "ĠYears", - "13213": "Ġdetermining", - "13214": "Ġrhetoric", - "13215": "Ġboundaries", - "13216": "Ġwhites", - "13217": "Ant", - "13218": "addy", - "13219": ")-", - "13220": "raham", - "13221": "etermin", - "13222": "Ġharvest", - "13223": "ĠConc", - "13224": "Ġlaptop", - "13225": "ĠMatch", - "13226": "Ġenjoying", - "13227": "cca", - "13228": "ollar", - "13229": "Ġtrips", - "13230": "Ġaddiction", - "13231": "ĠSak", - "13232": "Ġpowered", - "13233": "Ġcous", - "13234": "ĠRussians", - "13235": "iere", - "13236": "Ġretrie", - "13237": "quality", - "13238": "Ġdiffer", - "13239": "Ġkingdom", - "13240": "ĠLaur", - "13241": "ĠCapitol", - "13242": "Ġconclusions", - "13243": "ĠAltern", - "13244": "ĠNav", - "13245": "Ġtransparent", - "13246": "BER", - "13247": "Group", - "13248": "ĠComplete", - "13249": "Ġinfer", - "13250": "Ġintrig", - "13251": "Ġinsane", - "13252": "RO", - "13253": "ophob", - "13254": "isen", - "13255": "qual", - "13256": "Michael", - "13257": "Ġmuseum", - "13258": "ĠPope", - "13259": "Ġreset", - "13260": "rative", - "13261": "five", - "13262": "Ġaggreg", - "13263": "ittees", - "13264": "ository", - "13265": "Ġcarb", - "13266": "ĠRecord", - "13267": "Ġdecides", - "13268": "ĠFix", - "13269": "Ġexceptions", - "13270": "ĠCommissioner", - "13271": "uns", - "13272": "ĠEnvironmental", - "13273": "Ġlegendary", - "13274": "istence", - "13275": "Ġtunnel", - "13276": "km", - "13277": "Ġinsult", - "13278": "Ġtroll", - "13279": "Ġshake", - "13280": "Ġdetention", - "13281": "ques", - "13282": "ĠChrome", - "13283": "ĠFiles", - "13284": "Ġsubt", - "13285": "Ġprospects", - "13286": "Ġprol", - "13287": "render", - "13288": "proof", - "13289": "Ġperformances", - "13290": "Str", - "13291": "Ġhref", - "13292": "ername", - "13293": "Ġachievement", - "13294": "Ġfut", - "13295": "Full", - "13296": "ĠLeban", - "13297": "google", - "13298": "ãĥĪ", - "13299": "ampa", - "13300": "Maybe", - "13301": "Ġprojected", - "13302": "ĠEmb", - "13303": "Ġcolleg", - "13304": "Ġawards", - "13305": "ĠâĶ", - "13306": "Gold", - "13307": "ĠBlake", - "13308": "ĠRaj", - "13309": "ifting", - "13310": "Ġpending", - "13311": "Ġinstinct", - "13312": "Ġdevelopments", - "13313": "Connect", - "13314": "ĠMand", - "13315": "ĠWITH", - "13316": "ĠPhilippines", - "13317": "profile", - "13318": "Ġaltogether", - "13319": "ĠBund", - "13320": "ĠTD", - "13321": "oooo", - "13322": "amped", - "13323": "iph", - "13324": "Ġsteam", - "13325": "Ġoldest", - "13326": "Ġdetection", - "13327": "ulpt", - "13328": "Ġç", - "13329": "ĠWayne", - "13331": "fa", - "13332": "Ġcircles", - "13333": "ĠFu", - "13334": "Ġdonors", - "13335": "appropriate", - "13336": "ĠDakota", - "13337": "jamin", - "13338": "Ġmotivated", - "13339": "Ġpurchases", - "13340": "ĠLouisiana", - "13341": "ĠSpl", - "13342": "Ġglobe", - "13343": "Ġ105", - "13344": "zip", - "13345": "call", - "13346": "Ġdepartments", - "13347": "Ġsustainable", - "13349": "ĠOP", - "13350": "ifiers", - "13351": "Ġprevented", - "13352": "Ġincomp", - "13353": "ĠCommander", - "13354": "Ġdominated", - "13355": "Ġ»", - "13356": "Ġinvested", - "13357": "Ġcomplexity", - "13358": "Ġincl", - "13359": "Ġensuring", - "13360": "Ġrealm", - "13361": "ync", - "13362": "ĠIndependent", - "13363": "rained", - "13364": "ĠJen", - "13365": "ĠFlight", - "13366": "Ġathe", - "13367": "Ġspeculation", - "13368": "ĠTE", - "13369": "ocate", - "13370": "tic", - "13371": "Ġplaint", - "13372": "herry", - "13373": "Ġtoy", - "13374": "Ġ111", - "13375": "Ġplates", - "13376": "status", - "13377": "ĠIsa", - "13378": "Ġdevoted", - "13379": "Cop", - "13380": "ĠES", - "13382": "urrency", - "13383": "Main", - "13384": "Ġslaves", - "13385": "Ġpepper", - "13386": "Ġquotes", - "13387": "Ġceiling", - "13388": "ĠFish", - "13389": "Ġtransformation", - "13390": "Ġfraction", - "13391": "Ġadvantages", - "13392": "Ġtoile", - "13393": "Ġstunning", - "13394": "Ġmoist", - "13395": "breaking", - "13396": "si", - "13397": "ĠLocation", - "13398": "ĠMedium", - "13399": "Ġtexts", - "13400": "Ġugly", - "13401": "Ġbio", - "13402": ".âĢĶ", - "13403": "ĠBased", - "13404": "Ġtrains", - "13405": "ĠWing", - "13406": "ĠAncient", - "13407": "ĠRecords", - "13408": "ĠHope", - "13409": "Special", - "13410": "adesh", - "13411": "obi", - "13412": "[/", - "13413": "Ġtemporarily", - "13414": "Ver", - "13415": "hu", - "13416": "oser", - "13417": "Ġovernight", - "13418": "Ġmamm", - "13419": "ĠTreasury", - "13420": "ĠVenezuel", - "13421": "ĠMega", - "13422": "Ġtar", - "13423": "Ġexpects", - "13424": "black", - "13425": "orph", - "13426": "\\\\\\\\", - "13427": "Ġacceptance", - "13428": "Ġradar", - "13429": "sis", - "13430": "Ġjunior", - "13431": "Ġframes", - "13432": "Ġobservation", - "13433": "acies", - "13434": "Power", - "13435": "ĠAdvanced", - "13436": "Mag", - "13437": "ologically", - "13438": "ĠMechan", - "13439": "Ġsentences", - "13440": "Ġanalysts", - "13441": "aughters", - "13442": "forcement", - "13443": "Ġvague", - "13444": "Ġclause", - "13445": "Ġdirectors", - "13446": "Ġevaluate", - "13447": "Ġcabinet", - "13448": "Matt", - "13449": "ĠClassic", - "13450": "Ang", - "13451": "Ġcler", - "13452": "ĠBuck", - "13453": "Ġresearcher", - "13454": "Ġ160", - "13455": "Ġpoorly", - "13456": "Ġexperiencing", - "13457": "ĠPed", - "13458": "ĠManhattan", - "13459": "Ġfreed", - "13460": "Ġthemes", - "13461": "advant", - "13462": "Ġnin", - "13463": "Ġpraise", - "13465": "ĠLibya", - "13466": "best", - "13467": "Ġtrusted", - "13468": "Ġcease", - "13469": "Ġdign", - "13470": "Direct", - "13471": "Ġbombing", - "13472": "Ġmigration", - "13473": "ĠSciences", - "13474": "Ġmunicipal", - "13475": "ĠAverage", - "13476": "Ġglory", - "13477": "Ġrevealing", - "13478": "Ġarena", - "13479": "Ġuncertainty", - "13480": "Ġbattlefield", - "13481": "iao", - "13482": "God", - "13483": "Ġcinem", - "13484": "rape", - "13485": "elle", - "13486": "apons", - "13487": "Ġlisting", - "13488": "Ġwaited", - "13489": "Ġspotted", - "13490": "keley", - "13491": "ĠAudio", - "13492": "eor", - "13493": "arding", - "13494": "idding", - "13495": "igma", - "13496": "ĠNeg", - "13497": "Ġlone", - "13498": "Ġ----", - "13499": "exe", - "13500": "deg", - "13501": "Ġtransf", - "13502": "Ġwash", - "13503": "Ġslavery", - "13504": "Ġexploring", - "13505": "ĠWW", - "13506": "atson", - "13507": "Ġencl", - "13508": "lies", - "13509": "ĠCreek", - "13510": "Ġwooden", - "13511": "Manager", - "13512": "ĠBrand", - "13513": "ummy", - "13514": "ĠArthur", - "13515": "Ġbureaucr", - "13516": "Ġblend", - "13517": "arians", - "13518": "Further", - "13519": "Ġsupposedly", - "13520": "Ġwinds", - "13521": "Ġ1979", - "13522": "Ġgravity", - "13523": "Ġanalyses", - "13524": "ĠTravel", - "13525": "ĠVeter", - "13526": "Ġdumb", - "13527": "Ġalternate", - "13528": "gal", - "13529": "Ġconsumed", - "13530": "Ġeffectiveness", - "13531": ".''", - "13532": "Ġpaths", - "13533": "onda", - "13534": "LA", - "13535": "ĠStrong", - "13536": "Ġenables", - "13537": "Ġescaped", - "13538": "Ġ\"\"", - "13539": "Ġ112", - "13540": "Ġ1983", - "13541": "Ġsmiled", - "13542": "Ġtendency", - "13543": "Fire", - "13544": "Ġpars", - "13545": "ĠRoc", - "13546": "Ġlake", - "13547": "Ġfitness", - "13548": "ĠAth", - "13549": "ĠHorn", - "13550": "Ġhier", - "13551": "Ġimpose", - "13552": "mother", - "13553": "Ġpension", - "13554": "icut", - "13555": "borne", - "13556": "iciary", - "13557": "._", - "13558": "ĠSU", - "13559": "Ġpolar", - "13560": "isy", - "13561": "engu", - "13562": "itialized", - "13563": "ATA", - "13564": "write", - "13565": "Ġexercises", - "13566": "ĠDiamond", - "13567": "otypes", - "13568": "Ġharmful", - "13569": "onz", - "13570": "Ġprinting", - "13571": "story", - "13572": "Ġexpertise", - "13573": "ĠGer", - "13574": "Ġtragedy", - "13575": "ĠFly", - "13576": "Ġdivid", - "13577": "ampire", - "13578": "stock", - "13579": "Mem", - "13580": "Ġreign", - "13581": "Ġunve", - "13582": "Ġamend", - "13583": "ĠProphet", - "13584": "Ġmutual", - "13585": "ĠFac", - "13586": "Ġreplacing", - "13587": "Har", - "13588": "ĠCircuit", - "13589": "Ġthroat", - "13590": "ĠShot", - "13591": "Ġbatteries", - "13592": "Ġtoll", - "13593": "Ġaddressing", - "13594": "ĠMedicaid", - "13595": "Ġpupp", - "13596": "ĠNar", - "13597": "olk", - "13598": "Ġequity", - "13599": "MR", - "13600": "ĠHispan", - "13601": "ĠLarge", - "13602": "mid", - "13603": "Dev", - "13604": "Ġexped", - "13605": "Ġdemo", - "13606": "ĠMarshall", - "13607": "ergus", - "13608": "Ġfiber", - "13609": "Ġdivorce", - "13610": "ĠCreate", - "13611": "Ġslower", - "13612": "ĠParker", - "13613": "ĠStudent", - "13614": "ĠTraining", - "13615": "Return", - "13616": "ĠTru", - "13617": "Ġcub", - "13618": "ĠReached", - "13619": "Ġpanic", - "13620": "Ġquarters", - "13621": "Ġrect", - "13622": "Ġtreating", - "13623": "Ġrats", - "13624": "ĠChristianity", - "13625": "oler", - "13626": "Ġsacred", - "13627": "Ġdeclare", - "13628": "ulative", - "13629": "eting", - "13630": "Ġdelivering", - "13631": "estone", - "13632": "Ġtel", - "13633": "ĠLarry", - "13634": "Ġmeta", - "13635": "accept", - "13636": "artz", - "13637": "ĠRoger", - "13638": "handed", - "13639": "Ġheader", - "13640": "Ġtrapped", - "13641": "ĠCentury", - "13642": "Ġknocked", - "13643": "ĠOxford", - "13644": "Ġsurvivors", - "13645": "bot", - "13646": "Ġdemonstration", - "13647": "Ġdirt", - "13648": "Ġassists", - "13649": "OME", - "13650": "ĠDraft", - "13651": "ortunate", - "13652": "folio", - "13653": "pered", - "13654": "usters", - "13655": "gt", - "13656": "ĠLock", - "13657": "Ġjudicial", - "13658": "verted", - "13659": "Ġsecured", - "13660": "outing", - "13661": "ĠBooks", - "13662": "Ġhosting", - "13663": "Ġlifted", - "13664": "length", - "13665": "Ġjer", - "13666": "Ġwheels", - "13667": "ĠRange", - "13668": "umbnails", - "13669": "Ġdiagnosis", - "13670": "tech", - "13671": "ĠStewart", - "13672": "ĠPract", - "13673": "Ġnationwide", - "13674": "Ġdear", - "13675": "Ġobligations", - "13676": "Ġgrows", - "13677": "Ġmandatory", - "13678": "Ġsuspicious", - "13679": "!'", - "13680": "Apr", - "13681": "Great", - "13682": "Ġmortgage", - "13683": "Ġprosecutor", - "13684": "Ġeditorial", - "13685": "ĠKr", - "13686": "Ġprocessed", - "13687": "ungle", - "13688": "Ġflexibility", - "13689": "Earlier", - "13690": "ĠCart", - "13691": "ĠSug", - "13692": "Ġfocuses", - "13693": "Ġstartup", - "13694": "Ġbreach", - "13695": "ĠTob", - "13696": "cycle", - "13697": "ãĢĮ", - "13698": "rose", - "13699": "Ġbizarre", - "13700": "ãĢį", - "13701": "Ġvegetables", - "13702": "$$", - "13703": "Ġretreat", - "13704": "oshi", - "13705": "ĠShop", - "13706": "ĠGround", - "13707": "ĠStop", - "13708": "ĠHawaii", - "13709": "ĠAy", - "13710": "Perhaps", - "13711": "ĠBeaut", - "13712": "uffer", - "13713": "enna", - "13714": "Ġproductivity", - "13715": "Fixed", - "13716": "control", - "13717": "Ġabsent", - "13718": "ĠCampaign", - "13719": "Green", - "13720": "Ġidentifying", - "13721": "Ġregret", - "13722": "Ġpromoted", - "13723": "ĠSeven", - "13724": "Ġeru", - "13725": "neath", - "13726": "aughed", - "13727": "ĠPin", - "13728": "ĠLiving", - "13729": "Cost", - "13730": "omatic", - "13731": "mega", - "13732": "ĠNig", - "13733": "ocy", - "13734": "Ġinbox", - "13735": "Ġempire", - "13736": "Ġhorizont", - "13737": "Ġbranches", - "13738": "Ġmetaph", - "13739": "Active", - "13740": "edi", - "13741": "ĠFilm", - "13742": "ĠSomething", - "13743": "Ġmods", - "13744": "incial", - "13745": "ĠOriginal", - "13746": "Gen", - "13747": "Ġspirits", - "13748": "Ġearning", - "13749": "Hist", - "13750": "Ġriders", - "13751": "Ġsacrific", - "13752": "MT", - "13753": "ĠVA", - "13754": "ĠSalt", - "13755": "Ġoccupation", - "13756": "ĠMi", - "13757": "Ġdisg", - "13758": "lict", - "13759": "Ġnit", - "13760": "Ġnodes", - "13761": "eem", - "13762": "ĠPier", - "13763": "Ġhatred", - "13764": "psy", - "13765": "ãĥī", - "13766": "Ġtheater", - "13767": "Ġsophisticated", - "13768": "Ġdefended", - "13769": "Ġbesides", - "13770": "Ġthoroughly", - "13771": "ĠMedicare", - "13772": "Ġblamed", - "13773": "arently", - "13774": "Ġcrying", - "13775": "FOR", - "13776": "priv", - "13777": "Ġsinging", - "13778": "ĠIl", - "13779": "Ġcute", - "13780": "oided", - "13781": "olitical", - "13782": "ĠNeuro", - "13783": "å¤", - "13784": "Ġdonation", - "13785": "ĠEagles", - "13786": "ĠGive", - "13787": "Tom", - "13788": "Ġsubstantially", - "13789": "ĠLicense", - "13790": "ĠJa", - "13791": "Ġgrey", - "13792": "ĠAnimal", - "13793": "ĠER", - "13794": "ĠUnd", - "13795": "Ġkeen", - "13796": "Ġconclude", - "13797": "ĠMississippi", - "13798": "Engine", - "13799": "ĠStudios", - "13800": "Press", - "13801": "overs", - "13802": "llers", - "13803": "Ġ350", - "13804": "ĠRangers", - "13805": "Ġrou", - "13806": "erto", - "13807": "Ep", - "13808": "issa", - "13809": "ivan", - "13810": "Ġseal", - "13811": "ĠRegist", - "13812": "display", - "13813": "Ġweaken", - "13814": "uum", - "13815": "ĠCommons", - "13816": "ĠSay", - "13817": "Ġcultures", - "13818": "Ġlaughed", - "13819": "Ġslip", - "13820": "Ġtreatments", - "13821": "izable", - "13822": "mart", - "13823": "ĠRice", - "13824": "Ġbeast", - "13825": "Ġobesity", - "13826": "ĠLaure", - "13827": "iga", - "13828": "Which", - "13829": "holder", - "13830": "Ġelderly", - "13831": "Ġpays", - "13832": "Ġcomplained", - "13833": "Ġcrop", - "13834": "Ġproc", - "13835": "Ġexplosive", - "13836": "ĠFan", - "13837": "ĠArsenal", - "13838": "Author", - "13839": "eful", - "13840": "Ġmeals", - "13841": "Ġ(-", - "13842": "idays", - "13843": "Ġimagination", - "13844": "Ġannually", - "13845": "Ġms", - "13846": "asures", - "13847": "Head", - "13848": "ikh", - "13849": "matic", - "13850": "Ġboyfriend", - "13851": "ĠComputer", - "13852": "Ġbump", - "13853": "Ġsurge", - "13854": "ĠCraig", - "13855": "ĠKirk", - "13856": "Del", - "13857": "mediate", - "13858": "Ġscenarios", - "13859": "ĠMut", - "13860": "ĠStream", - "13861": "Ġcompetitors", - "13862": "ÙĦ", - "13863": "ĠStanford", - "13864": "ĠResources", - "13865": "azed", - "13866": "bage", - "13867": "Ġorganis", - "13868": "ĠRelease", - "13869": "Ġseparately", - "13870": "Ġhabits", - "13871": "Ġmeasurements", - "13872": "ĠClose", - "13873": "Ġaccompany", - "13874": "Ġgly", - "13875": "Ġtang", - "13876": "ĠRou", - "13877": "Ġplugin", - "13878": "Ġconvey", - "13879": "ĠChallenge", - "13880": "oots", - "13881": "jan", - "13882": "Ġcurs", - "13883": "ĠRelations", - "13884": "keeper", - "13885": "Ġapproaching", - "13886": "ping", - "13887": "Speaking", - "13888": "Ġarrangement", - "13889": "ĠVI", - "13890": "arettes", - "13891": "Ġaffecting", - "13892": "Ġpermits", - "13893": "because", - "13894": "Ġuseless", - "13895": "ĠHus", - "13896": "!!!!", - "13897": "Ġdestroying", - "13898": "Unfortunately", - "13899": "Ġfascinating", - "13900": "Sem", - "13901": "Ġelectoral", - "13902": "Ġtransparency", - "13903": "ĠChaos", - "13904": "Ġvolunteer", - "13905": "Ġstatistical", - "13906": "Ġactivated", - "13907": "rox", - "13908": "Web", - "13909": "HE", - "13910": "ĠHampshire", - "13911": "isive", - "13912": "Map", - "13913": "Ġtrash", - "13914": "ĠLawrence", - "13915": "stick", - "13916": "Cr", - "13917": "Ġrings", - "13918": "EXT", - "13919": "Ġoperational", - "13920": "opes", - "13921": "Does", - "13922": "ĠEvans", - "13923": "Ġwitnessed", - "13924": "Port", - "13925": "Ġlaunching", - "13926": "econom", - "13927": "wear", - "13928": "ĠParticip", - "13929": "umm", - "13930": "cules", - "13931": "ĠRAM", - "13932": "ĠTun", - "13933": "Ġassured", - "13934": "Ġbinary", - "13935": "Ġbetray", - "13936": "Ġexploration", - "13937": "ĠFel", - "13938": "Ġadmission", - "13939": "itated", - "13940": "Sy", - "13941": "Ġavoided", - "13942": "ĠSimulator", - "13943": "Ġcelebrated", - "13944": "ĠElectric", - "13945": "¥ŀ", - "13946": "Ġcluster", - "13947": "itzerland", - "13948": "health", - "13949": "Line", - "13950": "ĠNash", - "13951": "aton", - "13952": "Ġspare", - "13953": "Ġenterprise", - "13954": "ĠDIS", - "13955": "cludes", - "13956": "Ġflights", - "13957": "Ġregards", - "13958": "ĠÃĹ", - "13959": "half", - "13960": "Ġtrucks", - "13961": "Ġcontacts", - "13962": "Ġuncons", - "13963": "ĠClimate", - "13964": "Ġimmense", - "13965": "NEW", - "13966": "occ", - "13967": "ective", - "13968": "Ġembod", - "13969": "Ġpatrol", - "13970": "Ġbeside", - "13971": "Ġviable", - "13972": "Ġcreep", - "13973": "Ġtriggered", - "13974": "verning", - "13975": "Ġcomparable", - "13976": "ql", - "13977": "Ġgaining", - "13978": "asses", - "13979": "Ġ();", - "13980": "ĠGrey", - "13981": "ĠMLS", - "13982": "sized", - "13983": "Ġprosper", - "13984": "\"?", - "13985": "Ġpolling", - "13986": "Ġshar", - "13987": "ĠRC", - "13988": "Ġfirearm", - "13989": "orient", - "13990": "Ġfence", - "13991": "Ġvariations", - "13992": "giving", - "13993": "ĠPi", - "13994": "ospel", - "13995": "Ġpledge", - "13996": "Ġcure", - "13997": "Ġspy", - "13998": "Ġviolated", - "13999": "Ġrushed", - "14000": "Ġstroke", - "14001": "ĠBlog", - "14002": "sels", - "14003": "ĠEc", - "14004": ",''", - "14005": "Ġpale", - "14006": "ĠCollins", - "14007": "terror", - "14008": "ĠCanadians", - "14009": "Ġtune", - "14010": "Ġlaboratory", - "14011": "Ġnons", - "14012": "tarian", - "14013": "Ġdisability", - "14014": "ĠGam", - "14015": "Ġsinger", - "14016": "alg", - "14017": "ĠSenior", - "14018": "Ġtraded", - "14019": "ĠWarrior", - "14020": "Ġinfring", - "14021": "ĠFranklin", - "14022": "Ġstrain", - "14023": "ĠSwedish", - "14024": "Ġseventh", - "14025": "ĠBenn", - "14026": "ĠTell", - "14027": "Ġsyndrome", - "14028": "Ġwondered", - "14029": "iden", - "14030": "++++", - "14031": "igo", - "14032": "Ġpurple", - "14033": "Ġjournalism", - "14034": "Ġrebel", - "14035": "Ġfu", - "14036": "blog", - "14037": "Ġinvite", - "14038": "rencies", - "14039": "ĠContact", - "14040": "Israel", - "14041": "ĠContent", - "14042": "Ġcheer", - "14043": "Ġbedroom", - "14044": "ĠEngineering", - "14045": "ĠQueens", - "14046": "Ġdwell", - "14047": "ĠPlayStation", - "14048": "ĠDim", - "14049": "ĠColon", - "14050": "lr", - "14051": "Ġoperates", - "14052": "Ġmotivation", - "14053": "USA", - "14054": "astered", - "14055": "Core", - "14056": "ĠTruth", - "14057": "olo", - "14058": "OSE", - "14059": "ĠMemory", - "14060": "Ġpredec", - "14061": "Ġanarch", - "14062": "Ġ1920", - "14063": "ĠYam", - "14064": "è", - "14065": "bid", - "14066": "Ġgrateful", - "14067": "Ġexcitement", - "14068": "Ġtreasure", - "14069": "Ġlongest", - "14070": "ctive", - "14071": "Ġdeserves", - "14072": "Ġreserves", - "14073": "Ġcops", - "14074": "ĠOttawa", - "14075": "ĠEgyptian", - "14076": "anked", - "14077": "Ġartif", - "14078": "Ġhypothesis", - "14079": ":/", - "14080": "Ġpurchasing", - "14081": "Ġlovely", - "14082": "HP", - "14083": "Ġdivide", - "14084": "Ġstrictly", - "14085": "Ġquestioning", - "14086": "Ġtaxpayers", - "14087": "ĠJoy", - "14088": "Ġrolls", - "14089": "ĠHeavy", - "14090": "Ġports", - "14091": "Ġmagnetic", - "14092": "Ġinflamm", - "14093": "Ġbrush", - "14094": "tics", - "14095": "âĪĴ", - "14096": "Ġbottles", - "14097": "ppy", - "14098": "Ġpadd", - "14099": "ãĤ¯", - "14100": "million", - "14101": "Ġdevastating", - "14102": "Ġcompiled", - "14103": "Ġmedication", - "14104": "Ġtwelve", - "14105": "ĠPerry", - "14106": "Space", - "14107": "imb", - "14108": "your", - "14109": "Ġleaked", - "14110": "ĠTar", - "14111": "Ġunity", - "14112": "Ġinfected", - "14113": "Ġtraveled", - "14114": "IDE", - "14115": "ĠMcDonald", - "14116": "txt", - "14117": "ĠPrinc", - "14118": "Ġinterven", - "14119": "ĠTaiwan", - "14120": "ĠPow", - "14121": "Ġbearing", - "14122": "ĠThread", - "14123": "Ġzones", - "14124": "izards", - "14125": "unks", - "14126": "Chapter", - "14127": "llor", - "14128": "Ġ·", - "14129": "Ġwounds", - "14130": "Ġdiscretion", - "14131": "Ġsucceeded", - "14132": "iking", - "14133": "Ġiconic", - "14134": "Call", - "14135": "Ġscreening", - "14136": "ĠMis", - "14137": "icts", - "14138": "Ġministers", - "14139": "Ġseparation", - "14140": "Player", - "14141": "Ġbip", - "14142": "Ġbeloved", - "14143": "Ġcounting", - "14144": "ĠEye", - "14145": "around", - "14146": "inging", - "14147": "Ġtablet", - "14148": "Ġoffence", - "14149": "inance", - "14150": "have", - "14151": "ĠInfo", - "14152": "ĠNinja", - "14153": "Ġprotective", - "14154": "ĠCass", - "14155": "Mac", - "14156": "ĠQuality", - "14157": "North", - "14158": "Ġic", - "14159": "ĠCuba", - "14160": "ĠChronicle", - "14161": "ĠProperty", - "14162": "Ġfastest", - "14163": "otos", - "14164": "ĠGerm", - "14165": "OWN", - "14166": "Ġboom", - "14167": "ĠStanley", - "14168": "erguson", - "14169": "Ġclever", - "14170": "Ġenters", - "14171": "mode", - "14172": "terior", - "14173": "ĠSens", - "14174": "Ġlinear", - "14175": "ARK", - "14176": "Ġcomparing", - "14177": "Ġpurely", - "14178": "Ġsafer", - "14179": "ĠPotter", - "14180": "Ġcups", - "14181": "RT", - "14182": "Ġgluc", - "14183": "Ġattributed", - "14184": "Ġdupl", - "14185": "ĠPap", - "14186": "Ġprecious", - "14187": "Ġpa", - "14188": "ictionary", - "14189": "ĠTig", - "14190": "ĠToo", - "14191": "olutions", - "14192": "stan", - "14193": "Ġrobots", - "14194": "Ġlobb", - "14195": "Ġstatute", - "14196": "Ġprevention", - "14197": "western", - "14199": "ĠActive", - "14200": "ĠMaria", - "14201": "hal", - "14202": "None", - "14203": "ellar", - "14204": "ĠKB", - "14205": "ĠPartners", - "14206": "ĠSingle", - "14207": "ĠFollowing", - "14208": "ango", - "14209": "acious", - "14210": "Ġthou", - "14211": "Ġkg", - "14212": "Ġinfluential", - "14213": "ĠFriends", - "14214": "Sur", - "14215": "ainted", - "14216": "Ġforums", - "14217": "Ġstarter", - "14218": "Ġcitizenship", - "14219": "ĠElection", - "14220": "onge", - "14221": "otation", - "14222": "osph", - "14223": ";;;;", - "14224": "utical", - "14225": "pur", - "14226": "eren", - "14227": "Ġaccusations", - "14228": "bitious", - "14229": "abbit", - "14230": "ĠOrd", - "14231": "Posted", - "14232": "irk", - "14233": "Ġsensitivity", - "14234": "iche", - "14235": "ĠAmy", - "14236": "ĠFab", - "14237": "Ġsummit", - "14238": "Ġpedest", - "14239": "Ġrubber", - "14240": "Ġagricultural", - "14241": "Ġcancel", - "14242": "AE", - "14243": "Ġinaug", - "14244": "Ġcontam", - "14245": "Ġfirmly", - "14246": "iw", - "14247": "stage", - "14248": "ĠKan", - "14249": "Ġtier", - "14250": "Ġinvention", - "14251": "Ġtranslated", - "14252": "ĠRules", - "14253": "Box", - "14254": "Twitter", - "14255": "IDS", - "14256": "Ġpizza", - "14257": "Ġdebug", - "14258": "ĠDrop", - "14259": "vs", - "14260": "Ġhorses", - "14261": "big", - "14262": "Ġboring", - "14263": "Ġhood", - "14264": "ĠMcCain", - "14265": "atched", - "14266": "ĠBros", - "14267": "Ġskip", - "14268": "Ġessay", - "14269": "stat", - "14270": "ĠLegends", - "14271": "Ġammunition", - "14272": "auc", - "14273": "Ġshooter", - "14274": "Ġunh", - "14275": "Ġsupplied", - "14276": "Ġgeneric", - "14277": "ĠSK", - "14278": "iban", - "14279": "yrics", - "14280": "Ġ255", - "14281": "Ġclimbing", - "14282": "Former", - "14283": "Ġflip", - "14284": "Ġjumping", - "14285": "Ġfrustration", - "14286": "ĠTerry", - "14287": "Ġneighborhoods", - "14288": "Ġmedian", - "14289": "bean", - "14290": "Ġbrains", - "14291": "Following", - "14292": "Ġshaped", - "14293": "Ġdraws", - "14294": "Ġaltered", - "14295": "Jack", - "14296": "Ġrecipes", - "14297": "Ġskilled", - "14298": "wealth", - "14299": "achi", - "14300": "election", - "14301": "Ġbehaviors", - "14302": "deals", - "14303": "ĠUntil", - "14304": "Fe", - "14305": "Ġdeclaration", - "14306": "marks", - "14307": "ĠBetween", - "14308": "celona", - "14309": "Ġreson", - "14310": "Ġbubble", - "14311": "Among", - "14312": "Ġimperial", - "14313": "GS", - "14314": "Ġfeminist", - "14316": "ĠKyle", - "14317": "Ġaccounting", - "14318": "ĠTele", - "14319": "ĠTyr", - "14320": "Ġconnecting", - "14321": "Ġrehab", - "14322": "ĠPred", - "14323": "sim", - "14324": "Ġmeantime", - "14325": "Ġphysician", - "14326": "MW", - "14327": "ĠCampbell", - "14328": "ĠBrandon", - "14329": "Ġcontributing", - "14330": "ĠRule", - "14331": "ĠWeight", - "14332": "ĠNap", - "14333": "Ġinteractive", - "14334": "Ġvag", - "14335": "Ġhelmet", - "14336": "ĠComb", - "14337": "four", - "14338": "Ġshipped", - "14339": "Ġcompleting", - "14340": "ĠPD", - "14341": "PDATE", - "14342": "Ġspreading", - "14343": "Ġscary", - "14344": "erving", - "14345": "ĠGas", - "14346": "Ġfrank", - "14347": "school", - "14348": "Ġromantic", - "14349": "Ġstabil", - "14350": "Rob", - "14351": "Ġaccurately", - "14352": "Ġacute", - "14353": "ĠHann", - "14354": "Ġsymbols", - "14355": "Ġcivilization", - "14356": "ĠAW", - "14357": "Ġlightning", - "14358": "Ġconsiders", - "14359": "Ġvenue", - "14360": "Ġ×", - "14361": "Ġoven", - "14362": "ĠSF", - "14363": "his", - "14364": "Ġnu", - "14365": "ĠLearn", - "14366": "Ġpeoples", - "14367": "Ġstd", - "14368": "Ġslee", - "14369": "Ġslic", - "14370": "ĠStatistics", - "14371": "Ġcorners", - "14372": "ĠBaker", - "14373": "Ġ:)", - "14374": "mentation", - "14375": "olver", - "14376": "Ġlaughing", - "14377": "ĠTodd", - "14378": "onde", - "14379": "ĠHills", - "14380": "Ġnuts", - "14381": "ĠWoman", - "14382": "plane", - "14383": "Ġliver", - "14384": "ĠInside", - "14385": "Sorry", - "14386": "Ġagrees", - "14387": "Ġfundament", - "14388": "ĠFisher", - "14389": "Ġauction", - "14390": "Ġthreads", - "14391": "glas", - "14392": "ĠBasic", - "14393": "ĠNat", - "14394": "Ġlacking", - "14395": "Ġcelebration", - "14396": "ju", - "14397": "Ġsilly", - "14398": "Euro", - "14399": "Ġtatt", - "14400": "ighty", - "14401": "controlled", - "14402": "Test", - "14403": "ĠSingh", - "14404": "Ġrage", - "14405": "Ġrhyth", - "14406": "offic", - "14407": "ĠPhantom", - "14408": "Ġheadlines", - "14409": "Ġresponding", - "14410": "ĠMorning", - "14411": "Ġvitamin", - "14412": "Ġboots", - "14413": "ĠSite", - "14414": "alin", - "14415": "pi", - "14416": "Ġviral", - "14417": "ĠUC", - "14418": "DER", - "14419": "ĠSex", - "14420": "Ġstocks", - "14421": "current", - "14422": "Ġchurches", - "14423": "ĠRare", - "14424": "ĠMurphy", - "14425": "Ġdenial", - "14426": "ĠGaming", - "14427": "Ġtoug", - "14428": "Ġnick", - "14429": "Ġmakers", - "14430": "ĠRonald", - "14431": "Ġgenerous", - "14432": "ĠDoc", - "14433": "ĠMorris", - "14434": "Ġtransformed", - "14435": "ĠNormal", - "14436": "Ġ104", - "14437": "ĠKickstarter", - "14438": "ĠUpon", - "14439": "Online", - "14440": "ĠIRS", - "14441": "Ġwrap", - "14442": "Ġloving", - "14443": "Ġarrives", - "14444": "ĠDue", - "14445": "Ġheter", - "14446": "ĠMade", - "14447": "Ġrental", - "14448": "Ġbelongs", - "14449": "Ġattorneys", - "14450": "Ġcrops", - "14451": "Ġmatched", - "14452": "ulum", - "14453": "oline", - "14455": "Ġdispar", - "14456": "Ġbuyers", - "14457": "ĠCambridge", - "14458": "Ġethics", - "14459": "roups", - "14460": "Ġjustified", - "14461": "Ġmarginal", - "14462": "Ġrespected", - "14463": "winning", - "14464": "Ġnodded", - "14465": "ĠSerge", - "14466": "ĠFormer", - "14467": "Craft", - "14468": "################", - "14469": "ĠWarner", - "14470": "Ġdash", - "14471": "ete", - "14472": "Ġentert", - "14473": "ĠEscape", - "14474": "outheast", - "14475": "Ġknees", - "14476": "ĠBomb", - "14477": "Ġrug", - "14478": "Pass", - "14479": "Ġattitudes", - "14480": "government", - "14481": "ĠPrior", - "14482": "Ġqualities", - "14483": "Ġnotification", - "14484": "ĠPhone", - "14485": "lie", - "14486": "Ġanticipated", - "14487": "ĠCombat", - "14488": "ĠBarry", - "14489": "Ġ1982", - "14490": "Users", - "14491": "oner", - "14492": "Ġcomputing", - "14493": "ĠConnecticut", - "14494": "Ġlesser", - "14495": "Ġpeers", - "14496": "ĠCu", - "14497": "Ġtechnically", - "14498": "Ġsubmission", - "14499": "ĠUniversal", - "14500": "Ġmanually", - "14501": "ourge", - "14502": "Ġrespondents", - "14503": "ĠBTC", - "14504": "ĠHost", - "14505": "Ġfare", - "14506": "ĠBird", - "14507": "Ġreceipt", - "14508": "also", - "14509": "Ġjack", - "14510": "Ġagriculture", - "14511": "Ġskull", - "14512": "Ġ!=", - "14513": "Ġpassive", - "14514": "ĠCI", - "14515": "Ġsocieties", - "14516": "Ġreminded", - "14517": "Ġinterference", - "14518": "Buy", - "14519": "Ġâľ", - "14520": "gon", - "14521": "Ġscrutiny", - "14522": "ĠWitch", - "14523": "Ġconducting", - "14524": "Ġãĥ", - "14525": "Ġexchanges", - "14526": "ĠMitchell", - "14527": "Ġinhabit", - "14528": "Ġtwist", - "14529": "BD", - "14530": "Ġwherever", - "14531": "groupon", - "14532": "Ġjokes", - "14533": "ĠBenjamin", - "14534": "ĠRandom", - "14535": "frame", - "14536": "ĠLions", - "14537": "Ġhighlighted", - "14538": "ĠArkansas", - "14539": "Ent", - "14540": "Ġpile", - "14541": "Ġprelim", - "14542": "gs", - "14543": "minded", - "14544": "Ġfelony", - "14545": "ĠGA", - "14546": "ĠLuck", - "14547": "Ġpractically", - "14548": "ĠBos", - "14549": "Ġactress", - "14550": "Dam", - "14551": "ĠBou", - "14552": "Ġvisa", - "14553": "Ġembedded", - "14554": "Ġhybrid", - "14555": "Ġearliest", - "14556": "Ġsooner", - "14557": "social", - "14558": "ĠHA", - "14559": "Ġsteep", - "14560": "Ġdisadvant", - "14561": "Ġexploit", - "14562": "ĠEgg", - "14563": "ĠUltra", - "14564": "Ġnecessity", - "14565": "Local", - "14566": "iege", - "14567": "Ġdated", - "14568": "Ġmasses", - "14569": "Ġsubscription", - "14570": "pless", - "14571": "Ġanonym", - "14572": "Ġpresumably", - "14573": "Blue", - "14574": "Their", - "14575": "asketball", - "14576": "ĠPhilip", - "14577": "Ġcomed", - "14578": "loaded", - "14579": "rane", - "14580": "Ġreflection", - "14581": "China", - "14582": "Ġextends", - "14583": "Ġforming", - "14584": "Ġunders", - "14586": "Ġgrat", - "14587": "Ġconcentrations", - "14588": "Ġinsulin", - "14589": "Ġsecular", - "14590": "Ġwhilst", - "14591": "Ġwinners", - "14592": "Advertisements", - "14593": "Ġdeliberately", - "14594": "ĠWorking", - "14595": "Ġsink", - "14596": "etics", - "14597": "dale", - "14598": "Ġmandate", - "14599": "Ġgram", - "14600": "Ġvacation", - "14601": "Ġwarnings", - "14602": "ripp", - "14603": "ĠTHAT", - "14604": "Ġcommentary", - "14605": "Ġintu", - "14606": "Ġaest", - "14607": "Ġreasoning", - "14608": "Ġbreakdown", - "14609": "ĠZombie", - "14610": "Ġ-->", - "14611": "ĠPolitical", - "14612": "cott", - "14613": "Ġthrust", - "14614": "Ġtechnological", - "14615": "Ġdeciding", - "14616": "Ġtrafficking", - "14617": "Long", - "14618": "Welcome", - "14619": "prising", - "14620": "ĠCommunications", - "14621": "Ġendors", - "14622": "Ġswift", - "14623": "Ġmetabol", - "14624": "coins", - "14625": "resa", - "14626": "ĠHTTP", - "14627": "Ġenroll", - "14628": "ĠHappy", - "14629": "usr", - "14630": "intage", - "14631": "Ġ[\"", - "14632": "uably", - "14633": "ĠMaterial", - "14634": "Ġrepeal", - "14635": "Sept", - "14636": "kh", - "14637": "ĠModi", - "14638": "Ġunderneath", - "14639": "ĠIL", - "14640": "shore", - "14641": "Ġdiagnosed", - "14642": "aceutical", - "14643": "Ġshower", - "14644": "aux", - "14645": "ĠSwitch", - "14646": "ĠStrength", - "14647": "Ġjihad", - "14648": "national", - "14649": "Ġtrauma", - "14650": "ussy", - "14651": "oni", - "14652": "Ġconsolid", - "14653": "Ġcalories", - "14654": "ĠFlynn", - "14655": "agged", - "14657": "ĠPink", - "14658": "Ġfulfill", - "14659": "Ġchains", - "14660": "Ġnotably", - "14661": "ĠAV", - "14662": "Life", - "14663": "ĠChuck", - "14664": "mus", - "14665": "ĠUrban", - "14666": "ĠHend", - "14667": "Ġdeposit", - "14668": "ĠSad", - "14669": "Ġaffair", - "14670": "ORK", - "14671": "ieval", - "14672": "ĠFDA", - "14673": "Ġtrop", - "14674": "ĠOverall", - "14675": "Ġvirtue", - "14676": "Ġsatisfaction", - "14677": "aund", - "14678": "Ġlun", - "14679": "ĠSwitzerland", - "14680": "ĠOperation", - "14681": "process", - "14682": "Ġshook", - "14683": "Ġcounties", - "14684": "leased", - "14685": "ĠCharlotte", - "14687": "Ġtranscript", - "14688": "Ġredd", - "14689": "push", - "14690": "ĠHey", - "14691": "ĠAnalysis", - "14692": "[\"", - "14693": "Ġalternatives", - "14694": "ardless", - "14695": "Ġeleph", - "14696": "Ġprejud", - "14697": "ĠLeaf", - "14698": "Having", - "14699": "ĠHub", - "14700": "Ġexpressions", - "14701": "ĠVolume", - "14702": "Ġshocking", - "14703": "ĠReds", - "14704": "Ġreadily", - "14705": "Ġplanets", - "14706": "adata", - "14707": "Ġcollapsed", - "14708": "ĠMadrid", - "14709": "Ġirrit", - "14710": "ipper", - "14711": "ĠEnc", - "14712": "ĠWire", - "14713": "Ġbuzz", - "14714": "ĠGP", - "14715": "asha", - "14716": "Ġaccidentally", - "14717": "uru", - "14718": "Ġfrustrated", - "14719": "ĠSA", - "14720": "Ġhungry", - "14721": "ĠHuff", - "14722": "Ġlabels", - "14723": "anto", - "14724": "ĠEP", - "14725": "Ġbarriers", - "14726": ")|", - "14727": "ĠBerkeley", - "14728": "ĠJets", - "14729": "Ġpairs", - "14730": "ĠLan", - "14731": "James", - "14732": "ĠBear", - "14733": "Ġhumor", - "14734": "ĠLiberty", - "14735": "Ġmagnitude", - "14736": "Ġaging", - "14737": "ĠMason", - "14738": "Ġfriendship", - "14739": "umbling", - "14740": "Ġemerge", - "14741": "Ġnewspapers", - "14742": "Ġambitious", - "14743": "ĠRichards", - "14744": "aternal", - "14745": "Ġ1981", - "14746": "Ġcookies", - "14747": "Ġsculpt", - "14748": "Ġpursuit", - "14749": "Location", - "14750": "Ġscripts", - "14751": "pc", - "14752": "Ġarrangements", - "14753": "Ġdiameter", - "14754": "Ġloses", - "14755": "amation", - "14756": "Ġliqu", - "14757": "ĠJake", - "14758": "arette", - "14759": "Ġunderstands", - "14760": "ĠZen", - "14761": "vm", - "14762": "Ġapprove", - "14763": "Ġwip", - "14764": "Ġultra", - "14765": "Ġintend", - "14766": "ĠDI", - "14767": "ascular", - "14768": "Ġstays", - "14769": "ĠKor", - "14770": "ĠKl", - "14771": "Ġinvesting", - "14772": "La", - "14773": "Ġbelieving", - "14774": "bad", - "14775": "mouth", - "14776": "Ġtaxpayer", - "14777": "ãĥĥ", - "14778": "ĠQuebec", - "14779": "Ġlap", - "14780": "ĠSwiss", - "14781": "drop", - "14782": "Ġdrain", - "14783": "iri", - "14784": "etc", - "14785": "ften", - "14786": "ĠNex", - "14787": "Ġstraw", - "14788": "Ġscreaming", - "14789": "Ġcounted", - "14790": "Ġdamaging", - "14791": "Ġambassador", - "14792": "century", - "14793": "Ġprox", - "14794": "Ġarrests", - "14795": "uv", - "14796": "ilateral", - "14797": "ĠCharg", - "14798": "Ġprescribed", - "14799": "Ġindependently", - "14800": "Ġfierce", - "14801": "ĠBaby", - "14802": "Ġbrave", - "14803": "Ġsuits", - "14804": "=>", - "14805": "Ġbaseline", - "14806": "ĠRate", - "14807": "Ġislands", - "14808": "Ġ((", - "14809": "green", - "14810": "ixels", - "14811": "Ġnamely", - "14812": "ĠVillage", - "14813": "than", - "14814": "amy", - "14815": "Version", - "14816": "gmail", - "14817": "entials", - "14818": "ĠSud", - "14819": "ĠMelbourne", - "14820": "Ġarriving", - "14821": "Ġquantum", - "14822": "eff", - "14823": "ropolitan", - "14824": "Tri", - "14825": "Ġfuneral", - "14826": "ĠIR", - "14827": "ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ", - "14828": "ĠCob", - "14829": "itably", - "14830": "Ġturb", - "14831": "Ġcombo", - "14832": "Review", - "14833": "Ġdeployment", - "14834": "uity", - "14835": "ĠBott", - "14836": "Ġinvisible", - "14837": "Ġrendering", - "14838": "Ġunlocked", - "14839": "Ġaqu", - "14840": "ĠVladimir", - "14841": "Ġpad", - "14842": "ĠBrain", - "14843": "ĠLegacy", - "14844": "dragon", - "14845": "ĠKurdish", - "14846": "Ġsounded", - "14847": "Ġdetained", - "14848": "ĠDM", - "14849": "gary", - "14850": "Ġdaughters", - "14851": "Ġdisturbing", - "14852": "uka", - "14853": "ĠParad", - "14854": "Ġtast", - "14855": "Ġunfortunate", - "14856": "Ġul", - "14857": "emin", - "14858": "Ġattendance", - "14859": "trl", - "14860": "Ġparks", - "14861": "ĠMemorial", - "14862": "ĠAlice", - "14863": "othy", - "14864": "guard", - "14865": "ĠDise", - "14866": "ĠShan", - "14867": "ĠForum", - "14868": "Rich", - "14869": "Ġshifted", - "14870": "uez", - "14871": "Ġlighter", - "14872": "ĠMagn", - "14873": "Ġcod", - "14874": "Sch", - "14875": "hammad", - "14876": "Pub", - "14878": "ĠPokemon", - "14879": "Ġprototype", - "14880": "Ġunre", - "14881": "Base", - "14882": "ĠStudents", - "14883": "ĠReply", - "14884": "ĠCommunist", - "14885": "Ġgau", - "14886": "ĠTyler", - "14887": "IZ", - "14888": "Ġparticipated", - "14889": "Ġsuprem", - "14890": "ĠDetails", - "14891": "Ġvessels", - "14892": "rod", - "14893": "Ġtribe", - "14894": "keep", - "14895": "Ġassumptions", - "14896": "Ġpound", - "14897": "Ġcrude", - "14898": "ĠAvailable", - "14899": "Ġswimming", - "14900": "Ġinclusion", - "14901": "Ġadvances", - "14902": "culation", - "14903": "Ġconservation", - "14904": "Ġoverd", - "14905": "ĠBuffalo", - "14906": "Article", - "14907": "edge", - "14908": "Ġawa", - "14909": "ĠMadison", - "14910": "Ġsidew", - "14911": "Ġcatast", - "14912": "ĠKrist", - "14913": "ucle", - "14914": "ĠHighway", - "14915": "ĠTerror", - "14916": "Ġactivation", - "14917": "Ġunconscious", - "14918": "ĠSatan", - "14919": "ĠSusan", - "14920": "illery", - "14921": "Ġarranged", - "14922": "iop", - "14923": "Ġrumors", - "14924": "urring", - "14925": "think", - "14926": "ĠKeith", - "14927": "ĠKind", - "14928": "Ġavoiding", - "14929": "byn", - "14930": "nut", - "14931": "ĠSpeaker", - "14932": "rus", - "14933": "names", - "14934": "Ġguilt", - "14935": "ĠOlympics", - "14936": "Ġsail", - "14937": "ĠMes", - "14938": "levant", - "14939": "ĠColumbus", - "14940": "aft", - "14941": "City", - "14942": "South", - "14943": "ĠHarvey", - "14944": "ĠPun", - "14945": "Several", - "14946": "Ġmentally", - "14947": "Ġimpress", - "14948": "mount", - "14949": "ĠUbuntu", - "14950": "âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ", - "14951": "ĠSuperman", - "14952": "ĠMPs", - "14953": "Ġintentions", - "14954": "ĠRacing", - "14955": "Ġlikelihood", - "14956": "Ġ240", - "14957": "Total", - "14958": "Ġtoys", - "14959": "ĠWatson", - "14960": "Ġurge", - "14961": "Lear", - "14962": "ĠPaper", - "14963": "Ġoccurring", - "14964": "ĠBeng", - "14965": "ĠCert", - "14966": "Ġstones", - "14967": "Tim", - "14968": "ĠTwin", - "14969": "zb", - "14970": "ĠDynam", - "14971": "Ġpolitician", - "14972": "kens", - "14973": "ĠEnterprise", - "14974": "UTERS", - "14975": "Ġabol", - "14976": "Ġrefresh", - "14977": "Ġarbitrary", - "14978": "pection", - "14979": "Ġtroubles", - "14980": "Ġ});", - "14981": "tv", - "14982": "Ġpilots", - "14983": "Ġdistribute", - "14984": "Ġaudit", - "14985": "Ġpause", - "14986": "original", - "14987": "Ġrivals", - "14988": "£", - "14989": "Fig", - "14990": "TL", - "14991": "abil", - "14992": "rying", - "14993": "Lin", - "14994": "ioned", - "14995": "lon", - "14996": "Ġfancy", - "14997": "Ġcrashed", - "14998": "Ġtract", - "14999": "Ġshed", - "15000": "Ġconsume", - "15001": "Based", - "15002": "download", - "15003": "init", - "15004": "Ġvoltage", - "15005": "Introdu", - "15006": "Ġcondemned", - "15007": "ĠFinance", - "15008": "respect", - "15009": "Ġexcluded", - "15010": "Ġestablishing", - "15011": "heric", - "15012": "Ġheritage", - "15013": "Ġspectacular", - "15014": "Ġunst", - "15015": "ĠSnowden", - "15016": "ĠLane", - "15017": "San", - "15018": "Ġprotections", - "15019": "struction", - "15020": "incinn", - "15021": "Ġmacro", - "15022": "Custom", - "15023": "iosity", - "15024": "Ġesp", - "15025": "Ġfunctioning", - "15026": "Ġmush", - "15027": "Ġpuzzle", - "15028": "Ġethical", - "15029": "Mal", - "15030": "Ġgoverning", - "15031": "ĠFerguson", - "15032": "Ġrestored", - "15033": "Ġstressed", - "15034": "ĠCounter", - "15035": "ĠKas", - "15036": "clip", - "15037": "ANS", - "15038": "Ġseiz", - "15039": "UK", - "15040": "byss", - "15041": "oldown", - "15042": "api", - "15043": "Ġpermanently", - "15044": "ounters", - "15045": "West", - "15046": "Through", - "15047": "Light", - "15048": "atoes", - "15049": "Ġneat", - "15050": "Ġcord", - "15051": "urer", - "15052": "Ġseverely", - "15053": "ĠAven", - "15054": "Ġinterrog", - "15055": "Ġtriple", - "15056": "Given", - "15057": "Number", - "15058": "Ġarise", - "15059": "Ġsher", - "15060": "plant", - "15061": "Ġflower", - "15062": "ĠCou", - "15063": "Ġate", - "15064": "Ġnewer", - "15065": "bul", - "15066": "Ġmeanwhile", - "15067": "ĠLair", - "15068": "Ġadjustment", - "15069": "ĠCopyright", - "15070": "Ġdivers", - "15071": "iological", - "15072": "Ġgamers", - "15073": "oat", - "15074": "Ġhistorically", - "15075": "Ġanalog", - "15076": "Ġlongtime", - "15077": "Ġprescription", - "15078": "ĠMist", - "15079": "ĠHyper", - "15080": "ĠMaine", - "15081": "ĠDeity", - "15082": "Ġmultipl", - "15083": "ĠReincarn", - "15084": "ĠHyd", - "15085": "ĠPic", - "15086": "Sil", - "15087": "rants", - "15088": "ĠCris", - "15089": ".;", - "15090": "({", - "15091": "ependence", - "15092": "Ġrecy", - "15093": "ateur", - "15094": "Ġquad", - "15095": "Ġglob", - "15096": "Ġconced", - "15097": "team", - "15098": "Ġcapitalist", - "15099": "ĠLot", - "15100": "Ġroyal", - "15101": "ĠCyber", - "15102": "Ġblacks", - "15103": "metic", - "15104": "riv", - "15105": "ĠDanny", - "15106": "Ġspo", - "15107": "ĠRO", - "15108": "Ġanimated", - "15109": "rypted", - "15110": "ĠDeputy", - "15111": "Ġrendered", - "15112": "FE", - "15113": "Ġstreak", - "15114": "Ġclouds", - "15115": "ĠDoug", - "15116": "~~~~~~~~", - "15117": "Ġdiscour", - "15118": "ĠVeh", - "15119": "Ġpsychology", - "15120": "ĠJourney", - "15121": "Ġcrystal", - "15122": "ĠFrost", - "15123": "Ġsuspicion", - "15124": "Ġrelate", - "15125": "orus", - "15126": "ĠCrypt", - "15127": "ĠNVIDIA", - "15128": "comed", - "15129": "uting", - "15130": "incinnati", - "15131": "Ġvulnerability", - "15132": "ostic", - "15133": "Ġisolation", - "15134": "Ġcooling", - "15135": "ĠCoalition", - "15136": "Ġ119", - "15137": "Four", - "15138": "ĠDeal", - "15139": "Ġâī", - "15140": "semble", - "15141": "rament", - "15142": "ĠBarcelona", - "15143": "Ġ102", - "15144": "Ġcocaine", - "15145": "ocalypse", - "15146": "Feb", - "15147": "ogenic", - "15148": "Ġmutation", - "15149": "Ġcryptoc", - "15150": "ĠKel", - "15151": "ĠGit", - "15152": "ais", - "15153": "Ġsisters", - "15154": "ANK", - "15155": "Ġactivate", - "15156": "Ter", - "15157": "Ġdread", - "15158": "ylon", - "15159": "Ġpropri", - "15160": "Aust", - "15161": "ĠDefault", - "15162": "Ġoutdoor", - "15163": "Ġsheer", - "15164": "ceive", - "15165": "Ġgently", - "15166": "о", - "15167": "Program", - "15168": "ĠâĨĴ", - "15169": "Ġvegan", - "15170": "ĠCrus", - "15171": "Ġresponsibilities", - "15172": "ĠHR", - "15173": "OLD", - "15174": "Ġprevents", - "15175": "Ġstiff", - "15176": "ĠWere", - "15177": "Ġathletic", - "15178": "ĠScore", - "15179": "Ġ):", - "15180": "Ġcolumns", - "15181": "ĠLoc", - "15182": "available", - "15183": "ĠFram", - "15184": "ĠSessions", - "15185": "Ġcompanion", - "15186": "Ġpacks", - "15188": "ĠKnights", - "15189": "Ġfart", - "15190": "Ġstreams", - "15191": "Ġshore", - "15192": "Ġappeals", - "15193": "ĠPerformance", - "15194": "haul", - "15195": "ĠStra", - "15196": "ĠNag", - "15198": "ĠTransportation", - "15199": "BB", - "15200": "Ev", - "15201": "zan", - "15202": "Public", - "15203": "Ġtwin", - "15204": "ulsion", - "15205": "Mult", - "15206": "Ġelectro", - "15207": "Ġstatue", - "15208": "ationally", - "15209": "ĠNort", - "15210": "Ġinspection", - "15211": "/*", - "15212": "igue", - "15213": "Ġcompassion", - "15214": "ĠTales", - "15215": "ĠStein", - "15216": "ĠScreen", - "15217": "ĠBug", - "15218": "ĠLion", - "15219": "girl", - "15220": "Ġwithdrawal", - "15221": "Ġobjectives", - "15222": "Ġbloody", - "15223": "Ġpreliminary", - "15224": "Ġjacket", - "15225": "Ġdimensions", - "15226": "ĠCool", - "15227": "ĠOccup", - "15228": "Ġwreck", - "15229": "Ġdoubled", - "15230": "anking", - "15231": "Ġ1975", - "15232": "Ġglasses", - "15233": "ĠWang", - "15234": "prov", - "15235": "Path", - "15236": "connected", - "15237": "ĠMulti", - "15238": "ĠNorway", - "15239": "agonist", - "15240": "Ġfeared", - "15241": "Ġtouching", - "15242": "Ġarguably", - "15243": "¯¯¯¯¯¯¯¯", - "15244": "ĠNCAA", - "15245": "chem", - "15246": "Ġspat", - "15247": "ĠWWE", - "15248": "ĠCel", - "15249": "igger", - "15250": "Ġattacker", - "15251": "ĠJoin", - "15252": "object", - "15253": "etta", - "15254": "Ġeliminated", - "15255": "det", - "15256": "Ġdestruct", - "15257": "ĠLucas", - "15258": "ctuary", - "15260": "ĠBrady", - "15261": "ĠBlues", - "15262": "Bay", - "15263": "aukee", - "15264": "Ġtimeline", - "15265": "Ġdelegates", - "15266": "written", - "15267": "ufficient", - "15268": "Ġshapes", - "15269": "Copyright", - "15270": "ouble", - "15271": "service", - "15272": "Ġpione", - "15273": "Ġcolleges", - "15274": "Ġrows", - "15275": "Ġspite", - "15276": "Ġassessed", - "15278": "Ġlease", - "15279": "Ġconfidential", - "15280": "cker", - "15281": "ĠManning", - "15282": "ĠVoice", - "15283": "Ġsealed", - "15284": "Ġcalculate", - "15285": "NO", - "15286": "ĠAssistant", - "15287": "Ġteenager", - "15288": "ulent", - "15289": "atherine", - "15290": "Ġmock", - "15291": "Ġdiamond", - "15292": "Ġfest", - "15293": "Ġswitched", - "15294": "Ġresume", - "15295": "ĠPuerto", - "15296": "Ġlanes", - "15297": "iration", - "15298": "ĠSimilarly", - "15299": "Ġrod", - "15300": "ĠSel", - "15301": "ĠPalace", - "15302": "ĠLimited", - "15303": "eous", - "15304": "Ġvariant", - "15305": "Ġward", - "15306": "Ġ))", - "15307": "Show", - "15308": "OOK", - "15309": "Alex", - "15310": "ĠNep", - "15311": "bris", - "15312": "ĠWikipedia", - "15313": "Ġexceptional", - "15314": "Ġmanages", - "15315": "ĠDraw", - "15316": "Again", - "15317": "Ġcopper", - "15318": "utt", - "15319": "Ġexports", - "15320": "Ġportfolio", - "15321": "Ġelevated", - "15322": "Rated", - "15323": "ĠOtherwise", - "15324": "ĠTact", - "15325": "ĠShel", - "15326": "ĠTX", - "15327": "\"âĢĶ", - "15328": "Ġresur", - "15329": "ĠWa", - "15330": "venant", - "15331": "Ġmonetary", - "15332": "people", - "15333": "Email", - "15334": "Ġfifty", - "15335": "ĠSweet", - "15336": "ĠMalaysia", - "15337": "Ġconfusing", - "15338": "ĠRio", - "15339": "uda", - "15340": "utenant", - "15341": "\");", - "15342": "Ġpraised", - "15343": "Ġvolumes", - "15344": "turn", - "15345": "Ġmature", - "15346": "Ġnonprofit", - "15347": "Ġpassionate", - "15348": "ĠPrivate", - "15349": "Ġ103", - "15350": "Ġdescend", - "15351": "ç¥ŀ", - "15352": "uffy", - "15353": "headed", - "15354": "Whether", - "15355": "rien", - "15356": "zech", - "15357": "beit", - "15358": "Ġchrom", - "15359": "ĠMcM", - "15360": "Ġdancing", - "15361": "Ġeleg", - "15362": "ĠNoticed", - "15364": "Ġadvocacy", - "15365": "ENTS", - "15366": "ambling", - "15367": "ĠMinor", - "15368": "ĠFinn", - "15369": "Ġpriorities", - "15370": "Ġthereof", - "15371": "ĠStage", - "15372": "ĠRogers", - "15373": "Ġsubstitute", - "15374": "ĠJar", - "15375": "ĠJefferson", - "15376": "Ġlightly", - "15378": "ĠLisa", - "15379": "uits", - "15380": "ysical", - "15381": "Ġshifts", - "15382": "Ġdrones", - "15383": "Ġworkplace", - "15384": "Ġresid", - "15385": "ensed", - "15386": "ahn", - "15387": "Ġpreferences", - "15388": "server", - "15389": "Ġdebates", - "15390": "doc", - "15391": "ĠGods", - "15392": "Ġhelicopter", - "15393": "Ġhonour", - "15394": "Ġconsiderably", - "15395": "eded", - "15396": "ĠFemale", - "15397": "ĠAnne", - "15398": "Ġreun", - "15399": "ĠFace", - "15400": "ĠHallow", - "15401": "ĠBudget", - "15402": "Ġcondemn", - "15403": "Ġtender", - "15404": "Prof", - "15405": "ocratic", - "15406": "ĠTurner", - "15407": "ĠAgric", - "15408": "Ġ1976", - "15409": "Ġapt", - "15410": "disc", - "15411": "ĠFighter", - "15412": "ĠAur", - "15413": "Ġgarbage", - "15414": "input", - "15415": "ĠKarl", - "15416": "ĠOliver", - "15417": "ĠLanguage", - "15418": "kn", - "15419": "Non", - "15420": "ĠClar", - "15421": "Ġtraditions", - "15422": "Ġadvertisement", - "15423": "ĠSor", - "15424": "Ġarchive", - "15425": "Ġvillages", - "15427": "Ġimplementing", - "15428": "waukee", - "15429": "Ġdietary", - "15430": "Ġswitching", - "15431": "Republic", - "15432": "Ġvelocity", - "15433": "Ġcit", - "15434": "ĠAwards", - "15435": "Ġfinancing", - "15436": "Ġlasted", - "15437": ")]", - "15438": "Ġreminder", - "15439": "Person", - "15440": "Ġprecision", - "15441": "Ġdesigners", - "15442": "ĠFried", - "15443": "ĠBorder", - "15444": "Ġtragic", - "15445": "Ġwield", - "15446": "Ġinitiatives", - "15447": "ĠTank", - "15448": "wer", - "15449": "Ġjoins", - "15450": "Ro", - "15451": "inery", - "15452": "Ġarrow", - "15453": "Ġgenerating", - "15454": "founder", - "15455": "Ġsearches", - "15456": "Ġrandomly", - "15457": "Access", - "15458": "Ġbatch", - "15459": "Ġposed", - "15460": "lat", - "15461": "Ġpursuing", - "15462": "asa", - "15463": "Ġtestified", - "15464": "forming", - "15465": "ĠShar", - "15466": "wiki", - "15467": "ĠEither", - "15468": "Sometimes", - "15469": "Ġsenators", - "15470": "ĠJohnny", - "15471": "ĠTaliban", - "15472": "ĠGPS", - "15473": "\":\"/", - "15474": "ãģ®å", - "15475": "Ġanalyzed", - "15476": "ĠRubio", - "15477": "ĠMovement", - "15478": "opard", - "15479": "iii", - "15480": "Stand", - "15481": "fight", - "15482": "Ġignoring", - "15483": "iang", - "15484": "ĠGN", - "15485": "soever", - "15486": "ĠSTAT", - "15487": "Ġrefusing", - "15488": "Ġsweat", - "15489": "Ġbay", - "15490": "PORT", - "15491": "irmed", - "15492": "aky", - "15493": "Ġdispro", - "15494": "Ġlabeled", - "15495": "Ġ108", - "15496": "Hello", - "15497": "Ġpleasant", - "15498": "aba", - "15499": "Ġtriumph", - "15500": "Ġaboard", - "15501": "Ġincom", - "15502": "ĠCrow", - "15503": "lett", - "15504": "Ġfolk", - "15505": "Ġchase", - "15506": "``", - "15507": "ĠBrus", - "15508": "Ġteens", - "15509": "cue", - "15510": "Ġterrain", - "15511": "hyd", - "15512": "ilight", - "15513": "ORY", - "15514": "Support", - "15515": "ews", - "15516": "lli", - "15517": "raints", - "15518": "ĠCand", - "15519": "Ġabused", - "15520": "achment", - "15521": "larg", - "15522": "Bas", - "15523": "ĠCancer", - "15524": "Ġ1978", - "15525": "Ġsupporter", - "15526": "access", - "15527": "ĠTermin", - "15528": "ĠTampa", - "15529": "ĠANY", - "15530": "Ġnewest", - "15531": "ĠCriminal", - "15532": "edu", - "15533": "Ġ1930", - "15534": "Ġadmits", - "15535": "Ġende", - "15536": "Ġfailures", - "15537": "urate", - "15538": "fulness", - "15539": "cycl", - "15540": "ĠSubject", - "15541": "Ġinfinite", - "15542": "three", - "15543": "WA", - "15544": "pit", - "15545": "ĠInstall", - "15546": "Rad", - "15547": "iliation", - "15548": "GM", - "15549": "Ġcontinent", - "15550": "Ġaccommodate", - "15551": "ĠClay", - "15552": "Ġpup", - "15553": "ĠFunction", - "15554": "Ġhammer", - "15555": "ĠAlberta", - "15556": "Ġrevised", - "15557": "Ġminorities", - "15558": "Ġmeasurement", - "15559": "Connell", - "15560": "Ġdisable", - "15561": "ĠMix", - "15562": "Incre", - "15563": "Ġfork", - "15564": "ĠRosen", - "15565": "Ġimplies", - "15566": "umblr", - "15567": "ANG", - "15568": "Ġproteins", - "15569": "Ġaggression", - "15570": "Ġfacilitate", - "15571": "SN", - "15572": "Ġillegally", - "15573": "uer", - "15574": "Ġacadem", - "15575": "Ġpuzz", - "15576": "ĠShift", - "15577": "pay", - "15578": "ollo", - "15579": "Ġaudiences", - "15580": "Build", - "15581": "Ġnoble", - "15582": "Ġsyntax", - "15583": "âĺħ", - "15584": "Ġbeam", - "15585": "ĠBed", - "15586": "ĠAld", - "15587": "Ġorigins", - "15588": "video", - "15589": "Ġ1977", - "15590": "ĠAssault", - "15591": "Ġgarage", - "15592": "Team", - "15593": "Ġverdict", - "15594": "Ġdwar", - "15595": "ĠVirtual", - "15596": "event", - "15597": "Keep", - "15598": "Ġsentiment", - "15599": "Ġwildlife", - "15600": "shirt", - "15601": "Ġburg", - "15602": "Ġrecommendation", - "15603": "represent", - "15604": "Ġgallery", - "15605": "owners", - "15606": "Ġscholar", - "15607": "Ġconvenience", - "15608": "ĠSwift", - "15609": "Ġconvinc", - "15610": "Cap", - "15611": "Ġwarfare", - "15612": "ĠVisual", - "15613": "Ġconstitute", - "15614": "Ġabort", - "15615": "ĠWeather", - "15616": "ĠLooking", - "15617": "ĠHem", - "15618": "Ġmartial", - "15619": "Ġincoming", - "15620": "etition", - "15621": "Ġtolerance", - "15622": "ĠCreated", - "15623": "Ġflows", - "15624": "ĠElder", - "15625": "Ġsouls", - "15626": "Ġfoul", - "15627": "ĠPain", - "15628": "ĠCAN", - "15629": "Ġ220", - "15630": "bc", - "15631": "hend", - "15632": "Ġgenius", - "15633": "Real", - "15634": "ĠWr", - "15635": "ometer", - "15636": "pad", - "15637": "Ġlimiting", - "15638": "ĠSi", - "15639": "ĠLore", - "15640": "ĠAdventures", - "15641": "Ġvaried", - "15642": "Disc", - "15643": "fin", - "15644": "ĠPersonal", - "15645": "Chris", - "15646": "Ġinvented", - "15647": "Ġdive", - "15648": "ĠRise", - "15649": "Ġoz", - "15650": "ĠComics", - "15651": "Ġexpose", - "15652": "ĠReb", - "15653": "letters", - "15654": "site", - "15655": "imated", - "15656": "Ġhacking", - "15657": "Ġeducated", - "15658": "ĠNobody", - "15659": "Ġdepri", - "15660": "Ġincentive", - "15661": "ãĤ·", - "15662": "Ġoversight", - "15663": "Ġtribes", - "15664": "ĠBelgium", - "15665": "Ġlicensing", - "15666": "ourt", - "15667": "Product", - "15668": "ahl", - "15669": "ĠGem", - "15670": "Ġspecialist", - "15671": "Ġcra", - "15672": "anners", - "15673": "ĠCorbyn", - "15674": "Ġ1973", - "15675": "READ", - "15676": "Ġsummar", - "15677": "Ġoverlook", - "15678": "ĠApplication", - "15679": "Ġinappropriate", - "15680": "Ġdownloaded", - "15681": "Que", - "15682": "ĠBears", - "15683": "Ġthumb", - "15684": "ĠCharacter", - "15685": "ĠReincarnated", - "15686": "ĠSid", - "15687": "Ġdemonstrates", - "15688": "sky", - "15689": "ĠBloomberg", - "15690": "ĠArray", - "15691": "ĠResults", - "15692": "ĠFourth", - "15693": "ĠEDT", - "15694": "ĠOscar", - "15695": "cend", - "15696": "Ġ106", - "15697": "ĠNULL", - "15698": "ĠHERE", - "15699": "match", - "15700": "ĠBrun", - "15701": "Ġglucose", - "15702": "ieg", - "15703": "egu", - "15704": "Ġcertified", - "15705": "Ġrelie", - "15706": "Ġhumanitarian", - "15707": "Ġprayers", - "15708": "King", - "15709": "Ġnan", - "15710": "hou", - "15712": "ulu", - "15713": "Ġrenewable", - "15714": "Ġdistinguish", - "15715": "Ġdense", - "15716": "ĠVent", - "15717": "ĠPackage", - "15718": "ĠBoss", - "15719": "Ġeditors", - "15720": "Ġmigr", - "15721": "Tra", - "15722": "ĠPeters", - "15723": "ĠArctic", - "15725": "ĠCape", - "15726": "Ġlocally", - "15727": "Ġlasting", - "15728": "Ġhandy", - "15729": ".).", - "15730": "Pan", - "15731": "ĠRES", - "15732": "Index", - "15733": "Ġtensions", - "15734": "Ġformerly", - "15735": "Ġideological", - "15736": "Ġsensors", - "15737": "Ġdealers", - "15738": "Ġdefines", - "15739": "Sk", - "15740": "Ġproceeds", - "15741": "Ġproxy", - "15742": "azines", - "15743": "ĠBash", - "15744": "ĠPad", - "15745": "ĠCraft", - "15746": "ealous", - "15747": "Ġsheets", - "15748": "ometry", - "15749": "June", - "15750": "clock", - "15751": "TT", - "15752": "ĠTheatre", - "15753": "ĠBuzz", - "15754": "Ġchapters", - "15755": "Ġmillenn", - "15756": "Ġdough", - "15757": "ĠCongressional", - "15758": "Ġimagined", - "15759": "avior", - "15760": "Ġclinic", - "15761": "Ġ1945", - "15762": "Ġholder", - "15763": "root", - "15764": "olester", - "15765": "Ġrestart", - "15766": "BN", - "15767": "ĠHamas", - "15768": "ĠJob", - "15769": "Ġorb", - "15770": "Ġram", - "15771": "Ġdisclose", - "15772": "Ġtranslate", - "15773": "Ġimmigrant", - "15774": "Ġannoying", - "15775": "Ġtreaty", - "15776": "anium", - "15777": "ĠTea", - "15778": "ĠLegion", - "15779": "Ġcrowds", - "15780": "ĠBec", - "15781": "ĠAer", - "15782": "ohyd", - "15783": "Bro", - "15784": "Looking", - "15785": "Ġlbs", - "15786": "Ġaggress", - "15787": "Ġseam", - "15788": "Ġintercept", - "15789": "ĠMI", - "15790": "mercial", - "15791": "activ", - "15792": "ĠCit", - "15793": "Ġdimension", - "15794": "Ġconsistency", - "15795": "Ġrushing", - "15796": "ĠDouglas", - "15797": "Ġtrim", - "15798": "Install", - "15799": "icker", - "15800": "Ġshy", - "15802": "Ġmentions", - "15803": "pelled", - "15804": "ĠTak", - "15805": "cost", - "15806": "Ġclassroom", - "15807": "Ġfortune", - "15808": "driven", - "15809": "Ġunle", - "15810": "ĠWheel", - "15811": "Ġinvestor", - "15812": "ĠMasters", - "15813": "kit", - "15814": "Ġassociations", - "15815": "ĠEvolution", - "15816": "oping", - "15817": "uscript", - "15818": "Ġprovincial", - "15819": "ĠWalter", - "15820": "avi", - "15821": "SO", - "15822": "Ġunlimited", - "15823": "English", - "15824": "ĠCards", - "15825": "ĠEbola", - "15826": "nered", - "15827": "Ġrevenge", - "15828": "Ġoutright", - "15829": "umper", - "15830": "Ġfitting", - "15831": "ĠSolid", - "15832": "Ġformally", - "15833": "Ġproblematic", - "15834": "Ġhazard", - "15835": "Ġencryption", - "15836": "Ġstraightforward", - "15837": "ĠAK", - "15838": "Ġpse", - "15839": "ĠOrb", - "15840": "ĠChamber", - "15841": "ĠMak", - "15842": "Contents", - "15843": "Ġloyalty", - "15844": "Ġlyrics", - "15845": "ĠSym", - "15846": "Ġwelcomed", - "15847": "Ġcooked", - "15848": "Ġmonop", - "15849": "Ġnurse", - "15850": "Ġmisleading", - "15851": "Ġeternal", - "15852": "Ġshifting", - "15853": "Ġ+=", - "15854": "Vis", - "15855": "Ġinstitutional", - "15856": "illary", - "15857": "Ġpant", - "15858": "VERT", - "15859": "ĠACC", - "15860": "ĠEnh", - "15861": "Ġincon", - "15862": "ĠREUTERS", - "15863": "Ġdonated", - "15864": "â̦â̦â̦â̦", - "15865": "Intern", - "15866": "Ġexhibit", - "15867": "Ġtire", - "15868": "ĠRic", - "15869": "ĠChampion", - "15870": "ĠMuhammad", - "15871": "NING", - "15872": "ĠSoccer", - "15873": "Ġmobility", - "15874": "Ġvarying", - "15875": "ĠMovie", - "15876": "Ġlord", - "15877": "oak", - "15878": "Field", - "15879": "Ġvector", - "15880": "usions", - "15881": "Ġscrap", - "15882": "Ġenabling", - "15883": "make", - "15884": "Tor", - "15885": ".*", - "15886": "||", - "15887": "ĠWebsite", - "15888": "ĠNPC", - "15889": "Ġsocialist", - "15890": "ĠBilly", - "15891": "ĠAdditional", - "15892": "Ġcargo", - "15893": "Ġfarms", - "15894": "ĠSoon", - "15895": "ĠPrize", - "15896": "Ġmidnight", - "15897": "Ġ900", - "15898": "seen", - "15899": "ĠSpot", - "15900": "Ġsheep", - "15901": "Ġsponsored", - "15902": "ĠHi", - "15903": "ĠJump", - "15904": "Ġ1967", - "15905": "Microsoft", - "15906": "ĠAgent", - "15907": "Ġcharts", - "15908": "dir", - "15909": "Ġadjacent", - "15910": "Ġtricks", - "15911": "Ġmanga", - "15912": "Ġexagger", - "15913": "/>", - "15914": "football", - "15915": "ĠFCC", - "15916": "GC", - "15917": "ĠTier", - "15918": "andra", - "15919": "OUND", - "15920": "%),", - "15921": "Ġfruits", - "15922": "VC", - "15923": "ĠAA", - "15924": "Rober", - "15925": "Ġmidst", - "15926": "âĹ", - "15927": "anka", - "15928": "Ġlegislature", - "15929": "ĠNeil", - "15930": "Ġtourists", - "15931": "\"\"", - "15932": "ĠWarning", - "15933": "ĠNevertheless", - "15934": "ĠOfficial", - "15935": "ĠWhatever", - "15936": "Ġmold", - "15937": "Ġdrafted", - "15938": "Ġsubstances", - "15939": "Ġbreed", - "15940": "Ġtags", - "15941": "ĠTask", - "15942": "Ġverb", - "15943": "Ġmanufactured", - "15944": "comments", - "15945": "ĠPolish", - "15946": "Prov", - "15947": "Ġdetermines", - "15948": "Obama", - "15949": "kers", - "15950": "Ġutterly", - "15951": "Ġsect", - "15952": "sche", - "15953": "ĠGates", - "15954": "ĠChap", - "15955": "Ġaluminum", - "15956": "Ġzombie", - "15957": "ĠTouch", - "15958": "ĠUP", - "15959": "Ġsatisfy", - "15960": "Ġpredomin", - "15961": "ascript", - "15962": "Ġelaborate", - "15963": "Ġ1968", - "15964": "Ġmeasuring", - "15965": "ĠVari", - "15966": "anyahu", - "15967": "Ġsir", - "15968": "ulates", - "15969": "idges", - "15970": "ickets", - "15971": "ĠSpencer", - "15972": "TM", - "15973": "oubted", - "15974": "Ġprey", - "15975": "Ġinstalling", - "15976": "ĠCab", - "15977": "reed", - "15978": "reated", - "15979": "Supp", - "15980": "Ġwrist", - "15981": "ĠKerry", - "15983": "ĠKle", - "15984": "ĠRachel", - "15985": "Ġcotton", - "15986": "ĠARE", - "15987": "ĠEle", - "15988": "Control", - "15989": "Ġloads", - "15990": "ĠDod", - "15991": "anas", - "15992": "bone", - "15993": "Ġclassical", - "15994": "ĠRegional", - "15995": "ĠInteg", - "15996": "VM", - "15997": "Ġdesires", - "15998": "Ġautism", - "15999": "supported", - "16000": "ĠMessage", - "16001": "Ġcompact", - "16002": "writer", - "16003": "Ġ109", - "16004": "ĠHurricane", - "16005": "cision", - "16006": "Ġcycles", - "16007": "Ġdrill", - "16008": "Ġcolleague", - "16009": "Ġmaker", - "16010": "German", - "16011": "Ġmistaken", - "16012": "Sun", - "16013": "ĠGay", - "16014": "Ġwhatsoever", - "16015": "Ġsells", - "16016": "ĠAirl", - "16017": "liv", - "16018": "ĠOption", - "16019": "Ġsolved", - "16020": "Ġsectors", - "16021": "Ġhorizontal", - "16022": "Ġequation", - "16023": "ĠSkill", - "16024": "ĠBio", - "16025": "gement", - "16026": "ĠSnap", - "16027": "ĠLegal", - "16028": "Ġtrademark", - "16029": "Ġmakeup", - "16030": "Ġassembled", - "16031": "Ġsaves", - "16032": "ĠHalloween", - "16033": "ĠVermont", - "16034": "ĠFROM", - "16035": "Ġfarming", - "16036": "ĠPodcast", - "16037": "acceptable", - "16038": "ĠHigher", - "16039": "Ġasleep", - "16040": "ullivan", - "16041": "Ġreferen", - "16042": "ĠLev", - "16043": "Ġbullets", - "16044": "oko", - "16045": "HC", - "16046": "Ġstairs", - "16047": "Ġmaintains", - "16048": "ĠLower", - "16049": "ĠVi", - "16050": "Ġmarine", - "16051": "Ġacres", - "16052": "Ġcoordinator", - "16053": "ĠJoh", - "16054": "Ġcounterparts", - "16055": "ĠBrothers", - "16056": "Ġindict", - "16057": "bra", - "16058": "Ġchunk", - "16059": "Ġcents", - "16060": "Home", - "16061": "ĠMonth", - "16062": "Ġaccordingly", - "16063": "ifles", - "16064": "ĠGermans", - "16065": "ĠSyn", - "16066": "Hub", - "16067": "Ġeyeb", - "16068": "âĶĢâĶĢâĶĢâĶĢ", - "16069": "Ġranges", - "16070": "ĠHolland", - "16071": "ĠRobot", - "16072": "fc", - "16073": "Mike", - "16074": "Ġplasma", - "16075": "Ġswap", - "16076": "Ġathlete", - "16077": "ĠRams", - "16078": ",'\"", - "16079": "Ġinfections", - "16080": "Ġcorrid", - "16081": "Ġvib", - "16082": "Ġpatches", - "16083": "Ġtraditionally", - "16084": "Ġrevelation", - "16085": "Ġsweep", - "16086": "Ġglance", - "16087": "Ġinex", - "16089": "ĠRaw", - "16090": "working", - "16091": "osures", - "16092": "ĠDat", - "16093": "ĠLynch", - "16094": "Ġleverage", - "16095": "ĠReid", - "16096": "Ġcorrelation", - "16097": "iances", - "16098": "avascript", - "16099": "Ġrepository", - "16100": "retty", - "16101": "Ġ1972", - "16103": "Ġoun", - "16104": "pol", - "16105": "ĠReed", - "16106": "Ġtactical", - "16107": "isite", - "16108": "Apple", - "16109": "ĠQuinn", - "16110": "Ġraped", - "16111": "illo", - "16112": "Europe", - "16113": "Ġalgorithms", - "16114": "ĠRodrig", - "16115": "iu", - "16116": "Ġillum", - "16117": "Ġfame", - "16118": "Ġintroducing", - "16119": "Ġdelays", - "16120": "ĠRaiders", - "16121": "Ġwhistle", - "16122": "Ġnovels", - "16123": "ĠReally", - "16124": "Ġderiv", - "16125": "Ġpublications", - "16126": "ĠNeither", - "16127": "ĠCommerce", - "16128": "Ġaston", - "16129": "language", - "16130": "Notes", - "16131": "ĠRoth", - "16132": "ĠFear", - "16133": "Ġmate", - "16134": "Ġparade", - "16135": "ĠQB", - "16136": "Ġmaneu", - "16137": "ĠCincinnati", - "16138": "mitting", - "16139": "Ġwaist", - "16140": "ĠRew", - "16141": "Ġdiscont", - "16142": "а", - "16143": "Ġstaring", - "16144": "Ġalias", - "16145": "Ġsecurities", - "16146": "Ġtoilet", - "16147": "ĠJedi", - "16148": "Ġunlaw", - "16149": "vised", - "16150": "////////", - "16151": "](", - "16152": "ĠWeiss", - "16153": "Ġprest", - "16154": "ĠCompan", - "16155": "Ġmemo", - "16156": "ĠGrace", - "16157": "July", - "16158": "ĠElite", - "16159": "center", - "16160": "ĠStay", - "16161": "Ġgalaxy", - "16162": "Ġtooth", - "16163": "ĠSettings", - "16164": "Ġsubjected", - "16165": "ãĤ¦", - "16166": "Ġlineback", - "16167": "Ġretailers", - "16168": "ĠWant", - "16169": "Ġdangers", - "16170": "Air", - "16171": "Ġvoluntary", - "16172": "eway", - "16173": "Ġinterpreted", - "16174": "otine", - "16175": "ç", - "16176": "Ġpel", - "16177": "Service", - "16178": "ĠEventually", - "16179": "Ġcareers", - "16180": "Ġthreaten", - "16181": "Ġmemor", - "16182": "ĠBradley", - "16183": "ancies", - "16184": "sn", - "16185": "ĠUnknown", - "16186": "National", - "16187": "Ġshadows", - "16188": "ailand", - "16189": "ĠDash", - "16190": "Everyone", - "16191": "izzard", - "16192": "March", - "16193": "=(", - "16194": "Ġpulls", - "16195": "Ġstranger", - "16196": "Ġbackwards", - "16197": "ĠBernard", - "16198": "imensional", - "16199": "Ġchron", - "16200": "Ġtheoretical", - "16201": "ktop", - "16202": "Ġware", - "16203": "ĠInvestig", - "16204": "ĠIniti", - "16205": "ĠOperations", - "16206": "oven", - "16207": "ocide", - "16208": "*/", - "16209": "Ġflames", - "16210": "ĠCash", - "16211": "shit", - "16212": "Ġcab", - "16213": "ĠAnaly", - "16214": "ĠSeah", - "16215": "Ġdefining", - "16216": "Ġordering", - "16217": "Ġimmun", - "16218": "Ġpersistent", - "16219": "ACH", - "16220": "Russian", - "16221": "mans", - "16222": "Ġhind", - "16223": "Ġphotography", - "16224": "©", - "16225": "Ġhug", - "16226": "Ġ107", - "16227": "ĠHence", - "16228": "iots", - "16229": "udeau", - "16230": "Ġsubsidies", - "16231": "Ġroutinely", - "16232": "ĠDevice", - "16233": "itic", - "16234": "Ġdisgust", - "16235": "lander", - "16236": "Ġ1940", - "16237": "Ġassignment", - "16238": "ĠBesides", - "16239": "wick", - "16240": "ĠDust", - "16241": "usc", - "16242": "structed", - "16244": "develop", - "16245": "Ġfond", - "16246": "Ġintersection", - "16247": "Ġdignity", - "16248": "Ġcommissioner", - "16249": "Without", - "16250": "reach", - "16251": "Ġcartoon", - "16252": "Ġscales", - "16253": "ãĥŃ", - "16254": "FIG", - "16255": "Ġsurveys", - "16256": "ĠIndonesia", - "16257": "Ġartwork", - "16258": "Ġunch", - "16259": "Ġcycling", - "16260": "unct", - "16261": "auer", - "16262": "orate", - "16263": "ĠObviously", - "16264": "Ġcharacterized", - "16265": "feld", - "16266": "Ġaffirm", - "16267": "Ġinnings", - "16268": "Ġé", - "16269": "Ġaliens", - "16270": "Ġcloth", - "16271": "etooth", - "16272": "ĠCertain", - "16273": "§", - "16274": "Ġdigest", - "16275": "know", - "16276": "ĠXL", - "16277": "Ġpredictions", - "16278": "Ġdin", - "16279": "WAR", - "16280": "Ġaftermath", - "16281": "Example", - "16282": "ĠSuccess", - "16283": "ĠThr", - "16284": "IGN", - "16285": "Ġminer", - "16286": "Bus", - "16287": "Ġclarity", - "16288": "heimer", - "16289": "ĠOUT", - "16290": "ĠSend", - "16291": "ĠCircle", - "16292": "ĠDiet", - "16293": "Ġpronounced", - "16294": "Ġcreators", - "16295": "Ġearthquake", - "16296": "attery", - "16297": "geons", - "16298": "Ġod", - "16299": "Ġlaying", - "16300": "orp", - "16301": "Ult", - "16302": "project", - "16303": "Ġundermin", - "16304": "Ġsequel", - "16305": "Sam", - "16306": "ĠDarkness", - "16307": "Ġreception", - "16308": "bull", - "16309": "YS", - "16310": "ĠVir", - "16311": "Ġsequences", - "16312": "ĠCoin", - "16313": "Ġoutfit", - "16314": "ĠWait", - "16316": "Ġdelivers", - "16317": "......", - "16318": "Ġblown", - "16319": "ĠEsc", - "16320": "ĠMath", - "16321": "perm", - "16322": "ĠUl", - "16323": "Ġglim", - "16324": "Ġfacial", - "16325": "Ġgreenhouse", - "16326": "Ġtokens", - "16327": "/-", - "16328": "ĠAnnual", - "16329": "ĠONE", - "16330": "Ġteenage", - "16331": "ĠPhysical", - "16332": "ĠLang", - "16333": "ĠCelt", - "16334": "Ġsued", - "16335": "ividually", - "16336": "Ġpatience", - "16337": "chair", - "16338": "regular", - "16339": "Ġaug", - "16340": "inv", - "16341": "except", - "16342": "ĠLil", - "16343": "Ġnest", - "16344": "fd", - "16345": "sum", - "16346": "ĠChase", - "16347": "Russia", - "16348": "ĠJennifer", - "16349": "Ġoffseason", - "16350": "Overall", - "16351": "Fore", - "16352": "Ġriot", - "16353": "Aud", - "16354": "former", - "16355": "Ġdefenders", - "16356": "ĠCT", - "16357": "iotic", - "16358": "ribly", - "16359": "Ġautomated", - "16360": "Ġpenis", - "16361": "Ġinsist", - "16362": "Ġdiagram", - "16363": "ĠSQL", - "16364": "ĠGarc", - "16365": "Ġwitch", - "16366": "client", - "16367": "ierra", - "16368": "ambers", - "16369": "Ġrecount", - "16370": "far", - "16371": "Very", - "16372": "osterone", - "16373": "Ġappreciated", - "16374": "ĠPerfect", - "16375": "Section", - "16376": "Ġdoses", - "16377": "ocaust", - "16378": "Ġcostly", - "16379": "Ġgrams", - "16380": "ĠShi", - "16381": "Ġwrestling", - "16382": "Ġ1971", - "16383": "Ġtrophy", - "16384": "Ġnerve", - "16385": "ĠKaz", - "16386": "ĠExperience", - "16387": "Ġpledged", - "16388": "Ġplayback", - "16389": "Ġcreativity", - "16390": "bye", - "16391": "Ġattackers", - "16392": "Ġholders", - "16393": "ĠCoach", - "16394": "ĠPhD", - "16395": "Ġtransfers", - "16396": "Ġcolored", - "16397": "ĠHindu", - "16398": "Ġdrown", - "16399": "Ġlistened", - "16400": "ĠWA", - "16401": "iasm", - "16402": "PO", - "16403": "Ġappealing", - "16404": "Ġdisclosed", - "16405": "ĠChicken", - "16406": "agging", - "16407": "Ġpleaded", - "16408": "Ġnavigation", - "16409": "ĠReturns", - "16410": "Ġ[[", - "16411": "ROR", - "16412": "EA", - "16413": "Ġphotographer", - "16414": "ĠRider", - "16415": "ippers", - "16416": "Ġslice", - "16417": "Ġerect", - "16418": "Ġhed", - "16419": "issance", - "16420": "ĠVikings", - "16421": "urious", - "16422": "Ġappet", - "16423": "oubtedly", - "16424": "Child", - "16425": "Ġauthentic", - "16426": "oos", - "16427": "ĠMaking", - "16428": "Ġannouncing", - "16429": "Ġbod", - "16430": "Ġmeter", - "16431": "ĠNine", - "16432": "ĠRogue", - "16433": "Ġworkforce", - "16434": "Ġrenewed", - "16435": "Ġorganisations", - "16436": "acs", - "16437": "PLE", - "16438": "Short", - "16439": "Ġcompounds", - "16440": "ĠVisit", - "16441": "Ġenvelop", - "16442": "earth", - "16443": "Ġsupportive", - "16444": "ggle", - "16445": "ĠBrussels", - "16446": "ĠGuild", - "16447": "Create", - "16448": "REL", - "16449": "Ġaveraged", - "16450": "Ġ1969", - "16451": "riages", - "16452": "Ġlengthy", - "16453": "Ġforgot", - "16454": "Okay", - "16455": "ĠErd", - "16456": "Ġdealer", - "16457": "Ġrecession", - "16458": "DD", - "16459": "Ġdesperately", - "16460": "Ġhunger", - "16461": "Ġsticks", - "16462": "Ġmph", - "16463": "ĠFaith", - "16464": "Ġintentionally", - "16465": "Ġdemol", - "16466": "ueller", - "16467": "ĠSale", - "16468": "Ġdebris", - "16469": "spring", - "16470": "Ġleap", - "16471": ">>>>", - "16472": "Ġcontainers", - "16473": "selling", - "16474": "ranean", - "16475": "attering", - "16476": "Ġcommented", - "16477": "ĠCM", - "16478": "onut", - "16479": "Ġwoods", - "16480": "especially", - "16481": "Ġorganize", - "16482": "ivic", - "16483": "ĠWoods", - "16484": "anga", - "16485": "squ", - "16486": "Ġmaj", - "16487": "amon", - "16488": "Ġaxis", - "16489": "Ġ1974", - "16490": "ĠDenmark", - "16491": "Ġwarrior", - "16492": "ĠPand", - "16493": "Ġoutlined", - "16494": "ĠBO", - "16495": "insula", - "16496": "zilla", - "16497": "ebook", - "16498": "Ġdare", - "16499": "Ġsearched", - "16500": "Ġnavigate", - "16501": "Sn", - "16502": "writing", - "16503": "Ġunited", - "16504": "Japan", - "16505": "ĠHebrew", - "16506": "Ġflame", - "16507": "Ġrelies", - "16508": "Ġcatching", - "16509": "ĠSho", - "16510": "Ġimprisonment", - "16511": "Ġpockets", - "16512": "Ġclosure", - "16513": "ĠFam", - "16514": "tim", - "16515": "adequ", - "16516": "Activity", - "16517": "Ġrecruiting", - "16518": "ĠWATCH", - "16519": "ĠArgentina", - "16520": "dest", - "16521": "Ġapologize", - "16522": "oro", - "16523": "Ġlacks", - "16524": "Ġtuned", - "16525": "ĠGriffin", - "16526": "Ġinfamous", - "16527": "Ġcelebrity", - "16528": "sson", - "16529": "Ġ----------------------------------------------------------------", - "16530": "ĠIsis", - "16531": "ĠDisplay", - "16532": "Ġcredibility", - "16533": "Ġeconomies", - "16534": "Ġheadline", - "16535": "ĠCowboys", - "16536": "Ġindef", - "16537": "Ġlately", - "16538": "Ġincentives", - "16539": "button", - "16540": "ĠMob", - "16541": "Aut", - "16542": "Ġresigned", - "16543": "ĠOm", - "16544": "camp", - "16545": "Ġprofiles", - "16546": "Ġschemes", - "16547": "olphins", - "16548": "ayed", - "16549": "Clinton", - "16550": "enh", - "16551": "ĠYahoo", - "16552": "Ġabst", - "16553": "Ġank", - "16554": "suits", - "16555": "Ġwished", - "16556": "ĠMarco", - "16557": "udden", - "16558": "Ġsphere", - "16559": "ĠBishop", - "16560": "Ġincorporated", - "16561": "ĠPlant", - "16563": "Ġhated", - "16564": "pic", - "16565": "Ġdonate", - "16566": "Ġlined", - "16567": "Ġbeans", - "16568": "Ġstealing", - "16569": "Ġcostume", - "16570": "Ġsheriff", - "16571": "Ġforty", - "16572": "Ġintact", - "16573": "Ġadapted", - "16574": "Ġtravelling", - "16575": "bart", - "16576": "Ġnicely", - "16577": "Ġdried", - "16578": "Ġscal", - "16579": "osity", - "16580": "NOTE", - "16581": "ĠBh", - "16582": "ĠBroncos", - "16583": "ĠIgn", - "16584": "Ġintimate", - "16585": "Ġchemistry", - "16586": "Ġoptimal", - "16587": "Deb", - "16588": "ĠGeneration", - "16589": "Ġ],", - "16590": "ichi", - "16591": "ĠWii", - "16592": "ĠYOUR", - "16593": "ventions", - "16594": "Write", - "16595": "Ġpopul", - "16596": "unning", - "16597": "ĠWor", - "16598": "Vol", - "16599": "Ġqueen", - "16600": "heads", - "16601": "KK", - "16602": "Ġanalyze", - "16603": "opic", - "16604": "earchers", - "16605": "Ġdot", - "16606": "legraph", - "16607": "astically", - "16608": "Ġupgrades", - "16609": "Ġcares", - "16610": "Ġextending", - "16611": "Ġfreeze", - "16612": "Ġinability", - "16613": "Ġorgans", - "16614": "Ġpretend", - "16615": "Ġoutlet", - "16617": "olan", - "16618": "ĠMall", - "16619": "uling", - "16620": "talk", - "16621": "Ġexpressing", - "16622": "ĠAlways", - "16623": "ĠBegin", - "16624": "files", - "16625": "Ġlicenses", - "16626": "%%", - "16627": "ĠMitt", - "16628": "Ġfilters", - "16629": "ĠMilwaukee", - "16630": "GN", - "16631": "Ġunfold", - "16632": "Mo", - "16633": "Ġnutrition", - "16634": "ppo", - "16635": "Bo", - "16636": "Ġfounding", - "16637": "Ġundermine", - "16638": "Ġeasiest", - "16639": "ĠCzech", - "16640": "ĠMack", - "16641": "Ġsexuality", - "16642": "ĠNixon", - "16643": "Win", - "16644": "ĠArn", - "16645": "ĠKin", - "16646": "ãĤ£", - "16647": "icer", - "16648": "Ġfortun", - "16649": "Ġsurfaces", - "16650": "aghd", - "16651": "Ġcarriers", - "16652": "ĠPART", - "16653": "ĠTib", - "16654": "Ġinterval", - "16655": "Ġfrustrating", - "16656": "ĠShip", - "16657": "ĠArmed", - "16658": "ffe", - "16659": "Ġboats", - "16660": "ĠAbraham", - "16661": "inis", - "16662": "Ġsuited", - "16663": "thread", - "16664": "iov", - "16665": "abul", - "16666": "ĠVenezuela", - "16667": "Ġtom", - "16668": "super", - "16669": "Ġcastle", - "16670": "although", - "16671": "ioxide", - "16672": "eches", - "16673": "Ġevolutionary", - "16674": "Ġnegotiate", - "16675": "Ġconfronted", - "16676": "Remember", - "16677": "Ġ170", - "16678": "Such", - "16679": "Ġ911", - "16680": "mult", - "16681": "ĠAbyss", - "16682": "urry", - "16683": "kees", - "16684": "spec", - "16685": "ĠBarbara", - "16686": "Ġbelonging", - "16687": "Ġvillain", - "16688": "istani", - "16689": "Ġaccountable", - "16690": "Ġportions", - "16691": "ĠDecl", - "16692": "Ur", - "16693": "ĠKate", - "16694": "gre", - "16695": "Ġmagazines", - "16696": "UCK", - "16697": "Ġregulate", - "16698": "omon", - "16699": "ĠAlmost", - "16700": "Ġoverview", - "16701": "Ġscram", - "16702": "Ġloot", - "16703": "ĠFitz", - "16704": "Ġcharacteristic", - "16705": "ĠSnake", - "16706": "say", - "16707": "ĠRico", - "16708": "Ġtrait", - "16709": "ĠJoined", - "16710": "aucus", - "16711": "Ġadaptation", - "16712": "ĠAirlines", - "16713": "Ġarchae", - "16714": "ĠIde", - "16715": "Ġbikes", - "16716": "Ġliterary", - "16717": "Ġinfluences", - "16718": "ĠUsed", - "16719": "Creat", - "16720": "Ġplea", - "16721": "ĠDefence", - "16722": "ĠAssass", - "16723": "Ġpond", - "16724": "ULT", - "16725": ")\"", - "16726": "Ġevaluated", - "16727": "Ġobtaining", - "16728": "Ġdemographic", - "16729": "Ġvigil", - "16730": "aley", - "16731": "Ġspouse", - "16732": "ĠSeahawks", - "16733": "respons", - "16734": "ĠBelt", - "16735": "umatic", - "16736": "Ġrises", - "16737": "runner", - "16738": "ĠMichelle", - "16739": "Ġpotent", - "16740": "race", - "16741": "ĠPAC", - "16742": "Find", - "16743": "olesterol", - "16744": "ISS", - "16745": "ĠIntroduced", - "16746": "resses", - "16747": "ignment", - "16748": "Os", - "16749": "ĠTu", - "16750": "ĠDex", - "16751": "icides", - "16752": "Ġsparked", - "16753": "ĠLaura", - "16754": "ĠBryant", - "16755": "Ġsmiling", - "16756": "ĠNexus", - "16757": "Ġdefendants", - "16758": "ĠCatal", - "16759": "Ġdishes", - "16760": "shaped", - "16761": "Ġprolong", - "16762": "mt", - "16763": "($", - "16764": "ãĢĤ", - "16765": "Ġcalculations", - "16766": "ĠSame", - "16767": "Ġpiv", - "16768": "HH", - "16769": "Ġcancelled", - "16770": "Ġgrin", - "16771": "Ġterritories", - "16772": "istically", - "16773": "Come", - "16774": "ĠParent", - "16775": "Project", - "16776": "Ġneglig", - "16777": "ĠPrivacy", - "16778": "Ġammo", - "16779": "LECT", - "16780": "olutely", - "16781": "ĠEpic", - "16782": "Ġmisunder", - "16783": "wal", - "16784": "April", - "16785": "mos", - "16786": "pathy", - "16787": "ĠCarson", - "16788": "Ġalbums", - "16789": "ĠEasy", - "16790": "Ġpistol", - "16791": "<<", - "16792": "Ġ\\(", - "16793": "target", - "16794": "help", - "16795": "Ġinterpre", - "16796": "conscious", - "16797": "ĠHousing", - "16798": "ĠJoint", - "16800": "Ġbeers", - "16801": "science", - "16802": "ĠFirefox", - "16803": "effective", - "16804": "ĠCabin", - "16805": "ĠOkay", - "16806": "ĠApplic", - "16807": "Ġspacecraft", - "16808": "ĠSR", - "16809": "vet", - "16810": "ĠStrange", - "16811": "SB", - "16812": "Ġcorps", - "16813": "iberal", - "16814": "efficient", - "16815": "Ġprevalence", - "16816": "Ġeconomists", - "16818": "Thread", - "16819": "ordable", - "16820": "ODE", - "16821": "ĠCant", - "16822": "=-=-", - "16823": "ifiable", - "16824": "ĠAround", - "16825": "Ġpole", - "16826": "Ġwillingness", - "16827": "CLA", - "16828": "ĠKid", - "16829": "Ġcomplement", - "16830": "Ġscattered", - "16831": "Ġinmates", - "16832": "Ġbleeding", - "16833": "every", - "16834": "Ġqueue", - "16835": "ĠTrain", - "16836": "Ġhij", - "16837": "Ġmelee", - "16838": "pleted", - "16839": "Ġdigit", - "16840": "Ġgem", - "16841": "official", - "16842": "Ġlifting", - "16843": "е", - "16844": "Requ", - "16845": "itutes", - "16846": "Ġpackaging", - "16847": "ĠWorkers", - "16848": "hran", - "16849": "ĠLebanon", - "16850": "olesc", - "16851": "Ġpunished", - "16852": "ĠJuan", - "16853": "Ġjam", - "16854": "ĠDocument", - "16855": "Ġmapping", - "16856": "icates", - "16857": "Ġinevitably", - "16858": "Ġvanilla", - "16859": "ĠTon", - "16860": "Ġwatches", - "16861": "Ġleagues", - "16862": "Ġinitiated", - "16863": "degree", - "16864": "portion", - "16865": "Ġrecalls", - "16866": "Ġruin", - "16867": "Ġmelt", - "16868": "IAN", - "16869": "Ġhem", - "16870": "Exp", - "16871": "Ġbaking", - "16872": "ĠColomb", - "16873": "atible", - "16874": "Ġradius", - "16875": "plug", - "16876": "ĠIF", - "16877": "etically", - "16878": "Ġfict", - "16879": "HER", - "16880": "ĠTap", - "16881": "atinum", - "16882": "Ġink", - "16883": "Ġcoh", - "16884": "ĠWizard", - "16885": "both", - "16886": "tex", - "16887": "Ġspends", - "16888": "ĠCurrently", - "16889": "ĠPit", - "16890": "Ġneurons", - "16891": "ignt", - "16892": "Ġrall", - "16893": "Ġbuses", - "16894": "building", - "16895": "Ġadjustments", - "16896": "Ġcried", - "16897": "iblical", - "16898": "atted", - "16899": "ĠZion", - "16900": "ĠMatter", - "16901": "Ġmeditation", - "16902": "ĠDennis", - "16903": "Ġours", - "16904": "ĠTab", - "16905": "Ġrankings", - "16906": "ortal", - "16907": "Ġadvers", - "16908": "Ġsurrender", - "16909": "ĠGob", - "16910": "cium", - "16911": "omas", - "16912": "imeter", - "16913": "Ġmultiplayer", - "16914": "Ġheroin", - "16915": "Ġoptimistic", - "16916": "Ġindicator", - "16917": "ĠBrig", - "16918": "Ġgrocery", - "16919": "Ġapplicant", - "16920": "ĠRocket", - "16921": "vid", - "16922": "Exception", - "16923": "pent", - "16924": "Ġorganizing", - "16925": "Ġencounters", - "16926": "ĠTOD", - "16927": "Ġjewel", - "16928": "Save", - "16929": "ĠChristie", - "16930": "Ġheating", - "16931": "Ġlazy", - "16932": "ĠCP", - "16933": "Ġcousin", - "16934": "Config", - "16935": "Ġregener", - "16936": "Ġnearest", - "16937": "Ġachieving", - "16938": "ENS", - "16939": "throw", - "16940": "ĠRichmond", - "16941": "antle", - "16943": "Ġanten", - "16944": "bird", - "16946": "Ġnarc", - "16947": "raint", - "16948": "unny", - "16949": "ĠHispanic", - "16950": "ournaments", - "16951": "Ġprophe", - "16952": "ĠThailand", - "16953": "ĠTi", - "16954": "Ġinjection", - "16955": "Ġinherit", - "16956": "ravis", - "16957": "Ġmedi", - "16958": "Ġwhoever", - "16959": "ĠDEBUG", - "16960": "GP", - "16961": "ĠHud", - "16962": "Card", - "16963": "prom", - "16964": "Ġpor", - "16965": "Ġoverhead", - "16966": "Law", - "16967": "Ġviolate", - "16968": "Ġheated", - "16969": "Ġdescriptions", - "16970": "Ġachievements", - "16971": "ĠBeer", - "16972": "ĠQuant", - "16973": "Was", - "16974": "Ġeighth", - "16975": "ĠIv", - "16976": "Ġspecialized", - "16977": "UPDATE", - "16978": "ĠDelta", - "16979": "Pop", - "16980": "Jul", - "16981": "ĠAsk", - "16982": "ophy", - "16983": "Ġnewsletters", - "16984": "ĠTool", - "16985": "Ġgard", - "16986": "ĠConfeder", - "16987": "ĠGMT", - "16988": "ĠAbbott", - "16989": "Ġimmunity", - "16990": "ĠVM", - "16991": "Islam", - "16992": "Ġimplicit", - "16993": "wd", - "16994": "Ġ1944", - "16995": "ravity", - "16996": "ometric", - "16997": "Ġsurviving", - "16998": "urai", - "16999": "ĠPrison", - "17000": "Ġrust", - "17001": "ĠSketch", - "17002": "Ġbees", - "17003": "ĠTheory", - "17004": "Ġmerit", - "17005": "Tex", - "17006": "chat", - "17007": "Ġmim", - "17008": "Ġpaste", - "17009": "ĠKoch", - "17010": "Ġignorance", - "17011": "ĠShoot", - "17012": "Ġbasement", - "17013": "United", - "17014": "ĠAdvis", - "17015": "height", - "17016": "Ġfoster", - "17017": "Ġdetain", - "17018": "information", - "17019": "Ġneural", - "17020": "';", - "17021": "Ġproves", - "17022": "allery", - "17023": "Ġinvitation", - "17024": "umbers", - "17025": "Ġcattle", - "17026": "Ġbicycle", - "17027": "zi", - "17028": "Ġconsultant", - "17029": "Ġapology", - "17030": "ĠTiger", - "17031": "Ġ123", - "17033": "Ġindividually", - "17034": "rt", - "17035": "igion", - "17036": "ĠBrazilian", - "17037": "Ġdisturb", - "17038": "Ġentrepreneurs", - "17039": "Ġforests", - "17040": "cerpt", - "17041": "plates", - "17042": "pher", - "17043": "clipse", - "17044": "Ġtwitter", - "17045": "Ġacids", - "17046": "ographical", - "17047": "hum", - "17048": "ĠBald", - "17049": "ifully", - "17050": "Ġcompiler", - "17051": "ĠDA", - "17052": "Ġdonor", - "17053": "asi", - "17054": "Ġtribal", - "17055": "lash", - "17056": "ĠConfig", - "17057": "Ġapplicants", - "17058": "Ġsalaries", - "17060": "Putin", - "17061": "ĠFocus", - "17062": "irs", - "17063": "Ġmisconduct", - "17064": "ĠHaz", - "17065": "Ġeaten", - "17066": "Mobile", - "17067": "Muslim", - "17068": "ĠMarcus", - "17069": "viol", - "17070": "Ġfavorable", - "17071": "Ġstub", - "17072": "adin", - "17073": "ĠHob", - "17074": "Ġfaithful", - "17075": "Ġelectronics", - "17076": "Ġvacuum", - "17077": "wait", - "17078": "backed", - "17079": "economic", - "17080": "dist", - "17081": "Ġtenure", - "17082": "Ġsincere", - "17083": "ĠTogether", - "17084": "ĠWave", - "17085": "Ġprogression", - "17086": "Ġdenying", - "17087": "Ġdistress", - "17088": "braska", - "17089": "third", - "17090": "Ġmixing", - "17091": "Ġcolonial", - "17092": "Ġprivately", - "17093": "Ġunrest", - "17094": "aternity", - "17095": "Ġpremises", - "17096": "anti", - "17097": "gregation", - "17098": "Ġlicence", - "17099": "ĠHind", - "17100": "ĠSamuel", - "17101": "Ġconvincing", - "17102": "ĠAce", - "17103": "ĠRust", - "17104": "ĠNetanyahu", - "17105": "Ġhandles", - "17106": "ĠPatch", - "17107": "oriented", - "17108": "aho", - "17109": "ĠGonz", - "17110": "Ġhackers", - "17111": "claimer", - "17112": "Ġcustoms", - "17113": "ĠGran", - "17114": "fighters", - "17115": "Ġluc", - "17116": "Ġmanuscript", - "17117": "arenthood", - "17118": "Ġdevil", - "17119": "Ġwarriors", - "17120": "Ġoffenders", - "17121": "William", - "17122": "Ġholidays", - "17123": "Ġnightmare", - "17124": "Ġlever", - "17125": "ifferent", - "17126": "Stat", - "17127": "Ġexhibition", - "17128": "puted", - "17129": "ĠPure", - "17130": "Ġalpha", - "17131": "Ġenthusiasm", - "17132": "ĠRepresentatives", - "17133": "EAR", - "17134": "ĠTyp", - "17135": "Ġwheat", - "17136": "ĠAlf", - "17137": "Ġcorrection", - "17138": "Ġevangel", - "17139": "ATT", - "17140": "Miss", - "17141": "Ġsoup", - "17142": "Ġimplied", - "17143": "param", - "17144": "Ġsexy", - "17145": "ĠLux", - "17146": "Ġrepublic", - "17147": "patch", - "17148": "ablish", - "17149": "Ġicons", - "17150": "Ġfathers", - "17151": "ĠGET", - "17152": "ĠCarib", - "17153": "Ġregulated", - "17154": "ĠCohen", - "17155": "ĠBobby", - "17156": "Ġner", - "17157": "Ġbent", - "17158": "ventory", - "17159": "ĠAlong", - "17160": "ĠEST", - "17161": "ĠWallace", - "17162": "Ġmurders", - "17163": "rise", - "17164": "kell", - "17165": "ĠCommonwealth", - "17166": "Ġnasty", - "17167": "eta", - "17168": "ĠMIT", - "17169": "Ġadministered", - "17170": "Ġgenuinely", - "17171": "Editor", - "17172": "nick", - "17173": "Ġhydro", - "17174": "********************************", - "17175": "ĠBle", - "17176": "Ġfines", - "17177": "Ġgorge", - "17178": "ausible", - "17179": "rh", - "17180": "Ġapple", - "17181": "mentioned", - "17182": "Ġrope", - "17183": "otyp", - "17184": "HR", - "17185": "Ġdisappointing", - "17186": "Ġcage", - "17187": "nik", - "17188": "Ġdoubts", - "17189": "ĠFREE", - "17190": "prints", - "17191": "ĠMUST", - "17192": "Ġvendors", - "17193": "ĠInqu", - "17194": "Ġliberals", - "17195": "Ġcontractor", - "17196": "Ġupside", - "17197": "children", - "17198": "Ġtricky", - "17199": "Ġregulators", - "17200": "charged", - "17201": "liter", - "17202": "Ġ***", - "17203": "Ġrebell", - "17204": "lang", - "17205": "Ġlocals", - "17206": "Ġphysicians", - "17207": "Ġhey", - "17208": "arse", - "17209": "tm", - "17210": "ĠLex", - "17211": "Ġbehavioral", - "17212": "successful", - "17213": "FX", - "17214": "Ġbrick", - "17215": "ovic", - "17216": "Ġconform", - "17217": "Ġreviewing", - "17218": "Ġinsights", - "17219": "Ġbiology", - "17220": "ĠRemove", - "17221": "ĠExtra", - "17222": "Ġcommitting", - "17223": "induced", - "17224": "ignty", - "17225": "igm", - "17226": "Ġatomic", - "17227": "Common", - "17228": "ĠEM", - "17229": "ĠPere", - "17230": "ĠItems", - "17231": "eh", - "17232": "Ġpreserved", - "17233": "ĠHood", - "17234": "Ġprisoner", - "17235": "Ġbankruptcy", - "17236": "Ġgren", - "17237": "ushes", - "17238": "Ġexploitation", - "17239": "Ġsignatures", - "17240": "Ġfinan", - "17241": "],\"", - "17242": "ĠMR", - "17243": "Ġmeg", - "17244": "remlin", - "17245": "Ġmusicians", - "17246": "Ġselecting", - "17247": "Ġexamining", - "17248": "INK", - "17249": "lated", - "17250": "Hi", - "17251": "Ġartic", - "17252": "Ġpets", - "17253": "Ġimpair", - "17254": "ĠMAN", - "17255": "Ġtablets", - "17256": "include", - "17257": "Range", - "17258": "Ġcaut", - "17259": "Ġlogs", - "17260": "Ġmounting", - "17261": "Ġunaware", - "17262": "Ġdynamics", - "17263": "ĠPalestine", - "17264": "ĠQuarter", - "17265": "ĠPurple", - "17266": "Ġma", - "17267": "ĠImport", - "17268": "Ġcollections", - "17269": "ciation", - "17270": "Ġsuccessor", - "17271": "Ġclone", - "17272": "Ġaiming", - "17273": "Ġpossessed", - "17274": "Ġsticking", - "17275": "Ġshaking", - "17276": "Ġlocate", - "17277": "ĠHockey", - "17278": "Turn", - "17280": "Ġfifteen", - "17281": "ĠHarrison", - "17282": "Ġcontinuously", - "17283": "ĠTC", - "17284": "ĠValent", - "17285": "ĠRescue", - "17286": "Ġbypass", - "17287": "amount", - "17288": "Ġmast", - "17289": "Ġprotects", - "17290": "Ġartistic", - "17291": "Ġsometime", - "17292": "Ġshoe", - "17293": "Ġshouted", - "17294": "ificant", - "17295": "etitive", - "17296": "ĠRegister", - "17297": "ĠJin", - "17298": "Ġconcentrated", - "17299": "lington", - "17300": "onies", - "17301": "Ġgenerator", - "17302": "yrim", - "17303": "ĠArmen", - "17304": "Ġclearing", - "17305": "ido", - "17306": "ĠTW", - "17307": "alph", - "17308": "Ġladies", - "17309": "Hard", - "17310": "Ġdialog", - "17311": "Ġinputs", - "17312": "æľ", - "17313": "Ġposes", - "17314": "Ġslots", - "17315": "ĠPremium", - "17316": "Ġleaks", - "17317": "Ġbosses", - "17318": "Ġ113", - "17319": "course", - "17320": "Acc", - "17321": "ĠNewton", - "17322": "ĠAustria", - "17323": "ĠMage", - "17324": "Ġteaches", - "17325": "abad", - "17326": "Ġwears", - "17327": "Ġcyl", - "17328": "Ġcurse", - "17329": "ĠSales", - "17330": "ĠWings", - "17331": "Ġpsy", - "17332": "Ġgaps", - "17333": "ĠIceland", - "17334": "ĠPinterest", - "17335": "Ġlandlord", - "17336": "Ġdefinitions", - "17337": "ĠKer", - "17338": "Ġsufficiently", - "17339": "ĠPence", - "17340": "ĠArchitect", - "17341": "Ġsurpass", - "17342": "Ġ114", - "17343": "Ġsuperhero", - "17344": "ĠDisease", - "17345": "Ġpriests", - "17346": "ĠCulture", - "17347": "Ġdefinitive", - "17348": "Ġsecretly", - "17349": "ĠDance", - "17350": "install", - "17351": "chief", - "17352": "ĠJessica", - "17353": "Would", - "17354": "Updated", - "17355": "Ġlocker", - "17356": "ĠKay", - "17357": "Ġmemorial", - "17358": "è¦", - "17359": "fat", - "17360": "Ġdisgu", - "17361": "Ġflavors", - "17362": "ĠBaseball", - "17363": "ĠResistance", - "17364": "Ġkicks", - "17365": "Ġenv", - "17366": "Ġteenagers", - "17367": "Dark", - "17368": "ĠCAR", - "17369": "Ġhalt", - "17370": "ĠLG", - "17371": "ĠGabriel", - "17372": "Ġfever", - "17373": "Ġsatur", - "17374": "Ġmall", - "17375": "Ġaffiliate", - "17376": "ĠSleep", - "17377": "ĠSpecific", - "17378": "ĠVel", - "17379": "Ġjar", - "17380": "ĠSacred", - "17381": "ĠEdwards", - "17382": "ĠACL", - "17383": "Ġretained", - "17384": "ĠGiant", - "17385": "Ġlimitation", - "17386": "inces", - "17387": "Ġrefusal", - "17388": "ĠTale", - "17389": "ĠButler", - "17390": "Ġaccidents", - "17391": "ĠCSS", - "17392": "Ġimported", - "17393": "ĠCopy", - "17394": "α", - "17395": "ERT", - "17396": "zel", - "17397": "Ġdivisions", - "17398": "hots", - "17399": "ĠAlb", - "17400": "ĠDS", - "17401": "Loader", - "17402": "Washington", - "17403": "atisf", - "17404": "ĠCreative", - "17405": "\\.", - "17406": "ĠAutom", - "17407": "redict", - "17408": "Ġreceptor", - "17409": "ĠCarlos", - "17410": "Method", - "17411": "oka", - "17412": "Ġmalicious", - "17413": "Ġstepping", - "17414": ",[", - "17415": "ĠDad", - "17416": "Ġattraction", - "17417": "ĠEffects", - "17418": "ĠPirate", - "17419": "ĠCer", - "17420": "ĠIndustry", - "17421": "ĠRud", - "17422": "Ġcharter", - "17423": "Ġdining", - "17424": "Ġinsists", - "17425": "Ġconfigure", - "17426": "Ġ(#", - "17427": "ĠSimple", - "17428": "ĠScroll", - "17429": "UTC", - "17431": "ĠKon", - "17432": "Ġmarketplace", - "17433": "ĠãĤ", - "17434": "Ġrefres", - "17435": "Ġgates", - "17436": "erred", - "17437": "ĠPod", - "17438": "Ġbehave", - "17439": "Frank", - "17440": "node", - "17441": "Ġendorsed", - "17442": "hett", - "17443": "asive", - "17444": "ĠHomeland", - "17445": "Ġrides", - "17446": "ĠLeave", - "17447": "erness", - "17448": "Ġflooding", - "17449": "AFP", - "17450": "Ġrisen", - "17451": "Ġcontinually", - "17452": "Ġunanim", - "17453": "ĠContract", - "17454": "ĠPas", - "17455": "Ġguided", - "17456": "ĠChile", - "17457": "bd", - "17458": "Ġsucc", - "17459": "ptic", - "17460": "Ġcommittees", - "17461": "ĠLuther", - "17462": "ĠAnyone", - "17463": "Ġsab", - "17465": "Ġpixel", - "17466": "ĠBak", - "17467": "ĠTag", - "17468": "ĠBennett", - "17469": "Enter", - "17470": "small", - "17471": "ĠPresidential", - "17472": "Ġpul", - "17473": "Ġcontrace", - "17474": "archive", - "17475": "Ġcoastal", - "17476": "ĠKids", - "17478": "â̲", - "17479": "icky", - "17480": "INGTON", - "17481": "Ġwolf", - "17482": "ĠStalin", - "17483": "Tur", - "17484": "idget", - "17485": "amas", - "17486": "ĠUnless", - "17487": "Ġsponsor", - "17488": "Ġmorph", - "17489": "ĠChoose", - "17490": "Ġrunner", - "17491": "Ġunbel", - "17492": "Ġmud", - "17493": "ĠMana", - "17494": "Ġdubbed", - "17495": "Ġgodd", - "17496": "urers", - "17497": "window", - "17498": "Ġrelied", - "17499": "Ġcelebrating", - "17500": "osc", - "17501": "Ġ135", - "17502": "Ġlobbying", - "17503": "Ġincomplete", - "17504": "Ġrestriction", - "17505": "Ġincap", - "17506": "itus", - "17507": "Ġexpectation", - "17508": "ĠApollo", - "17509": "Ġintens", - "17510": "Ġsync", - "17511": "GH", - "17512": "Ġmanipulation", - "17513": "BY", - "17514": "Ġspear", - "17515": "Ġbreasts", - "17516": "Ġvolcan", - "17517": "ilia", - "17518": "Material", - "17519": "Ġformats", - "17520": "ĠBast", - "17521": "Ġparliamentary", - "17522": "Ġsnake", - "17523": "Ġservants", - "17524": "ĠTrudeau", - "17525": "ĠGrim", - "17526": "ĠArabic", - "17527": "ĠSCP", - "17528": "ĠBoys", - "17529": "station", - "17530": "Ġprospective", - "17531": "orde", - "17532": "initialized", - "17533": "Ġbored", - "17534": "ABLE", - "17535": "Ġaccessed", - "17536": "Ġtaxi", - "17537": "ĠShell", - "17538": "aiden", - "17539": "ursed", - "17540": "inates", - "17541": "ĠInsurance", - "17542": "ĠPete", - "17543": "September", - "17545": "Ġadventures", - "17546": "ĠCover", - "17547": "Ġtribute", - "17548": "Ġsketch", - "17549": "Ġempower", - "17550": "ĠØ", - "17551": "ĠGlenn", - "17552": "ĠDaw", - "17553": "=\\\"", - "17554": "ĠPolitics", - "17555": "Ġguides", - "17556": "Ġdioxide", - "17557": "ĠGore", - "17558": "ĠBright", - "17559": "ĠSierra", - "17560": "Ġvalued", - "17561": "cond", - "17562": "Ġpointer", - "17563": "Select", - "17564": "Ġrisky", - "17565": "Ġabsorb", - "17566": "images", - "17567": "Ġrefuses", - "17568": "Ġbonuses", - "17569": "___", - "17570": "Ġhilar", - "17571": "ĠFeatures", - "17573": "ĠCollector", - "17574": "Foot", - "17575": "Ġ1964", - "17576": "culus", - "17577": "Ġdawn", - "17578": "Ġworkout", - "17579": "ĠLO", - "17580": "Ġphilosophical", - "17581": "ĠSandy", - "17582": "ĠYouth", - "17583": "Ġliable", - "17584": "Af", - "17585": "blue", - "17586": "Ġoverturn", - "17587": "lessness", - "17588": "ĠTribune", - "17589": "ĠIng", - "17590": "Ġfactories", - "17591": "Ġcatches", - "17592": "Ġprone", - "17593": "Ġmatrix", - "17594": "Ġlogin", - "17595": "Ġinacc", - "17596": "Ġexert", - "17597": "sys", - "17598": "Ġneedle", - "17599": "ĠQur", - "17600": "Ġnotified", - "17601": "oulder", - "17602": "tx", - "17603": "Ġreminds", - "17604": "Ġpublishers", - "17605": "Ġnort", - "17606": "Ġgit", - "17607": "Ġflies", - "17608": "ĠEmily", - "17609": "Ġflowing", - "17610": "ĠAlien", - "17611": "ĠStrateg", - "17612": "Ġhardest", - "17613": "Ġmodification", - "17614": "API", - "17615": "ĠMY", - "17616": "Ġcrashes", - "17617": "stairs", - "17618": "number", - "17619": "Ġurging", - "17620": "channel", - "17621": "ĠFalcon", - "17622": "Ġinhabitants", - "17623": "Ġterrifying", - "17624": "Ġutilize", - "17625": "Ġbanner", - "17626": "Ġcigarettes", - "17627": "Ġsenses", - "17628": "ĠHolmes", - "17629": "Ġpractition", - "17630": "ĠPhillips", - "17631": "otto", - "17632": "Ġcompile", - "17633": "Model", - "17634": "ĠKo", - "17635": "Ġ[]", - "17636": "Americans", - "17637": "ĠTerms", - "17638": "Ġmedications", - "17639": "ĠAna", - "17640": "Ġfundamentally", - "17641": "ĠNotice", - "17642": "Ġweaker", - "17643": "Ġ0000", - "17644": "Ġgarlic", - "17645": "Ġoutbreak", - "17646": "Ġeconomist", - "17647": "ĠBirth", - "17648": "Ġobstacles", - "17649": "arcer", - "17650": "ĠOrthodox", - "17651": "Ġplacebo", - "17652": "ĠCrew", - "17653": "aspberry", - "17654": "ĠAngels", - "17655": "Ġdischarge", - "17656": "Ġdestructive", - "17658": "ĠRising", - "17659": "Ġdairy", - "17660": "late", - "17661": "Ġcollision", - "17662": "ĠTigers", - "17663": "eanor", - "17664": "ocumented", - "17665": "ĠInvalid", - "17666": "Ġdont", - "17667": "ĠLiter", - "17668": "ĠVa", - "17669": "Ġhydrogen", - "17670": "Ġvariants", - "17671": "ĠBrowns", - "17672": "Ġ1965", - "17673": "Ġindigenous", - "17674": "Ġtrades", - "17675": "Ġremainder", - "17676": "Ġswept", - "17677": "ĠImpact", - "17678": "Ġredist", - "17679": "Ġunint", - "17680": "graduate", - "17681": "ãĥķ", - "17682": "ĠWILL", - "17683": "ãģ®ç", - "17684": "ĠCritical", - "17685": "Ġfisher", - "17686": "Ġvicious", - "17687": "Ġreversed", - "17688": "Year", - "17689": "ĠSox", - "17690": "Ġshootings", - "17691": "Ġfilming", - "17692": "Ġtouchdowns", - "17693": "aires", - "17694": "mel", - "17695": "Ġgrandfather", - "17696": "Ġaffection", - "17697": "ingle", - "17698": "Ġoverly", - "17699": "Additional", - "17700": "Ġsupreme", - "17701": "ĠGrad", - "17702": "Ġsporting", - "17703": "Ġmercy", - "17704": "ĠBrooks", - "17705": "ounty", - "17706": "Ġperforms", - "17707": "Ġtightly", - "17708": "Ġdemons", - "17709": "Ġkillings", - "17710": "Ġfaction", - "17711": "ĠNova", - "17712": "auts", - "17713": "Ġundoubtedly", - "17714": "arin", - "17715": "Ġunderway", - "17716": "rak", - "17717": "Ġliv", - "17718": "ĠRegion", - "17719": "Ġbriefing", - "17720": "sers", - "17721": "cloud", - "17722": "ĠMik", - "17723": "usp", - "17724": "Ġprediction", - "17725": "azor", - "17726": "Ġportable", - "17727": "ĠGand", - "17728": "Ġpresenting", - "17729": "Ġ1080", - "17730": "»", - "17731": "ushi", - "17732": "ĠSpark", - "17733": "thereum", - "17734": "Ġjustification", - "17735": "ĠNy", - "17736": "Ġcontractors", - "17737": "mingham", - "17738": "ĠStyle", - "17739": "åħ", - "17740": "ĠChronicles", - "17741": "ĠPicture", - "17742": "Ġproving", - "17743": "Ġwives", - "17744": "sett", - "17745": "Ġmolecules", - "17746": "ĠFairy", - "17747": "Ġconsisting", - "17748": "Ġpier", - "17749": "alone", - "17750": "inition", - "17751": "Ġnucle", - "17752": "json", - "17753": "Ġgotta", - "17754": "Ġmobil", - "17755": "Ġverbal", - "17756": "arium", - "17757": "Ġmonument", - "17758": "ucked", - "17759": "Ġ256", - "17760": "Tech", - "17761": "minecraft", - "17762": "ĠTrack", - "17763": "Ġtile", - "17764": "Ġcompatibility", - "17765": "asis", - "17766": "Ġsadd", - "17767": "Ġinstructed", - "17768": "ĠMueller", - "17769": "Ġlethal", - "17770": "Ġhormone", - "17771": "Ġorche", - "17772": "else", - "17773": "Ġskelet", - "17774": "Ġentertaining", - "17775": "Ġminimize", - "17776": "again", - "17777": "Ġundergo", - "17778": "Ġconstraints", - "17779": "Ġcigarette", - "17780": "ĠIslamist", - "17781": "Ġtravels", - "17782": "ĠPanthers", - "17783": "lings", - "17784": "Care", - "17785": "Ġlawsuits", - "17786": "uras", - "17787": "Ġcryst", - "17788": "Ġlowered", - "17789": "Ġaerial", - "17790": "Ġcombinations", - "17791": "Ġhaun", - "17792": "Ġcha", - "17793": "Ġvine", - "17794": "Ġquantities", - "17795": "Ġlinking", - "17796": "bank", - "17797": "Ġsoy", - "17798": "Bill", - "17799": "ĠAngela", - "17800": "Ġrecipient", - "17801": "ĠProtest", - "17802": "Ġsocket", - "17803": "Ġsolidarity", - "17804": "ĠâĨ", - "17805": "mill", - "17806": "Ġvaries", - "17807": "ĠPakistani", - "17808": "Dragon", - "17809": "Ġune", - "17810": "Ġhorizon", - "17811": "³³³³³³³³", - "17812": "Ġprovinces", - "17813": "Ġfrankly", - "17814": "Ġenacted", - "17815": "notes", - "17816": "['", - "17817": "Ġ192", - "17818": "ocracy", - "17819": "Ġendorsement", - "17820": "Ġovertime", - "17821": "True", - "17822": "Lab", - "17823": "licted", - "17824": "ĠDNC", - "17825": "Ġbeats", - "17826": "ĠJamie", - "17828": "ĠINT", - "17829": "Contact", - "17830": "Ġaccounted", - "17831": "hash", - "17832": "ĠPackers", - "17833": "pires", - "17834": "Ġlesbian", - "17835": "Ġamendments", - "17836": "Ġhopeful", - "17837": "ĠFinland", - "17838": "Ġspotlight", - "17839": "Ġconfigured", - "17840": "Ġtroubled", - "17841": "Ġgaze", - "17842": "ĠCalgary", - "17843": "Ġreliability", - "17844": "Ġinsurg", - "17845": "swer", - "17846": "buy", - "17847": "ĠSkin", - "17848": "Ġpixels", - "17849": "Ġhandgun", - "17850": "Ġparas", - "17851": "Ġcategor", - "17852": "ĠEL", - "17853": "ĠRex", - "17854": "Indeed", - "17855": "Ġkinda", - "17856": "Ġconjunction", - "17857": "ĠBryan", - "17858": "ĠManufact", - "17859": "yang", - "17860": "Plus", - "17861": "SQL", - "17862": "ishment", - "17863": "Ġdominate", - "17864": "Ġnail", - "17865": "Ġoath", - "17866": "Ġerupt", - "17867": "ĠFine", - "17868": "itbart", - "17869": "ĠChip", - "17870": "ĠAbd", - "17871": "ĠNam", - "17872": "Ġbuyer", - "17873": "Ġdissent", - "17874": "Leaks", - "17875": "Contin", - "17876": "Ġrider", - "17877": "ĠSomeone", - "17878": "Ġillusion", - "17879": "cin", - "17880": "ĠBoeing", - "17881": "Ġinadequ", - "17882": "ovation", - "17883": "iants", - "17884": "Ġrebuild", - "17886": "ĠDestiny", - "17887": "SW", - "17888": "ĠTill", - "17889": "Hit", - "17890": "iaz", - "17891": "ĠBangl", - "17892": "achers", - "17893": "ĠReform", - "17894": "Ġsegments", - "17895": "Ġsystematic", - "17896": "dc", - "17897": "ĠConservatives", - "17898": "Ġportal", - "17899": "hor", - "17900": "ĠDragonbound", - "17901": "Ġdragged", - "17902": "omo", - "17903": "Ġthee", - "17904": "advert", - "17905": "ĠReports", - "17906": "ĠEt", - "17907": "Ġbarrels", - "17908": "August", - "17909": "Ġcomparisons", - "17910": "Ġhex", - "17911": "Ġanthrop", - "17912": "\"[", - "17913": "borough", - "17914": "abi", - "17915": "Ġpictured", - "17916": "playing", - "17917": "ĠAddress", - "17918": "ĠMirror", - "17919": "Smith", - "17920": "Ġtires", - "17921": "ĠNPR", - "17922": "AAAA", - "17923": "Ġclassification", - "17924": "ĠThan", - "17925": "ĠHarm", - "17926": "ĠRA", - "17927": "Ġrejection", - "17928": "mination", - "17929": "Ġranged", - "17930": "ĠFalls", - "17931": "DI", - "17932": "Host", - "17933": "ãĤ´", - "17934": "ĠExample", - "17935": "listed", - "17936": "thirds", - "17937": "Ġsafegu", - "17938": "brand", - "17939": "Ġprobable", - "17940": "Canada", - "17941": "ITION", - "17942": "ĠQaeda", - "17943": "Ġchick", - "17944": "Ġimports", - "17945": "hit", - "17946": "loc", - "17947": "WW", - "17948": "Ġblew", - "17949": "Ġanytime", - "17950": "Ġwholes", - "17951": "iked", - "17952": "Ġcalculation", - "17953": "create", - "17954": "ĠOri", - "17955": "Ġupgraded", - "17956": "Ġappar", - "17957": "utory", - "17958": "ĠMol", - "17959": "Brit", - "17960": "ĠJong", - "17961": "INAL", - "17962": "ĠStarting", - "17963": "Ġdice", - "17964": "urtle", - "17965": "Ġrelying", - "17966": "closure", - "17967": "Ġprofitable", - "17968": "Ġslaughter", - "17969": "ĠManual", - "17970": "caster", - "17971": "Ġ\"$", - "17972": "Ġfeather", - "17973": "ĠSimply", - "17974": "ieves", - "17975": "Ġdeterior", - "17976": "ĠPCI", - "17977": "Ġstamp", - "17978": "Ġflaws", - "17979": "Ġshade", - "17980": "hammer", - "17981": "Ġpassport", - "17982": "Ġconting", - "17983": "amel", - "17984": "Ġobservers", - "17985": "Ġneglect", - "17986": "ĠRB", - "17987": "ĠBrotherhood", - "17988": "Ġskeptical", - "17989": "family", - "17990": "usk", - "17991": "Ġemotionally", - "17992": "âĻ", - "17993": "ĠBeta", - "17994": "asonable", - "17995": "idity", - "17996": "ĠMul", - "17997": "Ġkicking", - "17998": "ĠCarm", - "17999": "ollah", - "18000": "VERTIS", - "18001": "ĠAthen", - "18002": "Ġladder", - "18003": "ĠBullet", - "18004": "å£", - "18005": "0001", - "18006": "ĠWildlife", - "18007": "ĠMask", - "18008": "ĠNan", - "18009": "Rev", - "18010": "Ġunacceptable", - "18011": "legal", - "18012": "Ġcrowded", - "18013": "agi", - "18014": "ĠCox", - "18015": "je", - "18016": "Ġmorality", - "18017": "Ġfuels", - "18018": "Ġcables", - "18019": "Ġmankind", - "18020": "ĠCaribbean", - "18021": "Ġanchor", - "18022": "Ġbyte", - "18023": "ĠOften", - "18024": "ĠOz", - "18025": "Ġcrafted", - "18026": "Ġhistorian", - "18027": "ĠWu", - "18028": "Ġtowers", - "18029": "ĠCitizens", - "18030": "Ġhelm", - "18031": "Ġcredentials", - "18032": "Ġsingular", - "18033": "ĠJesse", - "18034": "Ġtackles", - "18035": "Ġcontempt", - "18036": "Ġafore", - "18037": "ĠShadows", - "18038": "Ġnil", - "18039": "Ġurgent", - "18040": "apple", - "18041": "blood", - "18042": "Ġvon", - "18043": "Ġoffline", - "18044": "Ġbreathe", - "18045": "Ġjumps", - "18046": "Ġirrelevant", - "18047": "oxic", - "18048": "omal", - "18049": "important", - "18050": "Jim", - "18051": "Ġgloves", - "18052": "arming", - "18053": "depth", - "18054": "Ġtalents", - "18055": "ookie", - "18056": "ĠSB", - "18057": "Ġpalm", - "18058": "uffs", - "18059": "esta", - "18060": "IGH", - "18061": "Ġcanon", - "18062": "ĠVerizon", - "18063": "ĠPle", - "18064": "Ġcoupled", - "18065": "velt", - "18066": "Ġfundraising", - "18067": "ĠGetting", - "18068": "ĠDLC", - "18069": "Ġmathematical", - "18070": "ĠHS", - "18071": "ĠCardinals", - "18072": "telling", - "18073": "Ġsponsors", - "18074": "ĠÏ", - "18075": "ĠBulls", - "18076": "option", - "18077": "Ġpropose", - "18078": "Ġmemorable", - "18079": "Ġembraced", - "18080": "Ġdeclining", - "18081": "Health", - "18082": "eda", - "18083": "Ġ};", - "18084": "Ġspam", - "18085": "mile", - "18086": "Ġpitcher", - "18087": "ĠEight", - "18088": "Ġcaring", - "18089": "utic", - "18090": "role", - "18091": "Ġairline", - "18092": "ernandez", - "18093": "ĠAthlet", - "18094": "Ġcertification", - "18095": "uxe", - "18096": "riger", - "18097": "Ġempir", - "18098": "Ġsensation", - "18099": "Ġdism", - "18100": "Ġbolt", - "18101": "Ġevolve", - "18102": "House", - "18103": "Ġconsultation", - "18104": "ĠDuty", - "18105": "Ġtouches", - "18106": "ĠNathan", - "18107": "Ġfaint", - "18108": "had", - "18109": "\"(", - "18110": "ĠConsumer", - "18111": "ĠExtreme", - "18112": "Ġ127", - "18113": "ĠHerm", - "18114": "ĠSacrament", - "18115": "izoph", - "18116": "Ġanxious", - "18117": "ulously", - "18118": "Ġsocially", - "18119": "ĠUTC", - "18120": "Ġsolving", - "18121": "ĠLetter", - "18122": "History", - "18123": "educ", - "18124": "Price", - "18125": "));", - "18126": "Ġreload", - "18127": "amic", - "18128": "Ġpork", - "18129": "Ġdiscourse", - "18130": "Ġtournaments", - "18131": "airo", - "18132": "ĠKur", - "18133": "ĠCosta", - "18134": "Ġviolating", - "18135": "Ġinterfere", - "18136": "Ġrecreational", - "18137": "uffle", - "18138": "Ġspeeches", - "18139": "Ġneeding", - "18140": "Ġremembers", - "18141": "Ġcredited", - "18142": "nia", - "18143": "focused", - "18144": "amera", - "18145": "Ġbru", - "18146": "umbs", - "18147": "ĠCuban", - "18148": "Ġpreceding", - "18149": "Ġnonsense", - "18150": "acial", - "18151": "Ġsmartphones", - "18152": "ĠStories", - "18153": "Sports", - "18154": "ĠEmergency", - "18155": "ouncing", - "18156": "efined", - "18157": "Ġber", - "18158": "Ġconsulting", - "18159": "Ġmasters", - "18160": "heastern", - "18161": ".\"[", - "18162": "ĠRunning", - "18163": "Ġsuscept", - "18164": "ĠFeng", - "18165": "America", - "18166": "prises", - "18167": "stitial", - "18168": "ĠWeekly", - "18169": "ĠGreater", - "18170": "modules", - "18171": "ifter", - "18172": "Graphics", - "18173": "uler", - "18174": "Ġwholly", - "18175": "Ġsuppress", - "18176": "Ġconcealed", - "18177": "Ġhappily", - "18178": "Ġaccepts", - "18179": "ĠEnjoy", - "18180": "Ġrivers", - "18181": "ĠExcept", - "18183": "ĠNHS", - "18184": "ĠMcConnell", - "18185": "Ġpussy", - "18186": "ferred", - "18187": "utable", - "18188": "Ġattain", - "18189": "Ġ>=", - "18190": "Ġdeposits", - "18191": "rophic", - "18192": "Ġnotorious", - "18193": "ĠShaw", - "18194": "ilitation", - "18195": "Ġepidemic", - "18196": "allic", - "18197": "Ġsmallest", - "18198": "ovich", - "18199": "Ġaccessories", - "18200": "perties", - "18201": "Ġsurplus", - "18202": "ĠMech", - "18203": "Ġambig", - "18204": "ĠImmigration", - "18205": "Ġchim", - "18206": "eval", - "18207": "Ġpracticing", - "18208": "ĠMystery", - "18209": "Ġdomains", - "18210": "ĠSilicon", - "18211": "apps", - "18212": "Ġkilometers", - "18213": "ea", - "18214": "ĠSmash", - "18215": "Ġwarranty", - "18216": "Ġnost", - "18217": "sil", - "18218": "rev", - "18219": "Jon", - "18220": "ĠDublin", - "18221": "Ġtastes", - "18222": "Ġbout", - "18223": "great", - "18224": "error", - "18225": "Ġswitches", - "18226": "ĠBapt", - "18227": "DO", - "18228": "oki", - "18229": "Ġsourced", - "18230": "produ", - "18231": "Ġattachment", - "18232": "ĠIssue", - "18233": "ĠQuestion", - "18234": "Join", - "18235": "Ġfitted", - "18236": "Ġunlawful", - "18237": "^^", - "18238": "erek", - "18239": "Ġauthentication", - "18240": "Ġstole", - "18241": "Ġaccountability", - "18242": "label", - "18243": "Search", - "18244": "Ġalbeit", - "18245": "atican", - "18246": "funded", - "18247": "ĠAdding", - "18248": "ĠIQ", - "18249": "Ġsubmar", - "18250": "lit", - "18251": "aque", - "18252": "ĠLearning", - "18253": "Ġinteger", - "18254": "Master", - "18255": "ĠChrom", - "18256": "Ġpremier", - "18257": "Op", - "18258": "ĠLiu", - "18259": "Ġblessed", - "18260": "ĠGlobe", - "18261": "ĠResponse", - "18262": "Ġlegitim", - "18263": "ĠMerkel", - "18264": "Ġdisposal", - "18265": "´", - "18266": "Ġgauge", - "18267": "peat", - "18268": "Ġinduced", - "18269": "Ġquestionable", - "18270": "arthy", - "18271": "ĠVit", - "18272": "ĠFeed", - "18273": "Until", - "18274": "Ut", - "18275": "worthy", - "18276": "RY", - "18277": "ĠHerald", - "18278": "ĠHammer", - "18279": "Ġmedal", - "18280": "ĠRivers", - "18281": "ĠHack", - "18282": "Ġclarify", - "18283": "Ġtracked", - "18284": "Ġautonomous", - "18285": "Ġtenant", - "18286": "ĠQatar", - "18287": "erie", - "18288": "Ġgrim", - "18289": "ĠMonitor", - "18290": "Ġresistant", - "18291": "ĠSpec", - "18292": "ĠWells", - "18293": "NAS", - "18295": "Ġminers", - "18296": "iotics", - "18297": "Ġmisses", - "18299": "gian", - "18300": "git", - "18301": "ĠEyes", - "18302": "pres", - "18303": "Ġgraduated", - "18304": "Ġangel", - "18305": "Ġsynchron", - "18306": "Ġefficiently", - "18307": "Ġtransmitted", - "18308": "Harry", - "18309": "Ġglobally", - "18310": "ENCE", - "18311": "ĠMontana", - "18312": "raged", - "18313": "ĠPrevention", - "18314": "Ġpiss", - "18315": "ĠLl", - "18316": "Ġshelf", - "18317": "ĠBJP", - "18318": "ĠTestament", - "18319": "ĠLate", - "18320": "iker", - "18321": "ĠHapp", - "18322": "ĠJulian", - "18323": "hall", - "18324": "Ġspont", - "18325": "Ġshutdown", - "18326": "Ġinconsistent", - "18327": "Ġsubscribers", - "18328": "Ġskeleton", - "18329": "ĠNebraska", - "18330": "Ġinspire", - "18331": "ĠVoid", - "18332": "Feed", - "18333": "Ġangles", - "18334": "ĠSprings", - "18335": "Ġbenchmark", - "18336": "Ġvaccines", - "18337": "izophren", - "18338": "sexual", - "18339": "uffed", - "18340": "Ġshine", - "18341": "ĠKath", - "18342": "Ġgesture", - "18343": "inea", - "18344": "Ġrip", - "18345": "Ġoppression", - "18346": "Ġconscience", - "18347": "bt", - "18348": "ĠLum", - "18349": "Ġincidence", - "18350": "ĠFa", - "18351": "wr", - "18352": "Ġmineral", - "18353": "ĠSpurs", - "18354": "alky", - "18355": "Ġthunder", - "18356": "Ġopio", - "18357": "Being", - "18358": "ĠPalm", - "18359": "Ġwasted", - "18360": "Ġlb", - "18361": "iaries", - "18362": "ĠInitiative", - "18363": "Ġcurric", - "18364": "Ġmarker", - "18365": "ĠMcL", - "18366": "Ġextensions", - "18367": "ĠPv", - "18368": "ĠArms", - "18369": "Ġofferings", - "18370": "Ġdefenses", - "18371": "Ġvendor", - "18372": "Ġcontradict", - "18373": "ĠColin", - "18374": "Ġreddit", - "18375": "Ġperipher", - "18377": "Ġsins", - "18378": "Edit", - "18379": "ICT", - "18380": "Soft", - "18381": "ĠShah", - "18382": "Ġadministrator", - "18383": "ĠTrip", - "18384": "Ġpornography", - "18385": "Ġtuition", - "18386": "inence", - "18387": "ĠProgress", - "18388": "Ġcatalog", - "18389": "Ġsuite", - "18390": "Ġhike", - "18391": "Ġreproductive", - "18392": "engine", - "18393": "Ġdrought", - "18394": "ĠNoah", - "18395": "Ġ230", - "18396": "Ġdude", - "18397": "Ġrelaxed", - "18398": "Ġpartition", - "18399": "Ġparticipant", - "18400": "Ġtelesc", - "18401": "Ġfeas", - "18402": "ĠFF", - "18403": "owner", - "18404": "Ġsweeping", - "18405": "Ġlenses", - "18406": "Ġmatchup", - "18407": "ĠRepl", - "18408": "ournals", - "18409": "Ġcredible", - "18410": "Ġgrandmother", - "18411": "Ġthermal", - "18412": "Ġsubscribing", - "18413": "Ġidentities", - "18414": "colm", - "18415": "UCT", - "18416": "Ġreluctant", - "18417": "users", - "18418": "ĠCort", - "18419": "Ġassisted", - "18420": "OSS", - "18421": "ATIONS", - "18422": "ISH", - "18423": "Ġpharmaceutical", - "18424": "icable", - "18425": "adian", - "18426": "ĠSonic", - "18427": "ĠFury", - "18428": "ĠMong", - "18429": "AH", - "18430": "ĠPsychology", - "18431": "Ġphosph", - "18432": "Ġtreats", - "18433": "ŃĶ", - "18434": "Ġsteadily", - "18435": "ĠHello", - "18436": "Ġrelates", - "18437": "Ġclue", - "18438": "Expl", - "18439": "auth", - "18440": "Ġrevision", - "18441": "Ġeld", - "18442": "osion", - "18443": "Ġbron", - "18445": "rikes", - "18446": "Ġmines", - "18447": "Ġblanket", - "18448": "ĠFail", - "18449": "eled", - "18450": "ĠImagine", - "18451": "ĠPlanned", - "18452": "aic", - "18453": "Request", - "18454": "Mad", - "18455": "ĠHorse", - "18456": "ĠEagle", - "18457": "Ġcapac", - "18459": "Ġling", - "18460": "ĠNice", - "18461": "ĠParenthood", - "18462": "minster", - "18463": "ogs", - "18464": "ensitive", - "18465": "Nothing", - "18466": "Ġcarn", - "18467": "Fin", - "18468": "ĠPE", - "18469": "Ġrifles", - "18470": "ĠLP", - "18471": "Sand", - "18472": "ĠguiActive", - "18473": "Ġtourist", - "18474": "CNN", - "18475": "Ġunveiled", - "18476": "Ġpredecessor", - "18477": "}{", - "18478": "uber", - "18479": "Ġoffshore", - "18480": "Ġoptical", - "18481": "ĠRot", - "18482": "ĠPearl", - "18483": "eton", - "18484": "Ġstared", - "18485": "Ġfarther", - "18486": "atility", - "18487": "contin", - "18488": "ĠGy", - "18489": "ĠFoster", - "18490": "ĠCoc", - "18491": "rients", - "18492": "Ġdesigning", - "18493": "ĠEconomy", - "18494": "ONG", - "18495": "Women", - "18496": "ĠNancy", - "18497": "erver", - "18498": "Ġmascul", - "18499": "Ġcasualties", - "18500": "Ġ225", - "18501": "ĠSullivan", - "18502": "ĠChoice", - "18503": "Ġaster", - "18504": "ws", - "18505": "Ġhotels", - "18506": "Ġconsiderations", - "18507": "Ġcouch", - "18508": "ĠStrip", - "18509": "ĠGn", - "18510": "Ġmanipulate", - "18511": "lied", - "18512": "Ġsynthetic", - "18513": "Ġassaulted", - "18514": "Ġoffenses", - "18515": "ĠDrake", - "18516": "Ġimpe", - "18517": "October", - "18518": "ĠHeritage", - "18519": "hl", - "18520": "ĠBlair", - "18521": "Unlike", - "18522": "Ġgrief", - "18523": "Ġ450", - "18524": "Ġopted", - "18525": "Ġresignation", - "18526": "ilo", - "18527": "Ġverse", - "18528": "ĠTomb", - "18529": "Ġupt", - "18530": "Ġaired", - "18531": "ĠHook", - "18532": "ĠMLB", - "18533": "Ġassumes", - "18534": "outed", - "18535": "ĠVers", - "18536": "Ġinferior", - "18537": "Ġbundle", - "18538": "ĠDNS", - "18539": "ographer", - "18540": "Ġmultip", - "18541": "ĠSouls", - "18542": "Ġillustrated", - "18543": "Ġtactic", - "18544": "Ġdressing", - "18545": "Ġduo", - "18546": "Conf", - "18547": "Ġrelent", - "18548": "Ġcant", - "18549": "Ġscarce", - "18550": "Ġcandy", - "18551": "ĠCF", - "18552": "Ġaffiliated", - "18553": "Ġsprint", - "18554": "ylan", - "18555": "ĠGarcia", - "18556": "Ġjunk", - "18557": "Print", - "18558": "exec", - "18559": "Crit", - "18560": "Ġportrait", - "18561": "iries", - "18562": "ĠOFF", - "18563": "Ġdisputes", - "18564": "WR", - "18565": "Love", - "18566": "ãģĦ", - "18567": "ĠReyn", - "18568": "Ġhipp", - "18569": "opath", - "18570": "Ġfloors", - "18571": "ĠFeel", - "18572": "Ġworries", - "18573": "Ġsettlements", - "18574": "ĠPos", - "18575": "Ġmosque", - "18576": "Ġfinals", - "18577": "Ġcrushed", - "18578": "ĠProbably", - "18579": "ĠBot", - "18580": "ĠMans", - "18581": "ĠPeriod", - "18582": "Ġsovereignty", - "18583": "Ġseller", - "18584": "Ġapost", - "18585": "Ġamateur", - "18586": "Ġdorm", - "18587": "Ġconsuming", - "18588": "Ġarmour", - "18589": "ĠRoose", - "18590": "Ġintensive", - "18591": "Ġeliminating", - "18592": "ĠSunni", - "18593": "ĠAleppo", - "18594": "jin", - "18595": "Ġadvise", - "18596": "pal", - "18597": "ĠHalo", - "18598": "Ġdescent", - "18599": "Ġsimpler", - "18600": "Ġbooth", - "18601": "STR", - "18602": "Later", - "18603": "ĠCave", - "18604": "===", - "18605": "Ġmol", - "18606": "Ġfist", - "18607": "Ġshotgun", - "18608": "supp", - "18609": "Ġrobbery", - "18610": "Effect", - "18611": "Ġobscure", - "18612": "ĠProfessional", - "18613": "Ġembassy", - "18614": "Ġmilitant", - "18615": "Ġincarcer", - "18616": "Ġgenerates", - "18617": "Ġlaunches", - "18618": "Ġadministrators", - "18619": "Ġshaft", - "18620": "Ġcircular", - "18621": "Ġfreshman", - "18622": "ĠWes", - "18623": "ĠJoel", - "18624": "ĠDrew", - "18625": "ĠDuncan", - "18626": "ĠApparently", - "18627": "sight", - "18628": "ĠInternal", - "18629": "ĠIndividual", - "18630": "ĠFE", - "18631": "Ġbore", - "18632": "ĠMt", - "18633": "Ġbroadly", - "18634": "ĠOptions", - "18635": "ountain", - "18636": "ipes", - "18637": "ĠVideos", - "18639": "Ġhills", - "18640": "Ġsimulation", - "18641": "Ġdisappointment", - "18642": "itan", - "18643": "ĠLaboratory", - "18644": "Ġupward", - "18645": "Ġboundary", - "18646": "Ġdarker", - "18647": "hart", - "18648": "Ġdominance", - "18649": "Cong", - "18650": "ĠOracle", - "18651": "ĠLords", - "18652": "Ġscholarship", - "18653": "ĠVincent", - "18654": "ede", - "18655": "ĠRah", - "18656": "Ġencourages", - "18657": "rov", - "18658": "Ġquo", - "18659": "Ġpremise", - "18660": "ĠCrisis", - "18661": "ĠHolocaust", - "18662": "Ġrhythm", - "18663": "Ġmetric", - "18664": "club", - "18665": "Ġtransported", - "18666": "Ġnod", - "18667": "ĠPist", - "18668": "Ġancestors", - "18669": "ĠFreder", - "18670": "thumbnails", - "18671": "ĠCE", - "18672": "OND", - "18673": "Phil", - "18674": "venge", - "18675": "ĠProducts", - "18676": "castle", - "18677": "Ġqualifying", - "18678": "ĠKaren", - "18679": "VERTISEMENT", - "18680": "Ġmighty", - "18681": "Ġexplanations", - "18682": "Ġfixing", - "18683": "Di", - "18684": "Ġdeclaring", - "18685": "Ġanonymity", - "18686": "Ġjuven", - "18687": "ĠNord", - "18688": "ĠDoom", - "18689": "ĠActually", - "18690": "Ok", - "18691": "phis", - "18692": "ĠDesert", - "18693": "Ġ116", - "18694": "IK", - "18695": "ĠFM", - "18696": "Ġincomes", - "18697": "VEL", - "18698": "okers", - "18699": "Ġpecul", - "18700": "Ġlightweight", - "18701": "gue", - "18702": "Ġaccent", - "18703": "Ġincrement", - "18704": "ĠChan", - "18705": "Ġcomplaining", - "18706": "ĠBaghd", - "18707": "Ġmidfielder", - "18708": "Ġoverhaul", - "18709": "Process", - "18710": "ĠHollow", - "18711": "ĠTitans", - "18712": "Small", - "18713": "manuel", - "18714": "ĠUnity", - "18715": "ĠEvents", - "18716": "Sty", - "18717": "Ġdisproportion", - "18718": "nesty", - "18719": "enes", - "18720": "ĠCod", - "18721": "Ġdemonstrations", - "18722": "ĠCrimson", - "18723": "ĠOH", - "18724": "Ġenrolled", - "18725": "Ġcel", - "18726": "ĠBrett", - "18727": "Ġaide", - "18728": "Ġheels", - "18729": "Ġbroadband", - "18730": "Ġmarking", - "18731": "Ġwizard", - "18732": "ĠNJ", - "18733": "ĠChiefs", - "18734": "Ġingredient", - "18735": "Ġdug", - "18736": "ĠShut", - "18737": "urchase", - "18738": "endor", - "18739": "Ġfarmer", - "18740": "ĠGoldman", - "18743": "Order", - "18744": "Ġlion", - "18745": "iably", - "18746": "Ġstain", - "18747": "array", - "18748": "ilitary", - "18749": "ĠFAQ", - "18750": "Ġexploded", - "18751": "ĠMcCarthy", - "18752": "ĠTweet", - "18753": "ĠGreens", - "18754": "eking", - "18755": "ln", - "18756": "ensen", - "18757": "Ġmotorcycle", - "18758": "Ġparticle", - "18759": "Ġcholesterol", - "18760": "Bron", - "18761": "Ġstair", - "18762": "Ġoxid", - "18763": "Ġdesirable", - "18764": "ibles", - "18765": "Ġtheor", - "18766": "forcing", - "18767": "Ġpromotional", - "18768": "ovo", - "18769": "boot", - "18770": "ĠBonus", - "18771": "rawling", - "18772": "Ġshortage", - "18773": "ĠPsy", - "18774": "Ġrecruited", - "18775": "Ġinfants", - "18776": "Ġtestosterone", - "18777": "Ġdeduct", - "18778": "Ġdistinctive", - "18779": "Ġfirmware", - "18780": "built", - "18782": "Ġexplored", - "18783": "Ġfactions", - "18784": "Ġvide", - "18785": "Ġtattoo", - "18786": "Ġfinancially", - "18787": "Ġfatigue", - "18788": "Ġproceeding", - "18789": "constitutional", - "18790": "Ġmiser", - "18791": "Ġchairs", - "18792": "gging", - "18793": "ipple", - "18794": "Ġdent", - "18795": "Ġdisreg", - "18796": "çĶ", - "18797": "stant", - "18798": "llo", - "18799": "bps", - "18800": "akening", - "18801": "Ġabnormal", - "18802": "ĠERA", - "18803": "士", - "18804": "ĠHBO", - "18805": "ĠMAR", - "18806": "Ġconcess", - "18807": "Ġservant", - "18808": "Ġaspir", - "18809": "lav", - "18810": "ĠPanel", - "18811": "amo", - "18812": "Ġprecip", - "18813": "Ġrecordings", - "18814": "Ġproceeded", - "18815": "Ġcolony", - "18816": "ĠTang", - "18817": "ablo", - "18818": "Ġstripped", - "18819": "Left", - "18820": "too", - "18821": "Ġpotatoes", - "18822": "Ġfinest", - "18823": "%).", - "18824": "Ġcrap", - "18825": "ĠZach", - "18826": "abases", - "18827": "ĠGoth", - "18828": "Ġbillionaire", - "18829": "wolf", - "18830": "Ġsanction", - "18831": "SK", - "18832": "Ġlogged", - "18833": "Po", - "18834": "eyed", - "18835": "unal", - "18836": "Ġcricket", - "18837": "Ġarmies", - "18838": "Ġuncovered", - "18839": "Cloud", - "18840": "ón", - "18841": "Ġrebounds", - "18842": "Ġmes", - "18843": "Oper", - "18844": "Pac", - "18845": "Ġnationally", - "18846": "Ġinserted", - "18847": "pict", - "18848": "Ġgovernance", - "18849": "и", - "18850": "Ġprivileges", - "18851": "GET", - "18852": "Ġfavorites", - "18853": "imity", - "18854": "Ġlover", - "18855": "them", - "18856": "empl", - "18857": "Ġgorgeous", - "18858": "Ann", - "18859": "Ġslipped", - "18860": "Ġveto", - "18861": "Bob", - "18862": "Ġslim", - "18863": "ucc", - "18864": "ĠFame", - "18865": "uddenly", - "18866": "Ġdenies", - "18867": "ĠMaur", - "18868": "Ġdistances", - "18869": "Ġwanna", - "18870": "tar", - "18871": "ĠSER", - "18872": "ĠâĪ", - "18873": "Ġlemon", - "18874": "athetic", - "18875": "Ġliteral", - "18876": "Ġdistinguished", - "18877": "Ġanswering", - "18878": "GI", - "18879": "Ġreligions", - "18880": "ĠPhilos", - "18881": "ĠLay", - "18882": "Ġcompos", - "18883": "irements", - "18884": "ĠKos", - "18885": "inez", - "18886": "rolling", - "18887": "Ġyoungest", - "18888": "andise", - "18889": "ĠBorn", - "18890": "Ġaltar", - "18891": "amina", - "18892": "ĠBoot", - "18893": "voc", - "18894": "Ġdigging", - "18895": "Ġpressures", - "18896": "Ġlen", - "18898": "Ġassassination", - "18899": "ĠBirmingham", - "18900": "ĠMyth", - "18901": "Ġsovereign", - "18902": "ĠArtist", - "18903": "ĠPhotograph", - "18904": "Ġdepicted", - "18905": "Ġdispens", - "18906": "orthy", - "18907": "Ġambul", - "18908": "integ", - "18909": "ĠCele", - "18910": "ĠTibet", - "18911": "Ġhierarchy", - "18912": "Ġcu", - "18913": "Ġpreseason", - "18914": "ĠPeterson", - "18915": "Ġcolours", - "18916": "Ġworrying", - "18917": "Ġbackers", - "18918": "ĠPalmer", - "18919": "Ġμ", - "18920": "Ġcontributor", - "18921": "Ġhearings", - "18922": "Ġurine", - "18923": "ĠÙ", - "18924": "ourgeois", - "18925": "Similar", - "18926": "ĠZimmer", - "18927": "something", - "18928": "ĠUSC", - "18929": "Ġstrengths", - "18930": "ĠFI", - "18931": "Ġlogging", - "18932": "Asked", - "18933": "ĠThai", - "18934": "inqu", - "18935": "ĠWalt", - "18936": "Ġcrews", - "18937": "itism", - "18939": "Ġsharply", - "18940": "umed", - "18941": "Ġredirect", - "18942": "rators", - "18943": "Inf", - "18944": "ĠWeapons", - "18945": "Ġteasp", - "18947": "Live", - "18948": "ĠEspecially", - "18949": "ĠSter", - "18950": "ĠVeterans", - "18951": "Ġintro", - "18952": "otherapy", - "18953": "Ġmalware", - "18954": "Ġbreeding", - "18955": "Ġmolecular", - "18956": "ĠRoute", - "18957": "ĠComment", - "18958": "ochem", - "18959": "Ġain", - "18960": "Season", - "18961": "Ġlinebacker", - "18962": "Ä«", - "18963": "ĠEconomics", - "18964": "esar", - "18965": "ĠLives", - "18966": "ĠEmma", - "18967": "Ġkin", - "18968": "ĠTerrit", - "18969": "Ġplanted", - "18970": "oton", - "18971": "ĠButter", - "18972": "ĠSpons", - "18973": "PER", - "18974": "Ġdungeon", - "18975": "Ġsymbolic", - "18976": "Ġfilmed", - "18977": "Ġdiets", - "18978": "Ġconcludes", - "18979": "Ġcertainty", - "18980": "ĠFormat", - "18981": "Ġstrangers", - "18982": "format", - "18983": "ĠPhase", - "18984": "Ġcopied", - "18985": "Ġmetres", - "18986": "lda", - "18987": "ĠUsers", - "18988": "Ġdeliberate", - "18989": "Ġwashed", - "18990": "ĠLance", - "18991": "imation", - "18992": "Ġimproper", - "18993": "ĠGenesis", - "18994": "ickr", - "18995": "ĠKush", - "18996": "Ġrealise", - "18997": "Ġembarrassing", - "18998": "alking", - "18999": "bucks", - "19000": "Ġverified", - "19001": "Ġoutline", - "19002": "years", - "19003": "ĠIncome", - "19005": "Ġzombies", - "19006": "Final", - "19007": "ĠMillenn", - "19008": "Ġmodifications", - "19009": "ĠVision", - "19010": "ĠMoses", - "19011": "verb", - "19012": "iterranean", - "19013": "ĠJet", - "19014": "Ġnaval", - "19015": "ĠAgg", - "19016": "Ġurl", - "19017": "Ġvictories", - "19018": "Ġnonetheless", - "19019": "Ġinjust", - "19020": "ĠFact", - "19021": "çļ", - "19022": "Ġinsufficient", - "19023": "review", - "19024": "facebook", - "19025": "Ġnegotiating", - "19026": "Ġguarantees", - "19027": "imen", - "19028": "utenberg", - "19029": "Ġgambling", - "19030": "Ġcongr", - "19031": "Loading", - "19032": "Ġnevertheless", - "19033": "Ġpresidents", - "19034": "ĠIndustrial", - "19035": "Ġ118", - "19036": "Ġpoured", - "19037": "ĠTory", - "19038": "Ġ175", - "19039": "Ġ:=", - "19040": "Scott", - "19041": "angered", - "19042": "Tok", - "19043": "Ġorganizers", - "19044": "Mat", - "19045": "ĠGrowth", - "19046": "Ġadul", - "19047": "Ġensures", - "19048": "Ġ117", - "19049": "é¾įå", - "19050": "Ġmassacre", - "19051": "Ġgrades", - "19052": "before", - "19053": "ADVERTISEMENT", - "19054": "ĠSlow", - "19055": "ĠMMA", - "19056": "âĢĶ\"", - "19057": "ĠVatican", - "19058": "Qaeda", - "19059": "Ġowe", - "19061": "ĠSorry", - "19062": "ĠGrass", - "19063": "Ġbackgrounds", - "19064": "Ġexhausted", - "19065": "Ġclan", - "19066": "Ġcompromised", - "19067": "ĠElf", - "19068": "ĠIsaac", - "19069": "enson", - "19070": "Invest", - "19071": "IFA", - "19072": "Ġinterrupted", - "19073": "ãĥīãĥ©", - "19074": "Ġtwisted", - "19075": "ĠDragons", - "19076": "Mode", - "19077": "ĠKremlin", - "19078": "Ġfertil", - "19079": "heres", - "19080": "phan", - "19081": "ĠNode", - "19082": "fed", - "19083": "ĠOrc", - "19084": "Ġunwilling", - "19085": "Cent", - "19086": "Ġpriorit", - "19087": "Ġgraduates", - "19088": "Ġsubjective", - "19089": "Ġissuing", - "19090": "ĠLt", - "19091": "Ġviewer", - "19092": "Ġwoke", - "19093": "Thus", - "19094": "brook", - "19095": "Ġdepressed", - "19096": "Ġbracket", - "19097": "ĠGor", - "19098": "ĠFighting", - "19099": "Ġstriker", - "19100": "Report", - "19101": "ĠPortugal", - "19102": "Ġneo", - "19103": "wed", - "19105": "Ġfleeing", - "19106": "shadow", - "19107": "identified", - "19108": "USE", - "19109": "Steam", - "19110": "Ġstretched", - "19111": "Ġrevelations", - "19112": "arted", - "19113": "ĠDw", - "19114": "Ġalignment", - "19115": "eston", - "19116": "ĠJared", - "19117": "Sep", - "19118": "Ġblogs", - "19119": "update", - "19120": "gom", - "19121": "risk", - "19122": "Ġclash", - "19123": "ĠHour", - "19124": "Ġruntime", - "19125": "Ġunwanted", - "19126": "Ġscam", - "19127": "Ġrack", - "19128": "Ġenlight", - "19129": "onest", - "19130": "ĠFerr", - "19131": "Ġconvictions", - "19132": "Ġpiano", - "19133": "Ġcirculation", - "19134": "ĠWelcome", - "19135": "Ġbacklash", - "19136": "ĠWade", - "19137": "Ġreceivers", - "19138": "otive", - "19139": "Jeff", - "19140": "Ġnetworking", - "19141": "ĠPrep", - "19142": "ĠExplorer", - "19143": "Ġlecture", - "19144": "Ġuploaded", - "19145": "ĠMeat", - "19146": "BLE", - "19147": "ĠNazis", - "19148": "ĠSynd", - "19149": "stud", - "19150": "roots", - "19151": "rians", - "19152": "Ġportrayed", - "19153": "Ġ??", - "19154": "ĠBuddha", - "19155": "sun", - "19156": "Robert", - "19157": "ĠComplex", - "19158": "Ġoversee", - "19159": "Ġstealth", - "19160": "Title", - "19161": "ĠJobs", - "19162": "ĠKum", - "19163": "Ġappreciation", - "19164": "ĠMOD", - "19165": "Ġbasics", - "19166": "Ġclips", - "19167": "Ġnursing", - "19168": "Ġproposition", - "19169": "Ġrealised", - "19170": "ĠNYC", - "19171": "Ġallocated", - "19172": "rium", - "19173": "aran", - "19174": "ĠProduction", - "19175": "ĠVote", - "19176": "Ġsmugg", - "19177": "Ġhunter", - "19178": "azer", - "19179": "ĠChanges", - "19180": "Ġfluct", - "19181": "yon", - "19182": "Array", - "19183": "Ġkits", - "19184": "Water", - "19185": "Ġuncommon", - "19186": "Ġresting", - "19187": "ells", - "19188": "would", - "19189": "Ġpursued", - "19190": "Ġassertion", - "19191": "ometown", - "19192": "ĠMosul", - "19193": "ĠPlatform", - "19194": "iolet", - "19195": "Ġshareholders", - "19196": "Ġtrails", - "19197": "Pay", - "19198": "ĠEnforcement", - "19199": "types", - "19200": "ĠAnonymous", - "19201": "Ġsatisfying", - "19202": "ilogy", - "19203": "Ġ('", - "19204": "wave", - "19205": "city", - "19206": "Steve", - "19207": "Ġconfrontation", - "19208": "ĠEld", - "19209": "Capt", - "19210": "ahan", - "19211": "htm", - "19212": "ĠCtrl", - "19213": "ONS", - "19215": "ifa", - "19216": "holding", - "19217": "Ġdelicate", - "19218": "Ġjaw", - "19219": "ĠGoing", - "19220": "orum", - "19221": "Sal", - "19222": "Ġdull", - "19223": "ĠBeth", - "19224": "Ġprisons", - "19225": "Ġego", - "19226": "ĠElsa", - "19227": "avorite", - "19228": "ĠGang", - "19229": "ĠNuclear", - "19230": "Ġspider", - "19231": "atsu", - "19232": "Ġsampling", - "19233": "Ġabsorbed", - "19234": "ĠPharm", - "19235": "ieth", - "19236": "Ġbucket", - "19237": "ĠRecomm", - "19238": "OF", - "19239": "ĠFactory", - "19240": "ANCE", - "19241": "Ġbacter", - "19242": "Has", - "19243": "ĠObserv", - "19245": "Ġpremiere", - "19246": "Develop", - "19247": "Ġcurrencies", - "19248": "Cast", - "19249": "Ġaccompanying", - "19250": "ĠNashville", - "19251": "Ġfatty", - "19252": "ĠBrend", - "19253": "Ġlocks", - "19254": "Ġcentered", - "19255": "ĠUT", - "19256": "aughs", - "19257": "orie", - "19258": "ĠAffordable", - "19259": "vance", - "19260": "DL", - "19261": "emet", - "19262": "Ġthrone", - "19263": "ĠBluetooth", - "19264": "Ġnaming", - "19265": "ifts", - "19266": "ADE", - "19267": "Ġcorrected", - "19268": "Ġpromptly", - "19269": "ĠSTR", - "19270": "Ġgenome", - "19271": "Ġcope", - "19272": "Ġvalley", - "19273": "Ġrounded", - "19274": "ĠKend", - "19275": "alion", - "19276": "pers", - "19277": "Ġtourism", - "19278": "Ġstark", - "19279": "vl", - "19280": "Ġblowing", - "19281": "ĠSchedule", - "19282": "std", - "19283": "Ġunhappy", - "19284": "Ġlitigation", - "19285": "cedes", - "19286": "Ġandroid", - "19287": "Ġintegral", - "19288": "erers", - "19289": "uded", - "19290": "tax", - "19291": "Ġreiter", - "19292": "ĠMotors", - "19293": "ociated", - "19294": "Ġwonders", - "19295": "ĠApost", - "19296": "ucking", - "19297": "ĠRoosevelt", - "19298": "fram", - "19299": "Ġyields", - "19300": "Ġconstitutes", - "19301": "awk", - "19302": "Interest", - "19303": "Ġinterim", - "19304": "Ġbreakthrough", - "19305": "ĠCher", - "19306": "Ġprosec", - "19307": "ĠDj", - "19308": "ĠMT", - "19309": "Resp", - "19310": "ĠPT", - "19311": "Ġsperm", - "19312": "edit", - "19313": "BT", - "19314": "Linux", - "19315": "country", - "19316": "league", - "19317": "Ġdick", - "19318": "Ġoct", - "19319": "Ġinserting", - "19320": "Ġscra", - "19321": "ĠBrewing", - "19322": "Ġ1966", - "19323": "Ġrunners", - "19324": "Ġplun", - "19325": "idy", - "19326": "ĠDian", - "19327": "Ġdysfunction", - "19328": "Ġexclusion", - "19329": "Ġdisgr", - "19330": "Ġincorporate", - "19331": "Ġreconc", - "19332": "Ġnominated", - "19333": "ĠArcher", - "19334": "draw", - "19335": "achelor", - "19336": "Ġwritings", - "19337": "Ġshallow", - "19338": "Ġhast", - "19339": "ĠBMW", - "19340": "ĠRS", - "19341": "Ġthigh", - "19342": "Ġ1963", - "19343": "Ġlamb", - "19344": "Ġfavored", - "19345": "agle", - "19346": "Ġcooler", - "19347": "ĠHours", - "19348": "ĠGU", - "19349": "ĠOrigin", - "19350": "Ġglimpse", - "19351": "--------------------", - "19352": "Lim", - "19353": "Ġcheek", - "19354": "Ġjealous", - "19355": "-'", - "19356": "Ġharness", - "19357": "ĠPoison", - "19358": "Ġdisabilities", - "19359": "neapolis", - "19360": "Ġoutlook", - "19361": "Ġnotify", - "19362": "ĠIndianapolis", - "19363": "Ġabrupt", - "19364": "nsic", - "19365": "Ġencrypted", - "19366": "Ġforfe", - "19367": "reath", - "19368": "Ġrabb", - "19369": "Ġfoundations", - "19370": "Ġcompliment", - "19371": "ĠInterview", - "19372": "ĠSwe", - "19373": "Ġadolesc", - "19374": "Ġmonitors", - "19375": "ĠSacramento", - "19376": "Ġtimely", - "19377": "Ġcontempl", - "19378": "Ġpositioned", - "19379": "Ġposters", - "19380": "phies", - "19381": "iovascular", - "19382": "void", - "19383": "ĠFifth", - "19384": "Ġinvestigative", - "19385": "OUN", - "19386": "Ġintegrate", - "19387": "ĠINC", - "19388": "isha", - "19389": "iblings", - "19390": "ĠRequest", - "19391": "ĠRodriguez", - "19392": "Ġslides", - "19393": "ĠDX", - "19394": "Ġfeminism", - "19395": "Ġdatas", - "19396": "Ġbend", - "19397": "irus", - "19398": "ĠNigeria", - "19399": "Fox", - "19400": "Change", - "19401": "Ġairplane", - "19402": "ĠLaden", - "19403": "Ġpublicity", - "19404": "ixty", - "19405": "Ġcommitments", - "19406": "Ġaggregate", - "19407": "Ġdisplaying", - "19408": "ĠArrow", - "19409": "Ġ122", - "19410": "Ġrespects", - "19411": "android", - "19412": "six", - "19413": "ĠSha", - "19414": "Ġrestoration", - "19415": ")\\", - "19416": "WS", - "19417": "oys", - "19418": "Ġillustrate", - "19419": "without", - "19421": "ĠâĶĤ", - "19422": "Ġpickup", - "19423": "nels", - "19424": "Ġ....", - "19425": "food", - "19426": "ĠFen", - "19427": ")?", - "19428": "Ġphenomena", - "19429": "Ġcompanions", - "19430": "ĠWrite", - "19431": "Ġspill", - "19432": "Ġbridges", - "19433": "ĠUpdated", - "19434": "ĠFo", - "19435": "Ġinsects", - "19436": "ASHINGTON", - "19437": "Ġscare", - "19438": "iltr", - "19439": "ĠZhang", - "19440": "Ġseverity", - "19441": "Ġindul", - "19443": "ĠCoffee", - "19444": "Ġnorms", - "19445": "Ġpulse", - "19446": "ĠFT", - "19447": "Ġhorrific", - "19448": "ĠDestroy", - "19449": "ĠJSON", - "19450": "Ġolive", - "19451": "Ġdiscusses", - "19452": "Rest", - "19453": "Elect", - "19454": "ĠWinn", - "19455": "ĠSurviv", - "19456": "ĠHait", - "19457": "Sure", - "19458": "oped", - "19459": "Ġrooted", - "19460": "ĠSke", - "19461": "ĠBronze", - "19462": "Ġlol", - "19463": "Default", - "19464": "Ġcommodity", - "19465": "redited", - "19466": "Ġlibertarian", - "19467": "Ġforbidden", - "19468": "Ġgran", - "19469": "à¨", - "19470": "Ġlag", - "19471": "enz", - "19472": "drive", - "19473": "Ġmathematics", - "19474": "Ġwires", - "19475": "Ġcritically", - "19476": "Ġcarbohyd", - "19477": "ĠChancellor", - "19478": "ĠEddie", - "19479": "Ġbanning", - "19480": "ĠFri", - "19481": "Ġcomplications", - "19482": "etric", - "19483": "ĠBangladesh", - "19484": "Ġbandwidth", - "19485": "Stop", - "19486": "ĠOriginally", - "19487": "Ġhalfway", - "19488": "ynasty", - "19489": "shine", - "19490": "Ġtales", - "19491": "rities", - "19492": "avier", - "19493": "Ġspinning", - "19494": "ĠWHO", - "19495": "Ġneighbourhood", - "19496": "bach", - "19497": "Ġcommerce", - "19498": "ĠSle", - "19499": "BU", - "19500": "Ġentrepreneur", - "19501": "Ġpeculiar", - "19502": "ĠComments", - "19503": "fre", - "19505": "ICS", - "19506": "Ġimagery", - "19507": "ĠCanon", - "19508": "ĠElectronic", - "19509": "short", - "19510": "((", - "19511": "Dig", - "19512": "Ġcommem", - "19513": "uced", - "19514": "Ġinclined", - "19515": "ĠSummon", - "19516": "Ġcliff", - "19517": "ĠMediterranean", - "19518": "Ġpoetry", - "19519": "Ġprosperity", - "19520": "ĠRece", - "19521": "Ġpills", - "19522": "member", - "19523": "Ġfinale", - "19524": "unc", - "19525": "ĠGig", - "19526": "ä½", - "19527": "Ġlod", - "19528": "Ġbackward", - "19529": "-+", - "19530": "ĠForward", - "19531": "Ġthri", - "19532": "sure", - "19533": "Ġsoap", - "19534": "ĠFX", - "19535": "RES", - "19536": "ĠSexual", - "19537": "oulos", - "19538": "Ġfoolish", - "19539": "Ġrighteous", - "19540": "Ġcoff", - "19541": "terrorism", - "19542": "ustain", - "19543": "oter", - "19544": "Ġabuses", - "19545": "next", - "19546": "Ġabusive", - "19547": "Ġthereafter", - "19548": "Ġprohibition", - "19549": "ĠSUP", - "19550": "Ġdip", - "19551": "Ġripped", - "19552": "Ġinherited", - "19553": "Ġbats", - "19554": "stru", - "19555": "GT", - "19556": "Ġflawed", - "19557": "phabet", - "19558": "Ġfog", - "19559": "doors", - "19560": "Ġimaging", - "19561": "Ġdigits", - "19562": "ĠHungary", - "19563": "Ġarrog", - "19564": "Ġteachings", - "19565": "Ġprotocols", - "19566": "ĠBanks", - "19567": "à¸", - "19568": "pound", - "19569": "ĠCurt", - "19570": ".\")", - "19571": "./", - "19572": "Ġexemption", - "19573": "endix", - "19574": "ĠMull", - "19575": "Ġimproves", - "19576": "ĠGamer", - "19577": "dimensional", - "19578": "Icon", - "19579": "ĠMargaret", - "19580": "Status", - "19581": "dates", - "19582": "Ġintends", - "19583": "Ġdepict", - "19584": "Ġparked", - "19585": "Joe", - "19586": "ĠMarines", - "19587": "chnology", - "19588": "!).", - "19589": "Ġjudged", - "19590": "Ġweights", - "19591": "Ray", - "19592": "Ġapartments", - "19593": "hester", - "19594": "Ġreinforce", - "19595": "Ġoffender", - "19596": "occup", - "19597": "Ġsore", - "19598": "ept", - "19599": "ĠPHP", - "19600": "ĠBrow", - "19601": "Ġauthorization", - "19602": "ĠRisk", - "19603": "ĠDelaware", - "19604": "ĠQU", - "19605": "Ġnotifications", - "19606": "Ġsunlight", - "19607": "Ġexclude", - "19608": "dat", - "19609": "Ġmesh", - "19610": "ĠSudan", - "19611": "Ġbelonged", - "19612": "Ġsubway", - "19613": "Ġnoon", - "19614": "ĠInterior", - "19615": "olics", - "19616": "ĠLakers", - "19617": "Ġcoding", - "19618": "Disclaimer", - "19619": "Calif", - "19620": "Old", - "19621": "Ġdisl", - "19622": "?????", - "19623": "Ġconfirms", - "19624": "Ġrecruitment", - "19625": "Ġhomicide", - "19626": "Consider", - "19627": "ĠJeffrey", - "19628": "fty", - "19629": "};", - "19630": "Ġobjection", - "19631": "doing", - "19632": "ĠLeo", - "19633": "Want", - "19634": "Ġglow", - "19635": "ĠClarke", - "19636": "ĠNorman", - "19637": "Ġverification", - "19638": "Ġpacket", - "19639": "ĠFormula", - "19640": "Ġplag", - "19641": "esville", - "19642": "Ġshouting", - "19643": "Ġov", - "19644": "ĠREC", - "19645": "ĠBub", - "19646": "Ġninth", - "19647": "Ġenerg", - "19648": "Ġvalidity", - "19649": "Ġups", - "19650": "jack", - "19651": "Ġneighboring", - "19652": "ĠNec", - "19653": "eworks", - "19654": "ĠHab", - "19655": "arez", - "19656": "Ġspine", - "19657": "Ġeventual", - "19658": "ĠLeaders", - "19659": "ĠCarn", - "19660": "Ġprobation", - "19661": "Ġromance", - "19662": "msg", - "19663": "ĠMechanical", - "19664": "ERY", - "19665": "Rock", - "19666": "Ġpartisan", - "19667": "Node", - "19668": "assets", - "19669": "minent", - "19670": "Ġforeigners", - "19671": "Ġtestify", - "19672": "ĠUsually", - "19673": "lords", - "19674": "ĠGren", - "19675": "ĠPowell", - "19676": "BIL", - "19677": "Ġsr", - "19678": "Ġaddict", - "19679": "Ġshells", - "19680": "Ġsigh", - "19681": "ĠYale", - "19682": "ternity", - "19683": "Ġ750", - "19684": "EU", - "19685": "ĠRifle", - "19686": "Ġpatron", - "19687": "ema", - "19688": "ĠBannon", - "19689": "anity", - "19690": "Ġtropical", - "19691": "ĠVII", - "19692": "cross", - "19693": "Everything", - "19694": "ĠISO", - "19695": "Ġhumble", - "19696": "assing", - "19697": "ĠFIG", - "19698": "Ġupdating", - "19699": "yson", - "19700": "Ġcalcium", - "19701": "Ġcompetent", - "19702": "Ġsteering", - "19703": "Prot", - "19704": "ĠSY", - "19705": "ĠFinals", - "19706": "ĠRug", - "19709": "ĠGolf", - "19710": "Ġ126", - "19711": "Ġaccommodation", - "19712": "ĠHughes", - "19713": "Ġaesthetic", - "19714": "artisan", - "19715": "ĠTwilight", - "19716": "Ġprince", - "19717": "ĠAgriculture", - "19718": "ĠDisco", - "19719": "Ġprecedent", - "19720": "Ġtyping", - "19721": "authorized", - "19722": "Option", - "19723": "ĠAub", - "19724": "lishes", - "19725": "acht", - "19726": "mag", - "19727": "Peter", - "19728": "ĠUFO", - "19729": "monton", - "19730": "ĠLith", - "19731": "Ġarom", - "19732": "Ġsecuring", - "19733": "Ġconfined", - "19734": "private", - "19735": "Ġswords", - "19736": "Ġmarkers", - "19737": "Ġmetabolic", - "19738": "select", - "19739": "ĠCurse", - "19740": "ĠOt", - "19741": "gressive", - "19742": "Ġincumb", - "19743": "ĠSaga", - "19744": "Ġpriced", - "19745": "Ġclearance", - "19746": "Content", - "19747": "Ġdrilling", - "19748": "Ġnotices", - "19749": "Ġbourgeois", - "19750": "Ġvest", - "19751": "Ġcookie", - "19752": "ĠGuardians", - "19753": "rys", - "19754": "inyl", - "19755": "Ġ124", - "19756": "Ġplausible", - "19757": "ongh", - "19758": "ĠOdin", - "19759": "Ġconception", - "19760": "ĠYuk", - "19761": "ĠBaghdad", - "19762": "ĠFlag", - "19763": "Austral", - "19764": "ĠIBM", - "19765": "Ġinternationally", - "19766": "ĠWikiLeaks", - "19767": "IED", - "19768": "Ġcyn", - "19769": "Ġchooses", - "19770": "ĠPill", - "19771": "Ġcombining", - "19772": "Ġradi", - "19773": "ĠMohammed", - "19774": "defense", - "19775": "atching", - "19776": "Subject", - "19777": "iciency", - "19778": "Frame", - "19779": "Ġ{\"", - "19780": "Ġchess", - "19781": "Ġtimer", - "19783": "Ġtin", - "19784": "Ġordinance", - "19785": "emetery", - "19786": "Ġaccusing", - "19787": "Ġnoticeable", - "19788": "Ġcentres", - "19789": "Ġlid", - "19790": "ĠMills", - "19791": "imgur", - "19792": "Ġzoom", - "19793": "ergic", - "19794": "Ġcompression", - "19795": "prim", - "19796": "find", - "19797": "Ġsurg", - "19798": "Ġpand", - "19799": "ĠKee", - "19800": "ĠChad", - "19801": "cellence", - "19802": "oyle", - "19803": "Ġsocialism", - "19804": "ĠTravis", - "19805": "ĠMHz", - "19806": "Ġguild", - "19807": "ALLY", - "19808": "ĠSubscribe", - "19809": "ĠRelated", - "19810": "Ġoccurrence", - "19811": "itching", - "19812": "Ġfictional", - "19813": "Ġcrush", - "19814": "ĠEA", - "19815": "cod", - "19816": "mix", - "19817": "ĠTriple", - "19818": "Ġretrieve", - "19819": "Ġstimulus", - "19820": "Ġpsychiat", - "19821": "ĠDoor", - "19822": "Ġhomosexuality", - "19823": "Ġelementary", - "19824": "Ġcellular", - "19825": "idian", - "19826": "ĠLaun", - "19827": "Ġintriguing", - "19828": "Ġfoam", - "19829": "ĠBass", - "19830": "idi", - "19831": "itsu", - "19832": "Ġassure", - "19833": "Ġcongrat", - "19834": "Ġbusinessman", - "19835": "ĠBoost", - "19836": "close", - "19837": "Ġlied", - "19838": "Ġsciences", - "19839": "ĠOmega", - "19840": "ĠGraphics", - "19841": "Ġ<=", - "19842": "spoken", - "19843": "Ġconnectivity", - "19844": "Saturday", - "19845": "ĠAvengers", - "19846": "Ġtoggle", - "19847": "Ġankle", - "19848": "Ġnationalist", - "19849": "model", - "19850": "ĠPool", - "19851": "ophobia", - "19852": "Var", - "19853": "ĠMons", - "19854": "atories", - "19855": "Ġaggressively", - "19856": "Clear", - "19857": "Forge", - "19858": "acters", - "19859": "Ġhedge", - "19860": "Ġpipes", - "19861": "Ġblunt", - "19862": "Ġsq", - "19863": "Ġremotely", - "19864": "Wed", - "19865": "asers", - "19866": "Ġrefriger", - "19867": "Ġtiles", - "19868": "Ġrescued", - "19869": "Ġcomprised", - "19870": "insky", - "19871": "Ġmanif", - "19872": "avanaugh", - "19873": "Ġprolifer", - "19874": "Ġaligned", - "19875": "xml", - "19876": "Ġtriv", - "19877": "Ġcoordination", - "19878": "ĠPER", - "19879": "ĠQuote", - "19881": "bf", - "19882": "ĠSaw", - "19883": "Ġtermination", - "19884": "Ġ190", - "19885": "Ġadditions", - "19886": "Ġtrio", - "19887": "Ġprojections", - "19888": "Ġpositively", - "19889": "Ġinclusive", - "19890": "Ġmembr", - "19892": "older", - "19893": "Ġpracticed", - "19894": "inkle", - "19895": "Arch", - "19896": "Ġstarters", - "19897": "arius", - "19898": "Ġintermediate", - "19899": "ĠBenef", - "19900": "ĠKiller", - "19901": "Ġinterventions", - "19902": "ĠKil", - "19903": "ĠFlying", - "19904": "Inv", - "19905": "Ġpremature", - "19906": "Ġpsychiatric", - "19907": "Ġindie", - "19908": "Ġcollar", - "19909": "ĠRainbow", - "19910": "afi", - "19911": "Ġdisruption", - "19912": "ĠFOX", - "19913": "casting", - "19914": "Ġmisdem", - "19915": "cro", - "19916": "Ġwipe", - "19917": "ardon", - "19918": "Ġbast", - "19919": "ĠTommy", - "19920": "ĠRepresentative", - "19921": "Ġbelly", - "19922": "ĠPO", - "19923": "ĠBreitbart", - "19925": "Ġmessaging", - "19926": "Should", - "19927": "References", - "19928": "ĠGRE", - "19929": "istical", - "19930": "LP", - "19931": "ĠCav", - "19932": "ĠCrazy", - "19933": "Ġintuitive", - "19934": "keeping", - "19935": "ĠMoss", - "19936": "Ġdiscontin", - "19937": "ĠModule", - "19938": "Ġunrelated", - "19939": "ĠPractice", - "19940": "ĠTransport", - "19941": "Ġstatistically", - "19942": "orns", - "19943": "Ġsized", - "19944": "pu", - "19945": "Ġcaf", - "19946": "ĠWorlds", - "19947": "ĠRodgers", - "19948": "ĠLun", - "19949": "ĠComic", - "19950": "living", - "19951": "Ġcared", - "19952": "Ġclimbed", - "19953": "){", - "19954": "Ġconsisted", - "19955": "Ġmedieval", - "19956": "folk", - "19957": "Ġhacked", - "19958": "Ġdire", - "19959": "ĠHermione", - "19960": "Ġtended", - "19961": "ceans", - "19962": "Daniel", - "19963": "went", - "19964": "Ġlegislators", - "19965": "Ġredes", - "19966": "games", - "19967": "Ġgn", - "19968": "amiliar", - "19969": "Ġ++", - "19970": "ggy", - "19971": "threat", - "19972": "Ġmagnet", - "19973": "Ġperceive", - "19974": "Ġzip", - "19975": "Ġindictment", - "19976": "Ġcritique", - "19977": "gard", - "19978": "ĠSafe", - "19979": "ĠCream", - "19980": "Ġadvent", - "19981": "oba", - "19982": "Ġvowed", - "19983": "ousands", - "19984": "Ġski", - "19985": "Ġabortions", - "19986": "uart", - "19987": "Ġstunned", - "19988": "Ġadvancing", - "19989": "Ġlacked", - "19990": "Ġ\\\"", - "19991": "Ġschizophren", - "19992": "Ġelegant", - "19993": "Ġconferences", - "19994": "Ġcanceled", - "19995": "ĠHudson", - "19996": "ĠHopefully", - "19997": "Ġtrump", - "19998": "Ġfrequencies", - "19999": "Ġmeteor", - "20000": "ĠJunior", - "20001": "ĠFleet", - "20002": "ĠMalcolm", - "20003": "ĠTools", - "20004": "Ġ........", - "20005": "Ġhobby", - "20006": "ĠEuropeans", - "20007": "Ġ1500", - "20008": "ĠInto", - "20009": "Ġsway", - "20010": "ĠAppro", - "20011": "ĠCompl", - "20012": "Community", - "20013": "Ġtide", - "20014": "ĠSummit", - "20015": "ä»", - "20016": "Ġintervals", - "20017": "ĠEther", - "20018": "Ġhabitat", - "20019": "ĠStevens", - "20020": "lishing", - "20021": "ĠDomain", - "20022": "Ġtriggers", - "20023": "Ġchasing", - "20024": "Ġcharm", - "20025": "ĠFlower", - "20026": "itored", - "20027": "Ġblessing", - "20028": "Ġtextures", - "20029": "Five", - "20030": "Ġliquor", - "20031": "RP", - "20032": "FIN", - "20033": "Ġ1962", - "20034": "CAR", - "20035": "Unknown", - "20036": "Ġresil", - "20037": "ĠLily", - "20038": "Ġabundance", - "20039": "Ġpredictable", - "20040": "rar", - "20041": "Ġbullshit", - "20042": "leen", - "20043": "chet", - "20044": "Mor", - "20045": "Much", - "20046": "ä¹", - "20047": "Ġemphasized", - "20048": "Ġcrust", - "20049": "Ġprimitive", - "20050": "Ġenjoyable", - "20051": "ĠPictures", - "20052": "Ġteammate", - "20053": "pler", - "20054": "ĠTol", - "20055": "ĠKane", - "20056": "Ġsummoned", - "20057": "thy", - "20058": "rama", - "20059": "ĠHonda", - "20060": "Ġrealizing", - "20061": "Ġquicker", - "20062": "Ġconcentrate", - "20063": "clear", - "20064": "Ġ210", - "20065": "ĠErdogan", - "20066": "aris", - "20067": "Ġresponds", - "20068": "ĠBI", - "20069": "Ġeligibility", - "20070": "Ġpushes", - "20071": "ĠIdaho", - "20072": "Ġaggrav", - "20073": "Ġruins", - "20074": "urations", - "20075": "Ġbans", - "20076": "Ġanat", - "20077": "share", - "20078": "Ġgrind", - "20079": "hin", - "20080": "umen", - "20081": "Ġutilities", - "20082": "ĠYankees", - "20083": "Ġdatabases", - "20084": "ĠDD", - "20085": "Ġdisplaced", - "20086": "Ġdependencies", - "20087": "Ġstimulation", - "20088": "hun", - "20089": "houses", - "20090": "ĠPretty", - "20091": "ĠRavens", - "20092": "ĠTODAY", - "20093": "Ġassociates", - "20094": "Ġtherape", - "20095": "cled", - "20096": "Ġdeer", - "20097": "Ġrepairs", - "20098": "rentice", - "20099": "Ġreceptors", - "20100": "Ġremed", - "20101": "ĠCe", - "20102": "Ġmarriages", - "20103": "Ġballots", - "20104": "ĠSoldier", - "20105": "Ġhilarious", - "20106": "opl", - "20108": "Ġinherently", - "20109": "Ġignorant", - "20110": "Ġbounce", - "20111": "ĠEaster", - "20112": "RELATED", - "20113": "ĠCurrency", - "20114": "EV", - "20115": "ãĥŀ", - "20116": "ĠLead", - "20117": "Ġdeceased", - "20118": "Brien", - "20119": "ĠMusk", - "20120": "JS", - "20121": "Ġmerge", - "20122": "hearted", - "20123": "creat", - "20124": "mitt", - "20125": "mund", - "20126": "ĠâĢĭ", - "20127": "ĠBag", - "20128": "Ġprojection", - "20129": "Ġjava", - "20130": "ĠStandards", - "20131": "ĠLeonard", - "20132": "Ġcoconut", - "20133": "ĠPopulation", - "20134": "Ġtraject", - "20135": "Ġimply", - "20136": "Ġcuriosity", - "20137": "ĠDB", - "20138": "ĠFresh", - "20139": "ĠPor", - "20140": "Ġheavier", - "20141": "neys", - "20142": "gomery", - "20143": "Ġdeserved", - "20144": "Ġphrases", - "20145": "ĠGC", - "20146": "Ġyeast", - "20147": "desc", - "20148": "Death", - "20149": "Ġreboot", - "20150": "Ġmetadata", - "20151": "ICAL", - "20152": "Ġrepay", - "20153": "ĠIndependence", - "20154": "Ġsuburban", - "20155": "icals", - "20156": "Ġatop", - "20157": "Ġallocation", - "20158": "generation", - "20159": "ĠGram", - "20160": "Ġmoisture", - "20161": "Ġpine", - "20162": "ĠLiberals", - "20163": "Ġaides", - "20164": "Ġunderest", - "20165": "ĠBerry", - "20166": "Ġceremon", - "20168": "astrous", - "20169": "ĠPirates", - "20170": "Ġtense", - "20171": "ĠIndustries", - "20172": "ĠAppeals", - "20173": "ĠNear", - "20174": "Ġè£ıç", - "20175": "Ġlovers", - "20176": "ĠCAP", - "20177": "ĠCraw", - "20178": "Ġgiants", - "20179": "Ġefficacy", - "20180": "Element", - "20181": "ĠBehavior", - "20182": "ĠToyota", - "20183": "Ġintest", - "20184": "Priv", - "20185": "AI", - "20186": "Ġmaneuver", - "20187": "Ġperfection", - "20188": "Ġbang", - "20189": "paper", - "20190": "rill", - "20191": "George", - "20192": "border", - "20193": "inters", - "20194": "ĠSeth", - "20195": "Ġclues", - "20196": "ĠLevi", - "20197": "ĠRevenue", - "20199": "Ġvapor", - "20200": "Ġfortunate", - "20201": "Ġthreatens", - "20202": "Ġvet", - "20203": "Ġdependency", - "20204": "ersed", - "20205": "article", - "20206": "ĠBlizzard", - "20207": "Ġchlor", - "20208": "Ġminus", - "20209": "ĠBills", - "20210": "Ġcryptocurrency", - "20211": "Ġmetabolism", - "20212": "tering", - "20213": "Ġpestic", - "20214": "steps", - "20215": "ĠTreasure", - "20216": "racted", - "20217": "ĠConstant", - "20218": "Ġtemp", - "20220": "ĠDetective", - "20221": "urally", - "20222": "Ġrecovering", - "20223": "Ġcortex", - "20224": "Ġ144", - "20225": "closed", - "20226": "Ġprejudice", - "20227": "aunted", - "20228": "Ġstorms", - "20229": "ĠNOW", - "20230": "Ġmachinery", - "20231": "Address", - "20232": "Ġcompelled", - "20234": "Ġdespair", - "20235": "bane", - "20236": "Ġvegetable", - "20237": "Ġbeds", - "20238": "Learn", - "20239": "Ġcolorful", - "20240": "Ġspike", - "20241": "Ġmargins", - "20242": "Ġsympathy", - "20243": "Ġworkshop", - "20244": "ĠCBC", - "20245": "Sat", - "20246": "Ġburns", - "20247": "ĠGender", - "20248": "Ġ129", - "20249": "ĠCable", - "20250": "Ġdebts", - "20251": "ĠTheresa", - "20252": "Ġreflecting", - "20253": "Ġairst", - "20254": "Ġrim", - "20255": "ramid", - "20256": "Ġweaknesses", - "20257": "Writ", - "20258": "oggle", - "20259": "ti", - "20260": "ĠCharge", - "20261": "Ġweighed", - "20262": "Ġ(.", - "20263": "Ġlaughter", - "20264": "Ġrouter", - "20265": "ĠDemocracy", - "20266": "Dear", - "20267": "Ġhasht", - "20268": "Ġdy", - "20269": "Ġhints", - "20270": "running", - "20271": "Ġfinishes", - "20272": "arus", - "20273": "Mass", - "20274": "result", - "20275": "ascus", - "20276": "Ġvintage", - "20277": "Ġconqu", - "20278": "Ġwildly", - "20279": "acist", - "20280": "Ġlingu", - "20281": "Ġprotagonist", - "20282": "strom", - "20283": "teenth", - "20284": "ĠSolo", - "20285": "mac", - "20286": "filled", - "20287": "Ġrenown", - "20288": "itives", - "20289": "Ġmotive", - "20290": "ĠAntar", - "20291": "ĠMann", - "20292": "ĠAdjust", - "20293": "Ġrockets", - "20294": "Ġtroubling", - "20295": "ei", - "20296": "Ġorganisms", - "20297": "assis", - "20298": "Christian", - "20299": "Ġ145", - "20300": "ĠHass", - "20301": "Ġswall", - "20302": "Ġwax", - "20303": "ĠSurvival", - "20304": "VS", - "20305": "ĠMurd", - "20306": "vd", - "20307": "standard", - "20308": "Ġdragons", - "20309": "Ġacceleration", - "20310": "rational", - "20311": "final", - "20312": "Ġpaired", - "20313": "ĠEthereum", - "20314": "Ġinterfaces", - "20315": "Ġresent", - "20316": "Ġartifacts", - "20317": "Å«", - "20318": "arel", - "20319": "Ġcompetitor", - "20320": "ĠNicholas", - "20321": "ĠSurface", - "20322": "cpp", - "20323": "ĠTot", - "20324": "Ġeconomically", - "20325": "Ġorganised", - "20326": "Ġenforced", - "20327": "inho", - "20328": "Ġvarieties", - "20329": "Ġabdom", - "20330": "ĠBailey", - "20331": "idav", - "20332": "ĠSalv", - "20333": "paid", - "20334": "Ġaltitude", - "20335": "essert", - "20336": "ĠGutenberg", - "20337": "area", - "20338": "opoulos", - "20339": "Ġprofessors", - "20340": "iggs", - "20341": "ĠFate", - "20342": "hey", - "20343": "Ġ3000", - "20344": "Dist", - "20345": "Ġtwins", - "20346": "cill", - "20347": "ĠMaps", - "20348": "Ġtraps", - "20349": "Ġweed", - "20350": "ĠKiss", - "20351": "Ġyoga", - "20352": "Ġrecipients", - "20353": "ĠWestminster", - "20354": "Ġpools", - "20355": "ĠWalmart", - "20357": "ĠSchools", - "20358": "attack", - "20359": "ĠARM", - "20360": "paragraph", - "20361": "Warning", - "20362": "jl", - "20363": "Ġselfish", - "20364": "anchez", - "20365": "ĠHeights", - "20366": "Fre", - "20367": "ĠSoph", - "20368": "Ġ--------------------------------", - "20369": "tml", - "20371": "Ġraids", - "20372": "Ġsatellites", - "20373": "KEY", - "20374": "Ġlasts", - "20375": "ÑĤ", - "20376": "Ins", - "20377": "ĠDame", - "20378": "Ġunpredict", - "20379": "///", - "20380": "ghai", - "20381": "Ġartillery", - "20382": "Ġcruise", - "20383": "Ġgel", - "20384": "ĠCabinet", - "20385": "Ġblows", - "20386": "ĠEsp", - "20387": "Ġproximity", - "20388": "othe", - "20389": "ĠSkills", - "20390": "ĠUpper", - "20391": "obo", - "20392": "ĠNDP", - "20393": "Ġenjoys", - "20394": "Ġrepeating", - "20395": "ĠConstruction", - "20396": "ĠQuestions", - "20397": "Hillary", - "20398": "Ġuint", - "20399": "Ġprocessors", - "20400": "ĠGibson", - "20401": "ĠMultiple", - "20402": "qa", - "20403": "ĠBom", - "20404": "ĠMiles", - "20405": "ventional", - "20406": "Ġhurts", - "20407": "skin", - "20408": "ĠAIDS", - "20409": "Ġadvisers", - "20410": "ĠRoot", - "20411": "Ġmethodology", - "20412": "ĠDale", - "20413": "Ġdeton", - "20414": "ĠKnowledge", - "20415": "sequently", - "20416": "Ġ121", - "20417": "Ġconnects", - "20418": "Cy", - "20419": "ĠDanger", - "20420": "Ġcontributors", - "20421": "ĠBent", - "20422": "Ġbrass", - "20423": "ĠGuns", - "20424": "into", - "20425": "ĠFortune", - "20426": "Ġbroker", - "20427": "balance", - "20428": "Ġlengths", - "20429": "Ġvic", - "20430": "Ġaveraging", - "20431": "Ġappropriately", - "20432": "ĠCamera", - "20433": "Ġsandwich", - "20434": "ĠCDC", - "20435": "Ġcoordinate", - "20436": "Ġnavig", - "20437": "Ġgoodness", - "20438": "laim", - "20439": "Ġbrake", - "20440": "Ġextremist", - "20441": "ĠWake", - "20442": "ĠMend", - "20443": "ĠTiny", - "20444": "ĠCOL", - "20445": "ĠRF", - "20446": "ĠDual", - "20447": "ĠWine", - "20448": "Case", - "20449": "Ġrefined", - "20450": "Ġlamp", - "20451": "Lead", - "20452": "Ġbapt", - "20453": "ĠCarb", - "20454": "ĠSadd", - "20455": "ĠMinneapolis", - "20456": "PDF", - "20457": "Early", - "20458": "ĠHidden", - "20459": "Its", - "20460": "ĠTIME", - "20461": "Ġpap", - "20462": "Ġcommissioned", - "20463": "ĠFew", - "20464": "ĠColts", - "20465": "ĠBren", - "20466": "Ġbothered", - "20467": "Ġlikewise", - "20468": "Exper", - "20469": "ĠSchw", - "20470": "cry", - "20471": "nn", - "20472": "ĠMitch", - "20473": "imon", - "20474": "MG", - "20475": "bm", - "20476": "UMP", - "20477": "rays", - "20478": "Ġregistry", - "20479": "Ġ270", - "20480": "achine", - "20481": "rella", - "20482": "anting", - "20483": "00000", - "20484": "Ġruined", - "20485": "spot", - "20486": "Ġta", - "20487": "Ġmaximize", - "20488": "Ġinconven", - "20489": "Dead", - "20490": "Human", - "20491": "Enabled", - "20492": "ĠMarie", - "20493": "Ġchill", - "20494": "ĠParadise", - "20495": "Ġstarring", - "20496": "ĠLatino", - "20497": "ĠProtocol", - "20498": "ĠEVER", - "20499": "Ġsuppliers", - "20500": "message", - "20501": "ĠBrock", - "20502": "Ġserum", - "20503": "âĸĪâĸĪâĸĪâĸĪ", - "20504": "Ġencomp", - "20505": "Ġambition", - "20506": "uese", - "20507": "Ġarrows", - "20508": "Andrew", - "20509": "Ġantenna", - "20510": "Ġ1961", - "20511": "ĠBark", - "20512": "Ġbool", - "20513": "ãĤª", - "20514": "ĠStorage", - "20515": "Ġrailway", - "20516": "Ġtougher", - "20517": "ĠCad", - "20518": "Ġwashing", - "20519": "Py", - "20520": "']", - "20521": "embed", - "20522": "ĠMemphis", - "20523": "ackle", - "20524": "Ġfamously", - "20525": "ĠFortunately", - "20526": "ovies", - "20527": "Ġmindset", - "20528": "Ġsneak", - "20529": "ĠDh", - "20530": "RAW", - "20531": "ĠSimpson", - "20532": "Ġlivest", - "20533": "Ġlandmark", - "20534": "Ġcement", - "20535": "Low", - "20536": "Ġthrilled", - "20537": "ĠCourse", - "20538": "inel", - "20539": "Ġchuck", - "20540": "idate", - "20541": "global", - "20542": "Ġwhit", - "20543": "Ġ�", - "20544": "adays", - "20545": "ski", - "20546": "ĠSV", - "20547": "Ġviruses", - "20549": "ĠRespons", - "20550": "Ġtheaters", - "20551": "ĠBranch", - "20552": "ĠGeneva", - "20553": "ĠMK", - "20554": "Ġunbeliev", - "20555": "Ġcommunist", - "20556": "Original", - "20557": "ĠReceived", - "20558": "ĠTransfer", - "20559": "ĠArg", - "20560": "Input", - "20561": "ĠStrategy", - "20562": "Ġpalace", - "20563": "thening", - "20564": "Dri", - "20565": "Ġsentencing", - "20566": "umbnail", - "20567": "Ġpins", - "20568": "recy", - "20569": "Ġsiblings", - "20570": "Getting", - "20571": "ĠBU", - "20572": "ĠNorthwest", - "20573": "Ġprolonged", - "20574": "ĠSakura", - "20575": "Comb", - "20576": "ĠBour", - "20577": "Ġinadequate", - "20578": "ĠKash", - "20579": "Ġusername", - "20580": "ĠImprove", - "20581": "Ġbattling", - "20582": "ĠMAC", - "20583": "Ġcurriculum", - "20584": "Ġsoda", - "20585": "ĠCannon", - "20586": "Ġsensible", - "20587": "spons", - "20588": "December", - "20589": "Ġwicked", - "20590": "ĠPengu", - "20591": "Ġdictators", - "20592": "ĠHearts", - "20593": "ogyn", - "20594": "Ġsimilarities", - "20595": "ĠStats", - "20596": "Ġhollow", - "20597": "itations", - "20598": "\":[", - "20599": "Ġhover", - "20600": "ĠListen", - "20601": "sch", - "20602": "Sund", - "20603": "Ġcad", - "20604": "ĠParks", - "20605": "Ġlur", - "20606": "Ġhype", - "20607": "ĠLem", - "20608": "NAME", - "20609": "isure", - "20610": "Friday", - "20611": "Ġshoots", - "20612": "Ġcloses", - "20613": "Ġdb", - "20614": "ĠRidge", - "20615": "ĠDifferent", - "20616": "Ġreplies", - "20617": "ĠBroadway", - "20618": "opers", - "20619": "Ġintoler", - "20620": "ĠZeus", - "20621": "akespe", - "20622": "Ġproprietary", - "20623": "Ġrequesting", - "20624": "Ġcontrollers", - "20625": "ĠMIN", - "20626": "imedia", - "20627": "becca", - "20628": "Ġexpans", - "20629": "Ġoils", - "20630": "Bot", - "20631": "ĠChand", - "20632": "Ġprinter", - "20633": "Ġtopped", - "20634": "ĠPOL", - "20635": "ĠEarlier", - "20636": "Social", - "20637": "avin", - "20638": "Ġdecreases", - "20639": "ĠSeb", - "20640": "Ġspecifications", - "20641": "ĠBlast", - "20642": "ĠKurt", - "20643": "Ġfreel", - "20644": "Brown", - "20645": "Ġdilig", - "20646": "roe", - "20647": "ĠProblem", - "20648": "ĠQuad", - "20649": "Ġdecentral", - "20650": "ĠVector", - "20651": "anut", - "20652": "Ġplugins", - "20653": "ĠGregory", - "20654": "Ġfucked", - "20655": "elines", - "20656": "ĠAmbassador", - "20657": "take", - "20658": "Ġcleans", - "20659": "ongyang", - "20660": "Anonymous", - "20661": "stro", - "20662": "\"}", - "20663": "aline", - "20664": "ĠOdd", - "20665": "ĠEug", - "20667": "Ġboil", - "20668": "ĠPowers", - "20669": "Ġnurses", - "20670": "Obviously", - "20671": "ĠTechnical", - "20672": "Ġexceeded", - "20673": "ORS", - "20674": "Ġextremists", - "20675": "Ġtraces", - "20676": "expl", - "20677": "Ġcomr", - "20678": "ĠSach", - "20679": ")/", - "20680": "Ġmasks", - "20681": "Ġsci", - "20682": "Bon", - "20683": "Ġregression", - "20684": "wegian", - "20685": "Ġadvisor", - "20686": "itures", - "20687": "ĠVo", - "20688": "example", - "20689": "ĠInstruct", - "20690": "Ġsiege", - "20691": "Ġreductions", - "20692": "ptr", - "20693": "Ġstatutory", - "20694": "Ġremoves", - "20695": "Ġpuck", - "20696": "redits", - "20697": "Ġbee", - "20698": "Ġsalad", - "20699": "Ġpromotions", - "20700": "ĠJoshua", - "20701": "withstanding", - "20702": "ETH", - "20703": "ĠCha", - "20704": "imus", - "20705": "Ġexpenditure", - "20706": "aunting", - "20707": "Ġdelighted", - "20708": "Ġ155", - "20709": "beh", - "20710": "Ġcarpet", - "20711": "ĠSpart", - "20712": "Ġjungle", - "20713": "lists", - "20714": "Ġbullying", - "20715": "ĠNobel", - "20716": "ĠGlen", - "20717": "Ġreferenced", - "20718": "Ġintroduces", - "20719": "sein", - "20720": "Ġchopped", - "20721": "glass", - "20722": "ĠWrest", - "20723": "Ġneutrality", - "20724": "ĠâĻ", - "20725": "Ġinvestigator", - "20726": "Ġshelves", - "20727": "Ġunconstitutional", - "20728": "Ġreproduction", - "20729": "Ġmerchant", - "20730": "mia", - "20731": "Ġmetrics", - "20732": "Ġexplosives", - "20733": "ĠSonia", - "20734": "Ġbodily", - "20735": "Ġthickness", - "20736": "Ġpredominantly", - "20737": "ĠAbility", - "20738": "Ġmonitored", - "20739": "ICH", - "20740": "Ġ].", - "20741": "ĠMartinez", - "20742": "Ġvisibility", - "20743": "Ġqueries", - "20744": "Ġgenocide", - "20745": "ĠWarfare", - "20746": "Query", - "20747": "Ġstudios", - "20748": "Ġembry", - "20749": "Ġcorridor", - "20750": "Ġcleaned", - "20751": "complete", - "20752": "ĠMH", - "20753": "Ġenrollment", - "20754": "INGS", - "20755": "Ġimpacted", - "20756": "Ġdisastrous", - "20757": "ĠYun", - "20758": "ĠClaire", - "20759": "ĠBasically", - "20760": "yt", - "20761": "usterity", - "20762": "Ġindirectly", - "20763": "wik", - "20764": "Ġdod", - "20765": "ĠCarr", - "20766": "Ġamp", - "20767": "Ġprohibit", - "20768": "ĠInitial", - "20769": "ĠRd", - "20770": "iji", - "20771": "Ġeducate", - "20772": "corn", - "20773": "iott", - "20774": "ĠBeauty", - "20775": "Ġdetective", - "20776": "ĠConn", - "20777": "since", - "20778": "Ġstagger", - "20779": "Ġobese", - "20780": "Ġbree", - "20781": "ologic", - "20782": "isse", - "20783": "walker", - "20784": "Ġblades", - "20785": "Ġlawful", - "20786": "func", - "20787": "ĠBehind", - "20788": "Ġappetite", - "20789": "Ġ(*", - "20790": "Ġtennis", - "20791": "Ġoffspring", - "20792": "Ġjets", - "20793": "Ġstructured", - "20794": "Ġaforementioned", - "20795": "Nov", - "20796": "Ġscaling", - "20797": "fill", - "20798": "Ġstew", - "20799": "Ġcurb", - "20800": "ĠStephan", - "20801": "edIn", - "20802": "SF", - "20803": "obic", - "20804": "éŃĶ", - "20805": "oug", - "20806": "ĠMM", - "20807": "Ġgenetically", - "20808": "opez", - "20810": "Ġumb", - "20811": "ancers", - "20812": "Ġcohort", - "20813": "Ġmerchandise", - "20814": "Ġimposing", - "20815": "ĠLegislature", - "20816": "ĠArchive", - "20817": "ivia", - "20818": "ĠNaval", - "20819": "Ġoffences", - "20820": "Ġmiracle", - "20821": "Ġsnapped", - "20822": "Ġfoes", - "20823": "Ġextensively", - "20824": "ĠRaf", - "20825": "Ġcater", - "20826": "edience", - "20827": "Kit", - "20828": "ĠBin", - "20829": "Ġrecommends", - "20830": "ĠCities", - "20831": "Ġrigid", - "20832": "ĠREAD", - "20833": "ĠNoble", - "20834": "ĠTian", - "20835": "Ġcertificates", - "20836": "antis", - "20837": "oiler", - "20838": "ĠBuddhist", - "20839": "did", - "20840": "Ġsurveyed", - "20841": "Ġdownward", - "20842": "Ġprints", - "20843": "ĠMotion", - "20844": "ronics", - "20845": "ĠSans", - "20846": "ossibly", - "20847": "uctions", - "20848": "Ġcolonies", - "20849": "ĠDanish", - "20850": "unit", - "20851": "Ġspoil", - "20852": "Ġadvisory", - "20853": "berries", - "20854": "Plan", - "20855": "Ġspecification", - "20856": "ophers", - "20857": "ĠResource", - "20858": "Ġshirts", - "20859": "prisingly", - "20860": "communications", - "20861": "Ġtrivial", - "20862": "Ġmentioning", - "20863": "isexual", - "20864": "Ġsupplements", - "20865": "Ġsupervision", - "20866": "BP", - "20867": "vor", - "20868": "Ġwit", - "20869": "Ġcooldown", - "20870": "Ġplaintiff", - "20871": "ĠReviews", - "20872": "ĠSri", - "20873": "ĠMint", - "20874": "ĠSugar", - "20875": "Ġafterward", - "20876": "ĠPriest", - "20877": "ĠInvestment", - "20878": "ogene", - "20879": "ĠTaking", - "20880": "Ġstretching", - "20881": "Ġinflammation", - "20882": "ĠTehran", - "20883": "Ġlining", - "20884": "Ġfreezing", - "20885": "ĠEntity", - "20886": "Ġinspiring", - "20887": "special", - "20888": "price", - "20889": "Ġsue", - "20890": "ĠPorter", - "20891": "ounge", - "20892": "ETA", - "20893": "ĠDerek", - "20894": "ĠLuis", - "20895": "uo", - "20896": "ymph", - "20897": "Ġexterior", - "20898": "ihil", - "20899": "ĠAshley", - "20900": "inator", - "20901": "Ġnutrients", - "20902": "ĠThrones", - "20903": "Ġfinances", - "20904": "ĠInspect", - "20905": "Ġspecially", - "20906": "ĠRequired", - "20907": "ĠPTS", - "20908": "ĠViolence", - "20909": "ointed", - "20910": "shots", - "20911": "Ġexcerpt", - "20912": "coon", - "20913": "INS", - "20914": "ĠGri", - "20915": "Ġrecognised", - "20916": "Week", - "20917": "Young", - "20918": "Ġvom", - "20919": "isle", - "20920": "ĠCurry", - "20921": "ĠBuddh", - "20922": "Ġnotebook", - "20923": "Ġdurable", - "20924": "/?", - "20925": "ĠGad", - "20926": "ĠPupp", - "20927": "Ġforgive", - "20928": "park", - "20929": "Ġpersonalities", - "20930": "analysis", - "20931": "clamation", - "20932": "Ġelevator", - "20933": "Ġwarehouse", - "20934": "ĠRole", - "20935": "unn", - "20936": "Ġillustration", - "20937": "ĠScan", - "20938": "Ġatmospheric", - "20939": "Import", - "20940": "ANC", - "20941": "ricted", - "20942": "fu", - "20943": "010", - "20944": "Ġarche", - "20945": "Ġrewarded", - "20946": "akespeare", - "20947": "Ġinternally", - "20948": "ĠRBI", - "20949": "alker", - "20950": "Ġelephant", - "20951": "owitz", - "20952": "ĠPizza", - "20953": "Ġbipartisan", - "20954": "és", - "20955": "Ġslowed", - "20956": "ĠStark", - "20957": "Ġoverride", - "20958": "OUS", - "20959": "Ġ320", - "20960": "undreds", - "20961": "ĠDeck", - "20962": "ĠCensus", - "20963": "bee", - "20965": "otor", - "20966": "Ġip", - "20967": "Ġub", - "20968": "ocations", - "20969": "ĠButton", - "20970": "rice", - "20971": "Ġcripp", - "20972": "fff", - "20973": "Ġoriginated", - "20974": "Ġoverwhelmed", - "20975": "appa", - "20976": "Ġforemost", - "20977": "âĢij", - "20978": "ĠLEG", - "20979": "release", - "20980": "eatured", - "20981": "atches", - "20982": "Ġreps", - "20983": "Ġlending", - "20984": "ĠReference", - "20985": "ĠClient", - "20987": "venth", - "20988": "Complete", - "20989": "ĠPatrol", - "20990": "Ġsworn", - "20991": "cam", - "20992": "Ġshuttle", - "20993": "ĠRalph", - "20994": "Ġhometown", - "20995": "-,", - "20996": "onal", - "20997": "ĠBP", - "20998": "åı", - "20999": "Ġpersuade", - "21000": "ĠAlexand", - "21001": "Ġcombines", - "21002": "Ġvivid", - "21003": "ĠLag", - "21004": "Ġencoding", - "21005": "Ġsalvation", - "21006": "wen", - "21007": "ĠRecovery", - "21008": "iya", - "21009": "University", - "21010": "ĠBiden", - "21011": "Ġbudgets", - "21012": "ĠTexans", - "21013": "fits", - "21014": "Ġhonored", - "21015": "Ġpython", - "21016": "TD", - "21017": "###", - "21018": "clone", - "21019": "Ġblink", - "21020": "ĠLiquid", - "21021": "Ġunemployed", - "21022": "Ġclashes", - "21023": "ĠCounsel", - "21024": "Ġdirecting", - "21025": "Ġpunct", - "21026": "ĠFalcons", - "21027": "Ġshark", - "21028": "ĠDamascus", - "21029": "Ġjeans", - "21030": "Ġembark", - "21031": "Ġseize", - "21032": "Ġupwards", - "21034": "ĠEz", - "21035": "ĠAnything", - "21036": "Ġexotic", - "21037": "lower", - "21038": "ĠCreator", - "21039": "ĠUm", - "21040": "Ġsuburbs", - "21041": "berger", - "21042": "ĠWend", - "21043": "Ġmint", - "21044": "ĠXX", - "21045": "ĠDro", - "21046": "Ġsuffers", - "21047": "Ġherb", - "21048": "tree", - "21049": "Ġfragile", - "21050": "Ġflooded", - "21051": "ĠAlcohol", - "21052": "olean", - "21053": "nyder", - "21054": "ĠKO", - "21055": "Fram", - "21056": "Ġ136", - "21057": "Ġowed", - "21058": "ĠMelee", - "21059": "ĠHash", - "21060": "Ġwhisk", - "21061": "Ġsudo", - "21062": "rr", - "21063": "Quick", - "21064": "appro", - "21065": "Ġii", - "21066": "ĠExamples", - "21067": "hee", - "21068": "Ġpromotes", - "21069": "perature", - "21070": "kar", - "21071": "ĠHonor", - "21072": "Ġsodium", - "21073": "ĠLif", - "21074": "rosso", - "21075": "intendent", - "21076": "Ġcorrespondent", - "21077": "Found", - "21078": "secret", - "21079": "Ġidentifies", - "21080": "agne", - "21081": "Ġlou", - "21082": "ĠPP", - "21083": "Ġcoincidence", - "21084": "move", - "21085": "Ġmilitia", - "21086": "Ġinfiltr", - "21087": "ĠPrimary", - "21088": "Ġpitching", - "21089": "ĠIb", - "21090": "ĠGOOD", - "21091": "ãĤ¸", - "21092": "ĠWizards", - "21093": "iral", - "21094": "ĠVenus", - "21095": "RR", - "21096": "ĠâĢķ", - "21097": "ĠCasey", - "21098": "Ġsadly", - "21099": "Ġadmire", - "21100": "Ġembarrassed", - "21101": "cb", - "21102": "Mel", - "21103": "Ġtubes", - "21104": "Ġbeautifully", - "21105": "ĠQueensland", - "21106": "Below", - "21107": "rez", - "21108": "quet", - "21109": "pleasant", - "21110": "Ġ«", - "21111": "Camp", - "21112": "Ġdecisive", - "21114": "ĠLamb", - "21115": "utton", - "21116": "hn", - "21117": "ĠJagu", - "21118": "aunder", - "21119": "ĠCord", - "21120": "Ġclerk", - "21121": "Ġcaffe", - "21122": "Ġwiped", - "21123": "Ġreim", - "21124": "ĠMountains", - "21125": "Ġimprisoned", - "21126": "Ġdevelops", - "21127": "ĠPra", - "21128": "Ġmodeling", - "21129": "Anyone", - "21130": "ancel", - "21131": "ĠSit", - "21132": "Ġshields", - "21133": "Ġlawn", - "21134": "Ġcardiovascular", - "21135": "Ġdemonstrating", - "21136": "Ġparse", - "21137": "ĠIsraelis", - "21138": "Ġeuros", - "21140": "Ġglorious", - "21141": "inski", - "21142": "ecd", - "21143": "Ġconditioning", - "21144": "Ġhelpless", - "21145": "Ġmicrosc", - "21146": "ĠHarbor", - "21147": "Ġstakes", - "21148": "Ġ260", - "21149": "Ġunequ", - "21150": "ĠFloyd", - "21151": "Ġdamp", - "21152": "Ġapparatus", - "21153": "ĠLaws", - "21154": "Ġcounters", - "21155": "Ġinduce", - "21156": "atable", - "21157": "ĠAhmed", - "21158": "Ġslam", - "21159": "November", - "21160": "Ġpersist", - "21161": "Ġimminent", - "21162": "án", - "21163": "Ġshred", - "21164": "Ġphases", - "21165": "ĠEdmonton", - "21166": "ĠArmstrong", - "21167": "ĠMeet", - "21168": "ĠKitty", - "21169": "ÑĢ", - "21170": "circ", - "21171": "ĠAdult", - "21172": "Ġarose", - "21173": "ĠXen", - "21174": "Dan", - "21175": "gow", - "21176": "Ġsuperf", - "21177": "ĠAdmir", - "21178": "Ġendure", - "21179": "Ġkeyword", - "21180": "yrus", - "21181": "Ġyarn", - "21182": "Ġpathway", - "21183": "ĠHopkins", - "21184": "midt", - "21185": "Ġcensorship", - "21186": "dependent", - "21187": "Ġinstructor", - "21188": "Sources", - "21189": "Ġtoe", - "21190": "Ġballoon", - "21191": "Nob", - "21192": "Ġswear", - "21193": "ĠCastro", - "21194": "Ġgloss", - "21195": "ĠKavanaugh", - "21196": "Ġremarkably", - "21197": "Photos", - "21198": "ĠNom", - "21199": "ĠSoutheast", - "21200": "yers", - "21201": "Ġvalidation", - "21202": "Ġcannon", - "21203": "ĠVictory", - "21204": "ĠPierre", - "21205": "Ġcautious", - "21206": "Audio", - "21207": "Ġfetch", - "21208": "ĠGift", - "21209": "ĠHyp", - "21210": "Ġremedy", - "21211": "ZE", - "21212": "Ġscent", - "21213": "Ġbeard", - "21214": "ĠRut", - "21215": "-\"", - "21216": "Ġpatents", - "21217": "Hy", - "21218": "Ġunjust", - "21219": "Ġpotato", - "21220": "Ġforthcoming", - "21221": "Ġchef", - "21222": "ĠRift", - "21223": "affe", - "21224": "ĠROM", - "21225": "ĠLaunch", - "21226": "Ġpads", - "21227": "ĠNeo", - "21228": "Ġonset", - "21229": "Ġsqueeze", - "21230": "safe", - "21231": "Ġprefix", - "21232": "ĠTM", - "21233": "ĠNearly", - "21234": "ĠClinical", - "21235": "ĠMental", - "21236": "otiation", - "21237": "ĠUnic", - "21238": "antry", - "21239": "ĠCir", - "21240": "Ġepit", - "21241": "æ", - "21242": "Ġextracted", - "21243": "versely", - "21244": "riad", - "21245": "Ġstrains", - "21246": "Ġtops", - "21247": "Ġpoem", - "21248": "ĠRandy", - "21249": "ĠMaple", - "21250": "THER", - "21251": "upiter", - "21252": "ĠSSD", - "21253": "ļé", - "21254": "Ġuncon", - "21255": "pering", - "21256": "Ġslept", - "21257": "iners", - "21258": "Ġunderwater", - "21259": "ĠEvidence", - "21260": "gone", - "21262": "Ġhistorians", - "21263": "Ġsynthesis", - "21264": "Ġfrog", - "21265": "basketball", - "21266": "Ġvibrant", - "21267": "Ġsubord", - "21268": "Ġ365", - "21269": "ĠDial", - "21270": "Ġcooperate", - "21271": "HAHA", - "21272": "Ġgreeted", - "21274": "Ġjazz", - "21275": "Ġintox", - "21276": "ĠWalking", - "21277": "Ġsupervisor", - "21278": "ĠFusion", - "21279": "ĠMercedes", - "21280": "send", - "21281": "Ham", - "21282": "sd", - "21283": "nl", - "21284": "Ġtours", - "21285": "ĠFIFA", - "21286": "Ġculp", - "21287": "gd", - "21289": "Ġpleas", - "21290": "Ġillustrates", - "21291": "ĠColombia", - "21292": "Ġhighlighting", - "21293": "ĠSummary", - "21294": "Ġexposing", - "21295": "ĠDru", - "21296": "Ġirony", - "21297": "ritional", - "21298": "ĠCarroll", - "21299": "ĠEllis", - "21300": "Pict", - "21301": "ĠRapt", - "21302": "Ġadapter", - "21303": "Ġunm", - "21304": "Ġcorpse", - "21305": "Ġcelebrities", - "21306": "Den", - "21307": "atum", - "21308": "ĠApocalypse", - "21309": "ĠWag", - "21310": "lining", - "21311": "Ġhormones", - "21312": "Rub", - "21313": "ĠXi", - "21314": "ĠVaults", - "21316": "alkyrie", - "21317": "inosaur", - "21318": "Ġfeeds", - "21319": "vity", - "21320": "Ġdefeating", - "21321": "Wait", - "21322": "Ġemphasize", - "21323": "ĠSteelers", - "21324": "yrinth", - "21325": "leys", - "21326": "ĠWhenever", - "21327": "Currently", - "21328": "ĠClock", - "21329": "Ġcollectively", - "21330": "anyon", - "21331": "ĠJP", - "21332": "Ġmentality", - "21333": "Ġdownloads", - "21334": "Ġsurroundings", - "21335": "ĠBarnes", - "21336": "Ġflagship", - "21337": "Ġindicators", - "21338": "Ġgrapp", - "21339": "January", - "21340": "ĠElemental", - "21341": "ĠAthena", - "21342": "ibal", - "21343": "Ġsights", - "21344": "Ġcapita", - "21345": "ĠTreaty", - "21346": "Ġvoiced", - "21347": "ĠGaz", - "21348": "lette", - "21349": "Ġya", - "21350": "Ġexpired", - "21351": "Legend", - "21352": "Hot", - "21353": "nature", - "21354": "Ġunstable", - "21355": "Ġ280", - "21356": "ú", - "21357": "Comment", - "21358": "ALE", - "21359": "Ġquests", - "21360": "Ġhandler", - "21361": "nis", - "21362": "Ġversatile", - "21363": "Ġconceal", - "21364": "engeance", - "21365": "ĠInteractive", - "21366": "Ġobsessed", - "21367": "ĠDogs", - "21368": "Ġcracked", - "21369": "Sound", - "21370": "sv", - "21371": "ĠDylan", - "21372": "roads", - "21373": "fx", - "21374": "ĠCatholics", - "21375": "ĠHag", - "21376": "Ġslammed", - "21377": "Ġglowing", - "21378": "sale", - "21379": "Ġtissues", - "21380": "ĠChi", - "21381": "nee", - "21382": "Ġcher", - "21383": "sic", - "21384": "urrection", - "21385": "Ġbacon", - "21386": "ulatory", - "21387": ").\"", - "21388": "Ġirregular", - "21389": "FORM", - "21390": "assed", - "21391": "Ġintentional", - "21392": "Ġcompensate", - "21393": "ĠSpeaking", - "21394": "ĠSets", - "21396": "Ġconventions", - "21397": "bands", - "21398": "emade", - "21399": "Ġecc", - "21400": "ĠWinston", - "21401": "ĠAssassin", - "21402": "ĠBelgian", - "21403": "Ġdependence", - "21404": "Ġniche", - "21405": "Ġbark", - "21406": "ĠJazz", - "21407": "Ġdisadvantage", - "21408": "Ġgasoline", - "21409": "Ġ165", - "21410": "çļĦ", - "21411": "essa", - "21412": "module", - "21413": "angular", - "21414": "OY", - "21415": "ĠTreatment", - "21416": "itas", - "21417": "olation", - "21418": "ĠArnold", - "21419": "Ġfeud", - "21420": "ĠNest", - "21421": "Ġtheatre", - "21422": "ewater", - "21423": "Ġminors", - "21424": "olicy", - "21425": "ĠHaven", - "21426": "division", - "21427": "Ġtrunk", - "21428": "Far", - "21429": "ĠPull", - "21430": "Ġcapturing", - "21431": "Ġ1800", - "21432": "ĠTeen", - "21433": "Ġexempl", - "21434": "Ġclinics", - "21435": "ĠBurg", - "21436": "Ġsubstit", - "21437": "Ġpayload", - "21438": "ĠLav", - "21439": "ĠTroy", - "21440": "ĠWitness", - "21441": "Ġfragments", - "21442": "Ġpasswords", - "21443": "Ġgospel", - "21444": "ĠGin", - "21445": "Ġtenants", - "21446": "olith", - "21447": "Six", - "21448": "Previous", - "21449": "ĠAges", - "21450": "ĠDarwin", - "21451": "Ġblat", - "21452": "Ġempathy", - "21453": "smith", - "21454": "bag", - "21455": "ĠEcho", - "21456": "ĠCamb", - "21457": "ĠMadd", - "21458": "ĠBoo", - "21459": "Ġrede", - "21460": "ĠBurning", - "21461": "Ġsmoothly", - "21462": "ĠAdrian", - "21463": "ĠVampire", - "21464": "ĠMonsters", - "21465": "steam", - "21466": "Style", - "21467": "Ma", - "21468": "rea", - "21469": "ĠDwar", - "21470": "alyst", - "21471": "ursor", - "21472": "Ġelimination", - "21473": "Ġcrypto", - "21474": "cht", - "21475": "ĠEternal", - "21476": "â̦]", - "21477": "ĠSorce", - "21478": "Ill", - "21479": "NER", - "21480": "Ġuh", - "21481": "Conclusion", - "21482": "wage", - "21483": "Ġrespir", - "21484": "Ġreminis", - "21485": "hetical", - "21486": "Ġgy", - "21487": "Ġutilized", - "21488": "icidal", - "21489": "Ġ1900", - "21490": "Ġhunters", - "21491": "ĠSwan", - "21492": "ĠReact", - "21493": "Ġvisitor", - "21494": "ĠThanksgiving", - "21496": "Posts", - "21497": "Ġhips", - "21499": "omers", - "21500": "Ġknocking", - "21501": "ĠVehicle", - "21502": "Ġtil", - "21503": "Ġ138", - "21504": "Ġmi", - "21505": "ĠInvestigation", - "21506": "ĠKenya", - "21507": "Ġcasino", - "21508": "Ġmotives", - "21509": "Ġregain", - "21510": "rex", - "21511": "Ġweekends", - "21512": "Ġstabbed", - "21513": "boro", - "21514": "Ġexploited", - "21515": "ĠHAVE", - "21516": "ĠTelevision", - "21517": "cock", - "21518": "Ġpreparations", - "21519": "Ġendeav", - "21520": "ĠRemote", - "21521": "ĠMaker", - "21522": "ĠProdu", - "21523": "ĠEvan", - "21524": "Ġinformational", - "21525": "ĠLouisville", - "21527": "ĠDreams", - "21528": "Ġplots", - "21529": "ĠRunner", - "21530": "Ġhurting", - "21531": "Ġacademy", - "21532": "ĠMontgomery", - "21533": "nm", - "21534": "ĠLanc", - "21535": "ĠAlz", - "21537": "elong", - "21538": "Ġretailer", - "21539": "Ġarising", - "21540": "Ġrebellion", - "21541": "Ġblonde", - "21542": "played", - "21543": "Ġinstrumental", - "21544": "Cross", - "21545": "Ġretention", - "21546": "Ġtherapeutic", - "21547": "Ġseas", - "21548": "Ġinfantry", - "21549": "ĠClint", - "21550": "Ġprompting", - "21551": "Ġbitch", - "21552": "Ġstems", - "21553": "ĠKra", - "21554": "Ġthesis", - "21555": "ĠBog", - "21556": "rued", - "21557": "Ġkings", - "21558": "Ġclay", - "21559": "ificent", - "21560": "ĠYES", - "21561": "ĠThing", - "21562": "ĠCubs", - "21563": "veyard", - "21564": "elsh", - "21565": "inarily", - "21566": "ĠEy", - "21567": "ĠRolling", - "21568": "Ġevolving", - "21569": "India", - "21570": "Ġrecognizes", - "21571": "Ġgraduation", - "21572": "isers", - "21573": "Ġfertility", - "21574": "ĠMilan", - "21575": "Command", - "21576": "Ġboxing", - "21577": "Ġ1943", - "21578": "Ġgluten", - "21579": "ĠEmir", - "21580": "Ġidol", - "21581": "Ġconceived", - "21582": "ĠCreation", - "21583": "Merit", - "21584": "uddy", - "21585": "ussions", - "21586": "ĠLieutenant", - "21587": "ietal", - "21588": "Ġunchanged", - "21589": "ĠScale", - "21590": "ĠCrimea", - "21591": "balls", - "21592": "atorial", - "21593": "Ġdepths", - "21594": "Ġempirical", - "21595": "Ġtransm", - "21596": "Ġunsafe", - "21597": "missible", - "21598": "comfort", - "21600": "Ġmechanic", - "21601": "002", - "21602": "lins", - "21603": "Ġsmoked", - "21604": "Pos", - "21605": "Ġslowing", - "21606": "Ġlav", - "21607": "Texas", - "21608": "Ġcheating", - "21609": "ĠMetropolitan", - "21610": "ethyl", - "21611": "Ġdiscovering", - "21612": "asse", - "21613": "Ġpencil", - "21614": "ĠPyongyang", - "21615": "Ġcloset", - "21616": "ĠSheet", - "21617": "ĠEntry", - "21618": "oustic", - "21619": "Ġmyst", - "21620": "erate", - "21621": "ariat", - "21622": "Ġminerals", - "21623": "Ġmusician", - "21624": "ĠPul", - "21625": "ĠMaz", - "21627": "Ġpermissions", - "21628": "Ġiv", - "21629": "enary", - "21630": "ickers", - "21631": "ĠBing", - "21632": "hea", - "21633": "enable", - "21634": "Ġgriev", - "21635": "Ġasserted", - "21636": "ĠColonel", - "21637": "Ġaffidav", - "21638": "wo", - "21639": "Ġseated", - "21640": "ĠRide", - "21641": "Ġpaintings", - "21642": "ĠPix", - "21643": "Ġ137", - "21644": "ishi", - "21645": "umbai", - "21646": "gotten", - "21647": "ĠEarl", - "21648": "Ġinning", - "21649": "Ġcensus", - "21650": "Ġtravelled", - "21651": "ĠConsult", - "21653": "bind", - "21654": "Ġsimplicity", - "21655": "Ġoverlooked", - "21656": "ĠHelpful", - "21657": "Ġmonkey", - "21658": "Ġoverwhelmingly", - "21659": "Blood", - "21660": "ĠFlint", - "21661": "ĠJama", - "21662": "ĠPresent", - "21663": "ĠRage", - "21664": "ĠTA", - "21665": "ptive", - "21666": "Ġturnout", - "21667": "wald", - "21668": "ĠDolphins", - "21669": "ĠVPN", - "21670": "Ġonion", - "21671": "Ġcrafting", - "21672": "mma", - "21673": "ĠMercury", - "21674": "Ġarrange", - "21675": "Ġalerts", - "21676": "ĠOT", - "21677": "zbollah", - "21678": "Ġgases", - "21679": "ĠRichardson", - "21680": "sal", - "21681": "lar", - "21682": "Ġfrost", - "21683": "Ġlowering", - "21684": "Ġacclaim", - "21685": "Ġstartups", - "21686": "ĠGain", - "21687": "essment", - "21688": "Ġguardian", - "21689": "人", - "21690": "ĠPie", - "21691": "ĠLinks", - "21692": "Ġmerits", - "21693": "Ġawake", - "21694": "Ġparental", - "21695": "Ġexceeds", - "21696": "Ġidle", - "21697": "ĠPilot", - "21698": "ĠeBay", - "21699": "ĠAccept", - "21700": "ipeg", - "21701": "Cam", - "21702": "ĠKot", - "21703": "Ġtraders", - "21704": "olitics", - "21705": "unker", - "21706": "ĠPale", - "21707": "osi", - "21708": "anmar", - "21709": "Ġ1947", - "21710": "ĠFell", - "21711": "estial", - "21712": "itating", - "21713": "GF", - "21714": "ĠSr", - "21715": "ifted", - "21716": "Ġconnector", - "21717": "ĠBone", - "21718": "illes", - "21720": "hma", - "21721": "Ġoverlap", - "21722": "ĠGitHub", - "21723": "Ġcleaner", - "21724": "ĠBaptist", - "21725": "ĠWAS", - "21726": "Ġlungs", - "21727": "Ñģ", - "21728": "ĠBUT", - "21729": "Ġcite", - "21730": "Ġpitched", - "21731": "reatment", - "21732": "Ġtrophies", - "21733": "ĠNu", - "21735": "ĠPride", - "21736": "Ġattendees", - "21737": "[]", - "21739": "Ġspatial", - "21740": "Ġprizes", - "21741": "ĠReligion", - "21742": "Ġshowcase", - "21743": "ĠCategory", - "21744": "vidia", - "21745": "Target", - "21746": "Property", - "21747": "?,", - "21748": "Ġfusion", - "21749": "pie", - "21750": "ĠUCLA", - "21751": "Ġsoundtrack", - "21752": "Ġprincess", - "21753": "ĠCaval", - "21754": "should", - "21755": "Ġlimbs", - "21756": "Background", - "21757": "Ġlonely", - "21758": "Ġcores", - "21759": "ĠTail", - "21760": "sheet", - "21761": "Ġ132", - "21762": "Ra", - "21763": "ãĤ«", - "21764": "ĠBolt", - "21765": "Ġbooked", - "21766": "Ġadminister", - "21767": "Ġequals", - "21768": "wy", - "21769": "Ġobserving", - "21770": "ĠBaron", - "21771": "ĠAdobe", - "21772": "Ġvirgin", - "21773": "ĠSocialist", - "21774": "Move", - "21775": "ghazi", - "21776": "ĠLinda", - "21778": "Ġbrewing", - "21779": "Ġmerchants", - "21780": "burse", - "21781": "Ġdivor", - "21782": "Ġmetals", - "21783": "ĠNer", - "21784": "Ġsums", - "21785": "ĠEnemy", - "21786": "Ġenvision", - "21787": "Ġgranting", - "21788": "ĠHoney", - "21789": "ĠSkyrim", - "21790": "Ġsocio", - "21791": "graded", - "21792": "Ġselective", - "21793": "WASHINGTON", - "21794": "Ġ1948", - "21795": "ĠSirius", - "21796": "ĠGross", - "21797": "activity", - "21798": "ĠIvan", - "21799": "Ġfurious", - "21800": "BSD", - "21801": "ĠPrevious", - "21802": "Ġresponsive", - "21803": "Ġcharitable", - "21804": "Ġleaning", - "21805": "ĠPew", - "21806": "Ġviolates", - "21807": "\\\\\\\\\\\\\\\\", - "21808": "ĠComing", - "21809": "wire", - "21810": "Ġpoet", - "21811": "Ġresolutions", - "21812": "command", - "21813": "ĠPortuguese", - "21814": "Ġnickname", - "21815": "Ġdeaf", - "21816": "February", - "21817": "Ġrecognise", - "21818": "Ġentirety", - "21819": "Ġseasonal", - "21820": "placed", - "21821": "ĠTelegraph", - "21822": "Ġmicrophone", - "21823": "ouring", - "21824": "Ġgrains", - "21825": "Ġgoverned", - "21826": "Ġpostp", - "21827": "ĠWaters", - "21828": "inement", - "21829": "Ġundocumented", - "21830": "ĠComcast", - "21831": "Ġfox", - "21832": "Ġassaults", - "21833": "reon", - "21834": "many", - "21835": "ĠJenkins", - "21836": "ĠAnyway", - "21837": "Ġassessments", - "21838": "Ġdowns", - "21839": "ĠMouse", - "21840": "Ġsuperb", - "21841": "kt", - "21842": "ĠDow", - "21843": "Ġtaxation", - "21845": "Ġsmiles", - "21846": "Ġundertaken", - "21847": "Ġexh", - "21848": "Ġenthusiastic", - "21849": "Ġtwent", - "21850": "Ġgovernmental", - "21851": "Ġautonomy", - "21852": "ĠTechnologies", - "21853": "ĠChain", - "21854": "Ġprevalent", - "21855": "fb", - "21856": "Ġnicotine", - "21857": "ogram", - "21858": "job", - "21859": "Ġawaiting", - "21860": "ĠMenu", - "21861": "Ġdeputies", - "21862": "kov", - "21863": "ishops", - "21864": "Button", - "21865": "ĠShanghai", - "21866": "Ġdiesel", - "21867": "ĠDuck", - "21868": "Ryan", - "21869": "ĠPCs", - "21870": "NF", - "21871": "jury", - "21872": "ente", - "21873": "Ġinaccurate", - "21874": "eddy", - "21875": "Whatever", - "21876": "Ġshowc", - "21877": "ĠNad", - "21878": "odus", - "21879": "etr", - "21880": "Ġplaintiffs", - "21881": "ĠWOR", - "21882": "ĠAssange", - "21883": "Ġprivat", - "21884": "Ġpremiums", - "21885": "Ġtam", - "21886": "URL", - "21887": "Ġelites", - "21888": "ĠRanger", - "21889": "ottenham", - "21890": "ĠHoff", - "21891": "ĠAthens", - "21892": "Ġdefinite", - "21893": "Ġsighed", - "21894": "Ġevenly", - "21896": "ĠAmber", - "21897": "akia", - "21898": "Ġmailing", - "21899": "Ġcrashing", - "21900": "ĠConfederate", - "21901": "rugged", - "21902": "Wal", - "21903": "ĠDepths", - "21904": "Ġjuvenile", - "21905": "Ġreactor", - "21906": "Introduction", - "21907": "ĠDeluxe", - "21909": "ĠSanchez", - "21910": "ĠMead", - "21911": "ivable", - "21912": ":-", - "21913": "ĠPlanning", - "21914": "ĠTrap", - "21915": "quin", - "21916": "ĠProtect", - "21917": "vered", - "21918": "Information", - "21919": "Ġkidney", - "21920": "innamon", - "21921": "las", - "21922": "Ġpolicing", - "21923": "Ġtolerate", - "21924": "ĠQi", - "21925": "Ġbiased", - "21926": "Fort", - "21927": "ĠKi", - "21928": "save", - "21929": "Ġprivileged", - "21930": "Ġbeasts", - "21931": "ĠGlas", - "21932": "ĠCinem", - "21933": "Ġcomeback", - "21934": "Sunday", - "21935": "Ġextinction", - "21936": "hops", - "21937": "Ġtransmit", - "21938": "Ġdoubles", - "21939": "ĠFlat", - "21941": "Ġdisputed", - "21942": "Ġinjustice", - "21943": "foo", - "21944": "Vict", - "21945": "roleum", - "21946": "ĠJulie", - "21947": "Context", - "21948": "ĠRarity", - "21949": "issue", - "21950": "Component", - "21951": "Ġcounseling", - "21952": "anne", - "21953": "dark", - "21954": "Ġobjections", - "21955": "uilt", - "21956": "Ġgast", - "21957": "Ġplac", - "21958": "Ġunused", - "21959": "ãĥĩ", - "21960": "ĠTrial", - "21961": "ĠJas", - "21962": "hedral", - "21963": "obb", - "21964": "Ġtemporal", - "21965": "ĠPRO", - "21966": "ĠNW", - "21967": "ĠAnniversary", - "21968": "Large", - "21969": "Ġtherm", - "21970": "Ġdavid", - "21971": "Ġsystemic", - "21972": "ĠShir", - "21973": "mut", - "21974": "ĠNept", - "21975": "address", - "21976": "Ġscanning", - "21977": "Ġunderstandable", - "21978": "Ġcanvas", - "21979": "Cat", - "21980": "ĠZoo", - "21981": "Ġangels", - "21982": "LO", - "21983": "ĠStatement", - "21984": "ĠSig", - "21985": "ovable", - "21986": "ĠAway", - "21987": "sharing", - "21988": "ocrats", - "21989": "stated", - "21990": "Ġweighing", - "21991": "Nor", - "21992": "wild", - "21993": "Bey", - "21994": "Ġastonishing", - "21995": "ĠReynolds", - "21996": "Ġopener", - "21997": "Ġtrainer", - "21998": "Ġsurgical", - "21999": "pn", - "22000": "Ġadjusting", - "22001": "wheel", - "22002": "Ġfrown", - "22003": "ervative", - "22004": "Ġsuspend", - "22005": "Within", - "22006": "tein", - "22007": "Ġobstacle", - "22008": "Ġliberties", - "22009": "ymes", - "22010": "Ġuranium", - "22011": "ansom", - "22012": "anol", - "22013": "uba", - "22014": "ĠLoss", - "22015": "Ġarous", - "22016": "ĠHenderson", - "22017": "Wow", - "22018": "spl", - "22019": "cur", - "22020": "ĠÂŃ", - "22021": "Ġtheirs", - "22022": "Damage", - "22023": "Ġdownloading", - "22024": "Ġdiscern", - "22025": "ĠSto", - "22026": "ĠFla", - "22027": "Ġhath", - "22028": "ĠAj", - "22029": "Ġunpleasant", - "22030": "European", - "22031": "expensive", - "22032": "Ġscreenshot", - "22033": "ĠUV", - "22034": "Ġallied", - "22035": "ĠPersian", - "22036": "Ġmonopoly", - "22037": "Ġatom", - "22038": "ĠRedskins", - "22039": "\"><", - "22040": "Ġcancell", - "22041": "Ġcinema", - "22043": "fair", - "22044": "ĠAlfred", - "22045": "Ġduck", - "22046": "args", - "22048": "ĠISI", - "22049": "Ġsignaling", - "22050": "inar", - "22051": "Ġlaughs", - "22052": "Ġforwards", - "22053": "Ġreckless", - "22054": "Ġlisteners", - "22055": "ativity", - "22056": "Ġvastly", - "22057": "nant", - "22058": "Less", - "22059": "ĠHunting", - "22060": "ĠScientific", - "22061": "ITED", - "22062": "Ġknight", - "22063": "ĠHTC", - "22064": "usa", - "22065": "tmp", - "22066": "Ġrude", - "22067": "ĠLegendary", - "22068": "Ġarises", - "22069": "Bad", - "22070": "ĠClaim", - "22071": "peg", - "22072": "Ġrealities", - "22073": "Think", - "22074": "Ġ°", - "22075": "Ġrode", - "22076": "Ġstrive", - "22077": "Ġanecd", - "22078": "Ġshorts", - "22079": "Ġhypothes", - "22080": "Ġcoordinated", - "22081": "ĠGandhi", - "22082": "ĠFPS", - "22083": "RED", - "22084": "Ġsusceptible", - "22085": "Ġshrink", - "22086": "ĠChart", - "22087": "Help", - "22088": "Ġion", - "22089": "deep", - "22090": "ribes", - "22091": "ĠKai", - "22092": "ĠCustomer", - "22093": "Summary", - "22094": "Ġcough", - "22095": "wife", - "22096": "Ġlend", - "22097": "Ġpositioning", - "22098": "Ġlottery", - "22099": "ĠCanyon", - "22100": "Ġfade", - "22101": "Ġbronze", - "22102": "ĠKenny", - "22103": "Ġboasts", - "22104": "ĠEnhanced", - "22105": "record", - "22106": "Ġemergence", - "22107": "Ġakin", - "22108": "ĠBert", - "22109": "itous", - "22110": "âĸij", - "22111": "Ġstip", - "22112": "Ġexchanged", - "22113": "omore", - "22114": "alsh", - "22115": "Ġreservoir", - "22116": "Ġstandpoint", - "22117": "WM", - "22118": "Ġinitiate", - "22119": "Ġdecay", - "22120": "Ġbrewery", - "22121": "Ġterribly", - "22122": "Ġmortal", - "22123": "levard", - "22124": "Ġrevis", - "22125": "NI", - "22126": "elo", - "22127": "Ġconfess", - "22128": "ĠMSNBC", - "22129": "Ġsubmissions", - "22130": "Controller", - "22131": "Ġ202", - "22132": "ĠRuth", - "22133": "});", - "22134": "ĠAzure", - "22135": "Ġ.\"", - "22137": "ĠMarketing", - "22138": "Ġlaund", - "22139": "iencies", - "22140": "Ġrenowned", - "22141": "ĠTrou", - "22142": "ĠNGO", - "22143": "blems", - "22144": "Ġterrified", - "22145": "Ġwarns", - "22146": "Ġpert", - "22147": "Ġunsure", - "22149": "alez", - "22150": "ultz", - "22151": "ĠOutside", - "22152": "Ġstyl", - "22153": "ĠUnderground", - "22154": "Ġpanc", - "22155": "Ġdictionary", - "22156": "Ġfoe", - "22157": "riminal", - "22158": "ĠNorwegian", - "22159": "Ġjailed", - "22160": "Ġmaternal", - "22161": "ée", - "22162": "ĠLucy", - "22163": "cop", - "22164": "Cho", - "22165": "Ġunsigned", - "22166": "ĠZelda", - "22167": "ĠInsider", - "22168": "ĠContinued", - "22169": "Ġ133", - "22170": "ĠNaruto", - "22171": "ĠMajority", - "22173": "ĠWo", - "22174": "ãĤĵ", - "22175": "Ġpastor", - "22176": "Ġinformal", - "22177": "н", - "22178": "anthrop", - "22179": "join", - "22180": "ãģĹ", - "22181": "itational", - "22182": "NP", - "22183": "ĠWriting", - "22184": "fn", - "22185": "ĠBever", - "22187": "Ġyelling", - "22188": "Ġdrastically", - "22189": "Ġeject", - "22190": "Ġneut", - "22191": "Ġthrive", - "22192": "ĠFrequ", - "22193": "oux", - "22194": "Ġpossesses", - "22195": "ĠSenators", - "22196": "ĠDES", - "22197": "ĠShakespeare", - "22198": "ĠFranco", - "22199": "ĠLB", - "22200": "uchi", - "22201": "Ġincarn", - "22202": "Ġfounders", - "22203": "Function", - "22204": "Ġbrightness", - "22205": "ĠBT", - "22206": "Ġwhale", - "22207": "ĠTheater", - "22208": "mass", - "22209": "ĠDoll", - "22210": "Something", - "22211": "Ġechoed", - "22212": "ĠHex", - "22213": "crit", - "22214": "afia", - "22215": "Ġgoddess", - "22216": "Ġeleven", - "22217": "ĠPreview", - "22218": "ĠAurora", - "22219": "Ġ401", - "22220": "ulsive", - "22221": "ĠLogan", - "22222": "inburgh", - "22223": "ĠCenters", - "22224": "ĠONLY", - "22225": "ĠAid", - "22226": "Ġparadox", - "22227": "Ġhurd", - "22228": "ĠLC", - "22229": "Due", - "22230": "court", - "22231": "Ġoffended", - "22232": "Ġevaluating", - "22233": "ĠMatthews", - "22234": "Ġtomb", - "22235": "Ġpayroll", - "22236": "Ġextraction", - "22237": "ĠHands", - "22238": "ifi", - "22239": "Ġsupernatural", - "22240": "ĠCOMM", - "22241": "]=", - "22242": "dogs", - "22243": "Ġ512", - "22244": "ĠMeeting", - "22245": "Richard", - "22246": "ĠMaximum", - "22247": "Ġideals", - "22248": "Things", - "22249": "mand", - "22250": "ĠRegardless", - "22251": "Ġhumili", - "22252": "buffer", - "22253": "Little", - "22254": "ĠDani", - "22255": "ĠNak", - "22256": "Ġliberation", - "22257": "ĠAbe", - "22258": "ĠOL", - "22259": "Ġstuffed", - "22260": "aca", - "22261": "inda", - "22262": "raphic", - "22263": "Ġmosqu", - "22264": "Ġcampaigning", - "22265": "Ġoccupy", - "22266": "Squ", - "22267": "rina", - "22268": "ĠWel", - "22269": "ĠVS", - "22270": "Ġphysic", - "22271": "Ġpuls", - "22272": "rint", - "22273": "oaded", - "22274": "ETF", - "22275": "ĠArchives", - "22276": "Ġvenues", - "22277": "hner", - "22278": "ĠTurbo", - "22279": "Ġlust", - "22280": "Ġappealed", - "22281": "quez", - "22282": "ilib", - "22283": "ĠTimothy", - "22284": "Ġomn", - "22285": "dro", - "22286": "Ġobsession", - "22287": "ĠSavage", - "22289": "Global", - "22290": "Jes", - "22292": "Ġsliding", - "22293": "Ġdisappro", - "22294": "ĠMagical", - "22295": "Ġvoluntarily", - "22296": "gb", - "22297": "aney", - "22298": "Ġprophet", - "22299": "ĠRein", - "22300": "ĠJulia", - "22301": "ĠWorth", - "22302": "aurus", - "22303": "Ġbounds", - "22304": "ieu", - "22305": ")))", - "22306": "Ġcrore", - "22307": "ĠCitizen", - "22308": "Sky", - "22309": "Ġcolumnist", - "22310": "Ġseekers", - "22311": "ondo", - "22312": "ISA", - "22313": "ĠLength", - "22314": "Ġnostalg", - "22315": "Ġnewcom", - "22316": "Ġdetrim", - "22317": "entric", - "22319": "ĠGE", - "22320": "Ġautop", - "22321": "Ġacademics", - "22322": "AppData", - "22323": "ĠShen", - "22324": "Ġidiot", - "22325": "ĠTransit", - "22326": "Ġteaspoon", - "22327": "Wil", - "22328": "KO", - "22329": "ĠComedy", - "22330": ">,", - "22331": "Ġpopulated", - "22332": "WD", - "22333": "Ġpigs", - "22334": "ĠOculus", - "22335": "Ġsympathetic", - "22336": "Ġmarathon", - "22338": "Ġseizure", - "22339": "sided", - "22340": "Ġdop", - "22341": "irtual", - "22342": "Land", - "22343": "ĠFloor", - "22344": "osaurs", - "22345": "...]", - "22346": "Ġlos", - "22347": "Ġsubsidiary", - "22348": "EY", - "22349": "ĠParts", - "22350": "ĠStef", - "22351": "ĠJudiciary", - "22352": "Ġ134", - "22353": "Ġmirrors", - "22354": "Ġket", - "22355": "times", - "22356": "Ġneurolog", - "22357": "Ġcav", - "22358": "ĠGuest", - "22359": "Ġtumor", - "22360": "scill", - "22361": "ĠLloyd", - "22362": "Est", - "22363": "Ġclearer", - "22364": "Ġstereotypes", - "22365": "Ġdur", - "22366": "nothing", - "22367": "Reddit", - "22368": "Ġnegotiated", - "22369": "------------------------", - "22371": "Ġflown", - "22372": "ĠSeoul", - "22373": "ĠResident", - "22374": "ĠSCH", - "22375": "Ġdisappearance", - "22376": "ĠVince", - "22377": "grown", - "22378": "Ġgrabs", - "22379": "ril", - "22380": "ĠInfinite", - "22381": "ĠTwenty", - "22382": "Ġpedestrian", - "22383": "Ġjersey", - "22384": "ĠFur", - "22385": "ĠInfinity", - "22386": "ĠElliott", - "22387": "Ġmentor", - "22388": "Ġmorally", - "22389": "Ġobey", - "22390": "secure", - "22391": "iffe", - "22392": "Ġantibiotics", - "22393": "angled", - "22394": "ĠFreeman", - "22395": "ĠIntroduction", - "22396": "Jun", - "22397": "Ġmarsh", - "22398": "icans", - "22399": "ĠEVENTS", - "22400": "ochond", - "22401": "Wall", - "22402": "iculty", - "22403": "Ġmisdemeanor", - "22404": "Ġly", - "22405": "Thomas", - "22406": "ĠResolution", - "22407": "Ġanimations", - "22408": "ĠDry", - "22409": "Ġintercourse", - "22410": "ĠNewcastle", - "22411": "ĠHog", - "22412": "ĠEquipment", - "22414": "Ġterritorial", - "22415": "Ġarchives", - "22417": "Filter", - "22418": "ĠMunich", - "22419": "Ġcommanded", - "22420": "ĠWand", - "22421": "Ġpitches", - "22422": "ĠCroat", - "22423": "Ġratios", - "22424": "ĠMits", - "22425": "Ġaccumulated", - "22426": "ĠSpecifically", - "22427": "Ġgentleman", - "22428": "acerb", - "22429": "Ġpenn", - "22430": "Ġaka", - "22431": "ĠFuk", - "22432": "Ġintervene", - "22433": "ĠRefuge", - "22434": "ĠAlzheimer", - "22435": "Ġsuccession", - "22436": "ohan", - "22437": "does", - "22438": "Lord", - "22439": "Ġseparat", - "22440": "Ġcorrespondence", - "22441": "Ġshiny", - "22442": "Prior", - "22443": "Ġsulf", - "22444": "Ġmiserable", - "22445": "Ġdedication", - "22446": "().", - "22447": "Ġspecialists", - "22448": "Ġdefects", - "22449": "ĠCult", - "22450": "ĠXia", - "22451": "Ġjeopard", - "22452": "ĠOre", - "22453": "Ability", - "22454": "Ġlear", - "22455": "Ġambitions", - "22456": "ĠBMI", - "22457": "ĠArabs", - "22458": "Ġ1942", - "22459": "Ġpreservation", - "22460": "ificate", - "22461": "Ġashamed", - "22462": "loss", - "22463": "ĠRestaur", - "22464": "Ġresemble", - "22465": "Ġenrich", - "22466": "ĠKN", - "22467": "ĠClan", - "22468": "float", - "22469": "Ġplayable", - "22470": "ITT", - "22471": "Ġharmony", - "22472": "arrison", - "22473": "ĠWeinstein", - "22474": "were", - "22475": "Ġpoisoning", - "22476": "ĠComput", - "22477": "ĠWordPress", - "22478": "major", - "22479": "ĠValve", - "22480": "Fan", - "22481": "ĠThrow", - "22482": "ĠRomans", - "22483": "ĠDepression", - "22484": "ados", - "22485": "Ġtortured", - "22486": "Ġbalancing", - "22487": "bottom", - "22488": "Ġacquiring", - "22489": "ĠMonte", - "22490": "ardi", - "22491": "Ġaura", - "22492": "Ġ##", - "22493": "ĠStanding", - "22494": "ĠAtlas", - "22495": "CF", - "22496": "Ġintrins", - "22497": "ĠBenghazi", - "22498": "Ġcamping", - "22499": "Ġtapped", - "22500": "blade", - "22501": "strous", - "22502": "ĠRabb", - "22503": "ĠWritten", - "22504": "tip", - "22505": "ĠNeigh", - "22506": "sterdam", - "22507": "ĠAllow", - "22508": "ĠHealing", - "22509": "ĠRhod", - "22510": "num", - "22511": "Ġcaffeine", - "22512": "ĠPercent", - "22513": "Ġboo", - "22514": "Ġapples", - "22516": "Ġwelcoming", - "22517": "Ġapplaud", - "22518": "Ġausterity", - "22519": "±", - "22520": "ĠReality", - "22521": "efe", - "22522": "å®", - "22523": "Ġsucks", - "22524": "Ġtabs", - "22525": "ĠPayPal", - "22526": "Ġbackpack", - "22527": "Ġgifted", - "22528": "abulary", - "22529": "ĠScout", - "22530": "irteen", - "22531": "Ġchin", - "22532": "Ġomitted", - "22533": "Ġnegatively", - "22534": "Ġaccessing", - "22535": "ĠEarn", - "22536": "Ġambulance", - "22537": "Ġheadphones", - "22538": "Ġ205", - "22539": "ĠRefresh", - "22540": "president", - "22541": "ĠKitchen", - "22542": "ĠEntered", - "22543": "ĠSnyder", - "22544": "005", - "22545": "omical", - "22546": "Ġborrowed", - "22547": "ĠNem", - "22548": "Ġaviation", - "22549": "Ġstall", - "22550": "rimination", - "22551": "Ġuniforms", - "22552": "itime", - "22553": "ĠSimmons", - "22554": "energy", - "22555": "ablished", - "22556": "yy", - "22557": "qualified", - "22558": "Ġrallies", - "22559": "ĠStuart", - "22560": "flight", - "22561": "Ġgangs", - "22562": "rag", - "22563": "Ġvault", - "22564": "lux", - "22565": "ĠCompar", - "22566": "Ġdesignation", - "22568": "ĠJos", - "22569": "dollar", - "22570": "zero", - "22571": "Ġwells", - "22573": "Ġconstituents", - "22574": "Ġheck", - "22575": "Ġcows", - "22576": "Ġcommanders", - "22577": "Ġdifferential", - "22578": "ĠCatherine", - "22580": "Ġvalve", - "22581": "Ġbrace", - "22582": "Ġperspectives", - "22583": "cert", - "22584": "fact", - "22585": "icularly", - "22586": "ĠMcN", - "22587": "planes", - "22588": "Ġintric", - "22589": "Ġpeas", - "22590": "ovan", - "22591": "Ġtossed", - "22592": "retch", - "22593": "ĠLopez", - "22594": "Ġunfamiliar", - "22595": "death", - "22596": "ĠApart", - "22597": "ĠChang", - "22598": "Ġrelieved", - "22599": "rophe", - "22600": "Ġairports", - "22601": "Ġfreak", - "22602": "util", - "22603": "Mill", - "22604": "ĠChin", - "22605": "ĠOwen", - "22606": "male", - "22607": "ĠBroken", - "22608": "ĠWinds", - "22609": "rob", - "22610": "rising", - "22611": "Ġfirefighters", - "22612": "Ġauthoritarian", - "22613": "Ġ148", - "22614": "Bitcoin", - "22615": "external", - "22616": "Ġbrowsers", - "22617": "ichever", - "22618": "orian", - "22619": "Ġunb", - "22620": "Ġpoke", - "22621": "ĠZot", - "22622": "Mid", - "22623": "ĠPopular", - "22624": "Ġcovert", - "22625": "Ġcontributes", - "22626": "Ġ650", - "22627": "Ġcontention", - "22628": "Gate", - "22629": "Ġconsoles", - "22630": "Ġchromos", - "22631": "ĠIX", - "22632": "Ġvisually", - "22633": "ĠEisen", - "22634": "Ġjewelry", - "22635": "Ġdelegation", - "22636": "Ġaccelerate", - "22637": "ĠRiley", - "22638": "Ġslope", - "22639": "Ġindoor", - "22640": "itially", - "22641": "Ġhugely", - "22642": "Ġtunnels", - "22643": "Ġfined", - "22644": "Ġdirective", - "22645": "Ġforehead", - "22646": "ustomed", - "22647": "Ġskate", - "22648": "Music", - "22649": "gas", - "22650": "Ġrecognizing", - "22651": "ambo", - "22652": "Ġoverweight", - "22653": "ĠGrade", - "22654": "ÙĬ", - "22655": "Ġsounding", - "22656": "Ġlocking", - "22657": "ĠREM", - "22658": "Store", - "22659": "Ġexcav", - "22660": "ĠLikewise", - "22661": "ĠLights", - "22662": "Ġelbow", - "22663": "ĠSupply", - "22664": "wic", - "22665": "Ġhandsome", - "22667": "Coll", - "22668": "Ġadequately", - "22669": "ĠAssociate", - "22670": "Ġstrips", - "22671": "Ġcrackdown", - "22672": "Ġmarvel", - "22673": "ĠKun", - "22674": "Ġpassages", - "22675": "@@@@", - "22676": "ĠTall", - "22677": "Ġthoughtful", - "22678": "namese", - "22679": "Ġprostitution", - "22680": "business", - "22681": "Ġballistic", - "22682": "personal", - "22683": "cig", - "22684": "izational", - "22685": "Round", - "22686": "ĠÂłĠÂłĠÂłĠÂł", - "22687": "ĠColeman", - "22688": "Ġadmitting", - "22689": "ĠPlug", - "22690": "Ġbitcoins", - "22691": "ĠSuz", - "22692": "Ġfairness", - "22693": "Ġsupplier", - "22694": "Ġcatastrophic", - "22695": "ĠHelen", - "22696": "oqu", - "22697": "Marc", - "22698": "ĠArticles", - "22699": "gie", - "22700": "Ġendangered", - "22701": "Ġdestiny", - "22702": "ĠVolt", - "22703": "olia", - "22704": "axis", - "22705": "Ġcheat", - "22706": "Ġunified", - "22707": "ICO", - "22708": "quote", - "22710": "ĠSed", - "22711": "Ġsuppression", - "22712": "Ġanalyzing", - "22713": "Ġsquat", - "22714": "Ġfiguring", - "22715": "Ġcoordinates", - "22716": "Ġchunks", - "22717": "Ġ1946", - "22718": "Ġsubp", - "22719": "Ġwiki", - "22720": "ĠForbes", - "22721": "ĠJupiter", - "22722": "ĠErik", - "22723": "imer", - "22724": "ĠCommercial", - "22725": "\\)", - "22726": "Ġlegitimacy", - "22727": "Ġdental", - "22728": "ĠMean", - "22729": "Ġdeficits", - "22731": "Originally", - "22732": "ĠHorror", - "22733": "Ġcontamination", - "22734": "llah", - "22735": "Ġconfisc", - "22736": "ĠClare", - "22737": "TB", - "22738": "ĠFailed", - "22739": "aned", - "22740": "Ġruler", - "22741": "ĠController", - "22742": "Ġfeminists", - "22743": "Fix", - "22744": "gay", - "22746": "Ġrabbit", - "22747": "Third", - "22748": "owntown", - "22749": "Ġglue", - "22750": "Ġvolatile", - "22751": "Ġshining", - "22752": "Ġfoll", - "22753": "Ġimpaired", - "22754": "Ġsupers", - "22755": "æĪ", - "22756": "Ġclutch", - "22757": "ļéĨĴ", - "22758": "Ġprolet", - "22759": "Ġ(!", - "22760": "Ġyelled", - "22761": "ĠKiev", - "22762": "ĠErn", - "22763": "ĠShock", - "22764": "KB", - "22765": "Ġsituated", - "22766": "query", - "22767": "ĠNas", - "22768": "Ġannex", - "22769": "character", - "22770": "ĠHoliday", - "22771": "Ġautomation", - "22772": "ĠJill", - "22773": "ĠRemastered", - "22774": "Ġlinem", - "22775": "Ġwilderness", - "22776": "ĠHorizon", - "22777": "ĠGuinea", - "22778": "AZ", - "22779": "Ġmainland", - "22780": "Ġsecrecy", - "22781": "LEASE", - "22782": "Ġpunk", - "22783": "ĠProvince", - "22784": "(),", - "22785": "Speed", - "22786": "Ġhanding", - "22787": "ĠSebast", - "22788": "Sir", - "22789": "rase", - "22790": "Ġjournals", - "22791": "Ġcongest", - "22792": "ĠTut", - "22793": "irrel", - "22794": "Ġschizophrenia", - "22795": "Ġmisogyn", - "22796": "healthy", - "22797": "Iron", - "22798": "Ġreacted", - "22799": "-$", - "22801": "Ġplural", - "22802": "Ġplum", - "22803": "Ġbargain", - "22804": "Ġgrounded", - "22805": "finder", - "22806": "Ġdisse", - "22807": "ĠLaz", - "22808": "OOD", - "22809": "Ġatroc", - "22810": "Factory", - "22811": "Ġminions", - "22812": "Ġori", - "22813": "ĠBrave", - "22814": "ĠPRE", - "22815": "ĠMyanmar", - "22816": "ĠHod", - "22817": "Ġexpedition", - "22818": "Ġexplode", - "22819": "ĠCoord", - "22820": "Ġextr", - "22821": "ĠBrief", - "22822": "ĠADHD", - "22823": "Ġhardcore", - "22824": "feeding", - "22825": "Ġdile", - "22826": "ĠFruit", - "22827": "Ġvaccination", - "22828": "ĠMao", - "22829": "osphere", - "22830": "Ġcontests", - "22831": "-|", - "22832": "Ġfren", - "22833": "isphere", - "22834": "Rom", - "22835": "ĠSharp", - "22836": "ĠTrend", - "22837": "Ġdisconnect", - "22838": "âĢ¢âĢ¢", - "22839": "Ġpersecution", - "22840": "Earth", - "22841": "Ġhealthier", - "22843": "Ġcob", - "22844": "ĠTrinity", - "22845": "OWS", - "22846": "ANN", - "22847": "Ġspecialty", - "22848": "Ġgru", - "22849": "Ġcooperative", - "22850": "why", - "22851": "Starting", - "22852": "ĠIssues", - "22853": "stre", - "22854": "ensor", - "22855": "Ġ185", - "22856": "Adv", - "22857": "!?", - "22858": "ĠRevel", - "22859": "emia", - "22860": "ĠHulk", - "22861": "Ġcelebrations", - "22862": "ĠSou", - "22863": "raud", - "22864": "ĠKlein", - "22865": "Ġunreal", - "22866": "context", - "22867": "Ġpartnerships", - "22868": "Ġadopting", - "22869": "tical", - "22870": "Ġsplash", - "22871": "ĠHezbollah", - "22872": "category", - "22873": "cyclop", - "22874": "xton", - "22875": "ĠDot", - "22876": "urdy", - "22877": "tz", - "22878": "Ġenvelope", - "22879": "ĠNL", - "22880": "âķ", - "22881": "Ġwherein", - "22882": "Spec", - "22884": "Ġtelev", - "22885": "aliation", - "22886": "Ġmyths", - "22887": "å°", - "22888": "Ġrigorous", - "22889": "Ġcommunicating", - "22890": "Ġobserver", - "22891": "Ġrehe", - "22892": "ĠWash", - "22893": "Ġapologized", - "22894": "ĠTin", - "22895": "Ġexpenditures", - "22896": "workers", - "22897": "document", - "22898": "Ġhesitate", - "22899": "ĠLenin", - "22900": "Ġunpredictable", - "22901": "Ġrenewal", - "22902": "cler", - "22903": "okia", - "22904": "ĠCONT", - "22905": "Ġpostseason", - "22906": "Tokens", - "22907": "Ġexacerb", - "22908": "Ġbetting", - "22909": "Ġ147", - "22910": "Ġelevation", - "22911": "Wood", - "22912": "ĠSolomon", - "22914": "004", - "22915": "output", - "22916": "Ġredund", - "22917": "ĠMumbai", - "22918": "ĠpH", - "22919": "Ġreproduce", - "22920": "ĠDuration", - "22921": "MAX", - "22922": "Ġbog", - "22923": "CBS", - "22924": "ĠBalance", - "22925": "ĠSgt", - "22926": "ĠRecent", - "22927": "Ġcd", - "22928": "Ġpopped", - "22929": "Ġincompet", - "22930": "prop", - "22931": "ayan", - "22932": "guy", - "22933": "Pacific", - "22934": "Ġtyr", - "22935": "Ġ{{", - "22936": "ĠMystic", - "22937": "ĠDana", - "22938": "Ġmasturb", - "22939": "Ġgeometry", - "22940": "â", - "22941": "ĠCorrect", - "22942": "Ġtrajectory", - "22943": "Ġdistracted", - "22944": "Ġfoo", - "22945": "ĠWelsh", - "22946": "Luc", - "22947": "mith", - "22948": "Ġrugby", - "22949": "Ġrespiratory", - "22950": "Ġtriangle", - "22951": "Ġ215", - "22952": "Ġundergraduate", - "22953": "ĠSuperior", - "22954": "changing", - "22955": "_-", - "22956": "Ġrightly", - "22957": "Ġreferee", - "22958": "Ġlucrative", - "22959": "Ġunauthorized", - "22960": "Ġresembles", - "22961": "ĠGNU", - "22962": "ĠDerby", - "22963": "Ġpathways", - "22964": "ĠLed", - "22965": "Ġendurance", - "22966": "Ġstint", - "22967": "Ġcollector", - "22968": "Fast", - "22969": "Ġdots", - "22970": "Ġnationals", - "22971": "ĠSecurities", - "22972": "Ġwhip", - "22973": "Param", - "22974": "Ġlearns", - "22975": "Magic", - "22976": "Ġdetailing", - "22977": "moon", - "22978": "Ġbroadcasting", - "22979": "Ġbaked", - "22981": "holm", - "22982": "ĠSah", - "22983": "ĠHussein", - "22984": "ĠCourtesy", - "22986": "Ġ146", - "22987": "Ġgeographic", - "22988": "peace", - "22989": "Ġjudging", - "22990": "ĠStern", - "22991": "Bur", - "22992": "Ġstoryline", - "22993": "Gun", - "22994": "ĠStick", - "22997": "ãĤ´ãĥ³", - "22998": "ĠAdministrator", - "22999": "Ġburnt", - "23000": "Ġpave", - "23001": "choes", - "23002": "Exec", - "23003": "Ġcampuses", - "23004": "Result", - "23005": "Ġmutations", - "23006": "ĠCharter", - "23007": "Ġcaptures", - "23008": "Ġcompares", - "23009": "Ġbadge", - "23010": "Scient", - "23011": "Ġerad", - "23012": "iery", - "23013": "oi", - "23014": "ettes", - "23015": "ĠEstate", - "23016": "Ġstrap", - "23017": "Ġproudly", - "23018": "Ġfried", - "23019": "Ġwithdrawn", - "23020": "ĠVoy", - "23021": "phony", - "23022": "Items", - "23023": "ĠPierce", - "23024": "bard", - "23025": "Ġannotation", - "23026": "anton", - "23027": "illon", - "23028": "Impro", - "23029": "...)", - "23030": "Ġhappier", - "23031": "------", - "23032": "adjust", - "23033": "Ġstaffers", - "23034": "Ġactivism", - "23035": "Ġperf", - "23036": "Ġalright", - "23037": "Need", - "23038": "Ġcommence", - "23039": "Ġopioid", - "23040": "ĠAmanda", - "23041": "Es", - "23042": "ĠPars", - "23043": "ĠKaw", - "23044": "Works", - "23046": "Ġindo", - "23047": "tc", - "23048": "endant", - "23049": "ĠMoto", - "23050": "Ġlegalization", - "23051": "OTE", - "23052": "Ġtasked", - "23053": "Ġtsp", - "23054": "ĠACTIONS", - "23056": "Ġrefreshing", - "23057": "ĠNR", - "23058": "ĠPerez", - "23059": "Ġinfringement", - "23060": "SY", - "23061": "Listen", - "23062": "inning", - "23063": "ku", - "23064": "Ġrotate", - "23065": "program", - "23066": "arah", - "23067": "Design", - "23068": "Ġ(£", - "23069": "Ġstoring", - "23070": "Ġwarrants", - "23071": "Ġjudgement", - "23072": "ĠBrist", - "23073": "usually", - "23074": "photo", - "23075": "ĠRan", - "23076": "ĠPine", - "23077": "Ġoutrageous", - "23078": "ĠValentine", - "23079": "luence", - "23080": "ĠEverybody", - "23081": "Altern", - "23082": "Ġrelevance", - "23083": "Ġterminated", - "23084": "Ġdessert", - "23085": "Ġfulfilled", - "23086": "Ġprosecuted", - "23087": "ĠWords", - "23088": "Ġmigrant", - "23089": "Ġcultivation", - "23090": "ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ", - "23091": "idelity", - "23092": "ĠVern", - "23093": "ĠLogin", - "23094": "Ġmetaphor", - "23095": "ĠTip", - "23096": "Ġrecruits", - "23097": "ĠPig", - "23098": "ribing", - "23099": "Ġenthusiasts", - "23100": "exper", - "23101": "Ġfrightening", - "23102": "ĠHair", - "23103": "anson", - "23104": "strate", - "23105": "Ġhi", - "23106": "Height", - "23107": "Ġowning", - "23108": "none", - "23109": "Ġdislike", - "23110": "Ġknives", - "23111": "pherd", - "23112": "Ġloudly", - "23113": "ĠAPIs", - "23114": "Display", - "23115": "ĠLac", - "23116": "ĠUSS", - "23117": "abl", - "23118": "verages", - "23119": "Jew", - "23120": "Ġ172", - "23121": "ĠHistorical", - "23122": "atoon", - "23123": "ĠPhysics", - "23124": "intern", - "23125": "Ġwarmth", - "23126": "Ġtopp", - "23127": "DM", - "23128": "Ġgunman", - "23129": "Ġemperor", - "23130": "odi", - "23131": "ãĥ£", - "23132": "inatory", - "23133": "ĠRib", - "23134": "Ġ131", - "23135": "ĠSaturn", - "23136": "ĠShining", - "23137": "Ġwaking", - "23138": "Quotes", - "23139": "Ġcomedian", - "23140": "enberg", - "23141": "½", - "23142": "Ġbelievers", - "23143": "Ġpaperwork", - "23144": "custom", - "23145": "Ġlev", - "23146": "Ġlament", - "23147": "Ġpouring", - "23149": "political", - "23150": "ĠSupplement", - "23151": "maid", - "23152": "Ġcruelty", - "23153": "Ġtread", - "23154": "ysics", - "23155": "Aw", - "23156": "rites", - "23157": "Ġmodifier", - "23158": "ĠPosition", - "23159": "Adam", - "23160": "lb", - "23161": "ubs", - "23162": "Ġimperfect", - "23163": "Ġclusters", - "23164": "ĠEngineer", - "23165": "ĠCherry", - "23166": "Ġinauguration", - "23167": "ĠSau", - "23168": "Ġembodiment", - "23169": "ĠUncle", - "23170": "Ġoverr", - "23171": "Ġexplosions", - "23172": "cule", - "23173": "ĠPrinceton", - "23174": "ĠAndrea", - "23175": "Ġincorrectly", - "23176": "Ġearnest", - "23177": "Ġpilgr", - "23178": "ĠSprint", - "23179": "Ġsleeve", - "23180": "Ġhears", - "23181": "ĠAmazing", - "23182": "Ġbrowsing", - "23183": "agin", - "23184": "Ġhomeland", - "23185": "Ġhaw", - "23186": "Ġdiving", - "23187": "istered", - "23189": "Ġbargaining", - "23190": "ĠArcade", - "23191": "Ġdelegate", - "23192": "terson", - "23193": "................................................................", - "23194": "ĠJacksonville", - "23196": "Ġstagn", - "23197": "Ġadam", - "23198": "ĠSherman", - "23199": "CB", - "23200": "Ġsuburb", - "23201": "ĠFoods", - "23202": "Ġconverting", - "23203": "ĠArist", - "23204": "Ġchambers", - "23205": "love", - "23206": "Ġamino", - "23207": "ĠGan", - "23208": "Ġmadness", - "23209": "mc", - "23210": "ĠUSE", - "23211": "defined", - "23212": "Ġultr", - "23213": "indust", - "23214": "Ġwolves", - "23215": "lance", - "23216": "Additionally", - "23217": "Ġcracks", - "23218": "asia", - "23219": "ĠReason", - "23220": "ĠPump", - "23221": "Ġaccidental", - "23222": "ĠLaser", - "23223": "ĠRid", - "23224": "Ġinitialized", - "23225": "elli", - "23226": "Ġunnamed", - "23227": "Ġnoun", - "23228": "ĠPassed", - "23229": "Ġhostage", - "23230": "ĠEthiop", - "23231": "shirts", - "23232": "Ġunrel", - "23233": "ĠEmbassy", - "23234": "Ġ1941", - "23235": "Ġatoms", - "23236": "Ġpurported", - "23238": "ĠFi", - "23239": "Ġgallons", - "23240": "ĠMonica", - "23241": "Ġpg", - "23242": "enment", - "23243": "Ġsorted", - "23244": "ĠGospel", - "23245": "Ġheights", - "23246": "Ġtraced", - "23247": "Ġundergoing", - "23248": "Shell", - "23249": "Ġsacks", - "23250": "Ġproportions", - "23251": "Ġhalluc", - "23252": "Font", - "23253": "acet", - "23254": "Ġwarmer", - "23255": "ĠINTER", - "23256": "Ġgrabbing", - "23257": "Plug", - "23258": "Ġrealization", - "23259": "ĠBurke", - "23260": "Ġenchant", - "23261": "ATER", - "23262": "ĠSeed", - "23263": "Ġabundant", - "23264": "FM", - "23265": "Ġcivic", - "23266": "Vs", - "23267": "isi", - "23268": "Ġvow", - "23269": "Ġreper", - "23270": "ĠPartnership", - "23271": "Ġpenetration", - "23272": "Ġaxe", - "23273": "Ġshattered", - "23274": "ĠZombies", - "23275": "Ġvinyl", - "23276": "ĠAlert", - "23277": "eon", - "23278": "Ġobliged", - "23279": "ĠIllust", - "23280": "ĠPlaza", - "23281": "ĠFrontier", - "23282": "Ġdavidjl", - "23283": "ĠSerial", - "23284": "ĠHav", - "23285": "ĠNutrition", - "23286": "Bi", - "23287": "ĠâĸĪ", - "23288": "ĠJays", - "23289": "linux", - "23290": "Ġhurry", - "23291": "Ġvoy", - "23292": "Ġhopeless", - "23293": "ĠStealth", - "23294": "Ġãģ", - "23295": "essors", - "23296": "ttle", - "23297": "borg", - "23298": "ĠSafari", - "23299": "fell", - "23300": "Ġwary", - "23301": "due", - "23302": "ĠAbove", - "23303": "Ha", - "23304": "ELL", - "23305": "Ġnotor", - "23306": "ĠWon", - "23307": "Too", - "23308": "Ġoccupations", - "23309": "Ġpossessions", - "23310": "Ġinviting", - "23311": "Ġpredators", - "23312": "Ġaccelerated", - "23313": "Ġ157", - "23314": "uterte", - "23315": "ĠCube", - "23316": "east", - "23317": "account", - "23318": "Give", - "23319": "Ġtransplant", - "23320": "redients", - "23321": "idable", - "23322": "Ġscreenshots", - "23323": "ĠGund", - "23324": "ĠFS", - "23325": "Ġtravelers", - "23326": "Ġsensory", - "23327": "ĠFiat", - "23328": "ĠRockets", - "23329": "İĭ", - "23330": "_{", - "23331": "Friend", - "23332": "Ġcharming", - "23333": "ALS", - "23334": "Ġenjoyment", - "23335": "mph", - "23336": "Ġ5000", - "23337": "ĠREG", - "23338": "ÙĨ", - "23339": "bia", - "23340": "Ġcompilation", - "23341": "rost", - "23342": "ĠVP", - "23343": "ĠSchne", - "23345": "Ġcopying", - "23346": "MORE", - "23347": "ĠFlore", - "23348": "falls", - "23350": "total", - "23351": "Ġdisciples", - "23352": "double", - "23353": "Ġexceeding", - "23354": "Ġsmashed", - "23355": "Ġconceptual", - "23356": "ĠRomania", - "23357": "ĠBrent", - "23358": "ĠICE", - "23359": "ĠTou", - "23360": "Ġgrap", - "23361": "Ġnails", - "23363": "ãĥĺ", - "23364": "Ġprocure", - "23365": "eur", - "23366": "Ġconfirming", - "23367": "ĠCec", - "23368": "awi", - "23369": "ĠEden", - "23370": "Ġng", - "23371": "Ġengineered", - "23372": "atics", - "23373": "Ġhooked", - "23374": "Ġdisgusting", - "23375": "ĠMurder", - "23376": "ãĤ¿", - "23377": "Library", - "23378": "Ġ168", - "23379": "Almost", - "23380": "hematic", - "23381": "Menu", - "23382": "ĠNotre", - "23383": "ĠJur", - "23384": "Ġkidnapped", - "23385": "Ġhacker", - "23386": "ĠJade", - "23387": "Ġcreepy", - "23388": "Ġdrawings", - "23389": "ĠSponsor", - "23390": "Ġcyclists", - "23391": "ĠGoblin", - "23392": "Ġoptimized", - "23393": "Ġstaged", - "23394": "ĠMcD", - "23395": "between", - "23396": "Age", - "23397": "eno", - "23398": "Sex", - "23399": "ĠWide", - "23400": "nings", - "23401": "avis", - "23402": "Ġincapable", - "23403": "ĠKob", - "23404": "Ġrewarding", - "23405": "ĠLone", - "23406": "olescent", - "23407": "Ġcontracted", - "23408": "Ġsticky", - "23409": "Jose", - "23410": "Ball", - "23411": "fest", - "23412": "ĠInput", - "23413": "ĠRecently", - "23414": "Ġtomat", - "23415": "square", - "23416": "Application", - "23417": "Ġnitrogen", - "23418": "Ġduplicate", - "23419": "ĠRecon", - "23420": "ĠDear", - "23421": "London", - "23422": "Ġintra", - "23423": "Ġdock", - "23424": "Ġoutreach", - "23425": "ĠMillion", - "23426": "Ġmammals", - "23427": "ampton", - "23428": "VAL", - "23429": "Ġsnaps", - "23430": "Ġdos", - "23431": "ĠWhole", - "23432": "ĠReady", - "23433": "Try", - "23434": "ĠWinnipeg", - "23435": "earance", - "23436": "Ġincurred", - "23437": "renched", - "23438": "ĠNSW", - "23439": "ilot", - "23440": "raine", - "23441": "Ġcube", - "23442": "got", - "23443": "Ġrunway", - "23444": "etermined", - "23445": "ĠHawks", - "23446": "Ġsurvivor", - "23447": "ĠWish", - "23448": "ĠDin", - "23449": "ĠDEF", - "23450": "ĠVault", - "23452": "Ġmushrooms", - "23453": "Ġcrisp", - "23454": "bey", - "23455": "ĠDiscovery", - "23456": "Ġdevelopmental", - "23457": "Ġparadigm", - "23458": "Ġchaotic", - "23459": "ĠTsu", - "23460": "Ġ333", - "23461": "bons", - "23462": "Ġbacterial", - "23463": "Ġcommits", - "23464": "Ġcosmic", - "23465": "Ġmega", - "23466": "ocative", - "23467": "ĠPaint", - "23468": "ophobic", - "23469": "Ġvain", - "23470": "Ġcarved", - "23471": "ĠThief", - "23472": "ĠGul", - "23473": "owship", - "23474": "Ġcites", - "23475": "ĠEdinburgh", - "23476": "Ġdiminished", - "23477": "Ġacknowledges", - "23478": "ĠKills", - "23479": "Ġmicrow", - "23480": "ĠHera", - "23481": "Ġseniors", - "23482": "Ġwhereby", - "23483": "Hop", - "23484": "atron", - "23485": "Ġunavailable", - "23486": "ĠNate", - "23487": "Ġ480", - "23488": "Ġslated", - "23489": "ĠRebecca", - "23490": "ĠBattery", - "23491": "Ġgrammar", - "23492": "Ġheadset", - "23493": "Ġcursor", - "23494": "Ġexcluding", - "23495": "anye", - "23496": "aundering", - "23497": "ebin", - "23498": "Ġfeasible", - "23499": "ĠPublishing", - "23500": "ĠLabs", - "23501": "ĠCliff", - "23502": "ĠFerrari", - "23503": "Ġpac", - "23504": "visible", - "23505": "marked", - "23506": "pell", - "23507": "Ġpolite", - "23508": "Ġstaggering", - "23509": "ĠGalactic", - "23510": "Ġsuperst", - "23511": "Ġparan", - "23512": "ĠOfficers", - "23513": "ãĢģ", - "23514": "Ġspecifics", - "23515": "ulus", - "23517": "ĠPaste", - "23518": "AMP", - "23519": "ĠPanama", - "23520": "ĠDelete", - "23521": "anguard", - "23522": "restrial", - "23523": "Ġheroic", - "23524": "ĠDy", - "23525": "اÙĦ", - "23526": "Ġincumbent", - "23527": "Ġcrunch", - "23528": "tro", - "23529": "Ġscoop", - "23530": "Ġblogger", - "23531": "Ġsellers", - "23532": "uren", - "23533": "Ġmedicines", - "23534": "ĠCaps", - "23535": "ĠAnimation", - "23536": "oxy", - "23537": "Ġoutward", - "23538": "Ġinquiries", - "23540": "Ġpsychologist", - "23541": "ĠSask", - "23542": "evil", - "23543": "Ġcontaminated", - "23544": "ãĤ¨", - "23545": "herence", - "23546": "Ġbranded", - "23547": "ĠAbdul", - "23548": "zh", - "23549": "Ġparagraphs", - "23550": "Ġmins", - "23551": "Ġcorrelated", - "23552": "erb", - "23553": "Ġimpart", - "23554": "Ġmilestone", - "23555": "ĠSolutions", - "23556": "otle", - "23557": "Ġundercover", - "23558": "Ġmarched", - "23559": "ĠChargers", - "23560": "fax", - "23561": "ĠSecrets", - "23562": "Ġruth", - "23563": "weather", - "23564": "Ġfeminine", - "23565": "Ġsham", - "23566": "Ġprestigious", - "23567": "iggins", - "23568": "Ġsung", - "23569": "history", - "23570": "ettle", - "23571": "ggie", - "23572": "Ġoutdated", - "23573": "oland", - "23574": "Ġperceptions", - "23575": "ĠSession", - "23576": "ĠDodgers", - "23577": "uj", - "23578": "ĠEND", - "23579": "Doc", - "23580": "Ġdeficiency", - "23581": "Grand", - "23582": "ĠJoker", - "23583": "Ġretrospect", - "23584": "Ġdiagnostic", - "23585": "Ġharmless", - "23586": "Ġrogue", - "23587": "ĠAval", - "23588": "Equ", - "23589": "Ġtransc", - "23590": "ĠRobertson", - "23591": "ĠDepending", - "23592": "ĠBurns", - "23593": "ivo", - "23594": "Ġhostility", - "23595": "Features", - "23596": "ĵĺ", - "23597": "Ġdiscomfort", - "23598": "ĠLCD", - "23599": "specified", - "23600": "ĠExpect", - "23602": "Ġimperative", - "23603": "ĠRegular", - "23604": "Chinese", - "23605": "Ġstatewide", - "23606": "Ġsymm", - "23607": "Ġloops", - "23608": "Ġautumn", - "23609": "Nick", - "23610": "Ġshaping", - "23611": "Ġquot", - "23612": "Ġcherry", - "23613": "ĠCrossref", - "23614": "è¦ļéĨĴ", - "23615": "Standard", - "23616": "heed", - "23617": "ĠDell", - "23618": "ĠVietnamese", - "23619": "Ġost", - "23620": "ĠValkyrie", - "23621": "OA", - "23622": "Assad", - "23623": "Ġrebound", - "23624": "ĠTraffic", - "23625": "places", - "23626": "æĺ", - "23627": "ĠBuc", - "23629": "Ġshelters", - "23630": "Ġinsisting", - "23631": "ĠCertainly", - "23632": "ĠKenneth", - "23633": "ĠTCP", - "23634": "Ġpenal", - "23635": "ĠReplay", - "23636": "heard", - "23637": "Ġdialect", - "23638": "iza", - "23639": "ĠFY", - "23640": "itcher", - "23641": "ĠDL", - "23642": "Ġspiral", - "23643": "Ġquarterbacks", - "23644": "Ġhull", - "23645": "Ġgoogle", - "23646": "Ġtodd", - "23647": "ĠSterling", - "23648": "ĠPlate", - "23649": "Ġspying", - "23650": "mbol", - "23651": "ĠRealm", - "23652": "ĠProced", - "23653": "ĠCrash", - "23654": "Ġterminate", - "23655": "Ġprotesting", - "23656": "Center", - "23657": "guided", - "23658": "Ġuncover", - "23659": "Ġboycott", - "23660": "Ġrealizes", - "23661": "sound", - "23662": "Ġpretending", - "23663": "ĠVas", - "23665": "Ġframed", - "23666": "Ġ139", - "23667": "Ġdescended", - "23668": "Ġrehabilitation", - "23669": "Ġborrowing", - "23670": "ĠBuch", - "23671": "Ġblur", - "23672": "Ron", - "23673": "ĠFrozen", - "23674": "enza", - "23675": "Chief", - "23676": "ĠPoor", - "23677": "Ġtranslates", - "23678": "MIN", - "23679": "Ġ212", - "23680": "JECT", - "23681": "Ġerupted", - "23682": "Ġsuccesses", - "23683": "SEC", - "23684": "Ġplague", - "23685": "Ġgems", - "23686": "doms", - "23687": "Ġstretches", - "23688": "ĠSpy", - "23689": "Ġstorytelling", - "23690": "Credit", - "23691": "ĠPush", - "23692": "Ġtraction", - "23693": "Ġineffective", - "23694": "ĠLuna", - "23695": "Ġtapes", - "23696": "Ġanalytics", - "23697": "ercise", - "23698": "Ġprogrammes", - "23699": "ĠCarbon", - "23700": "Ġbehold", - "23701": "heavy", - "23702": "ĠConservation", - "23703": "ĠFIR", - "23704": "Ġsack", - "23705": "termin", - "23706": "ricks", - "23707": "Ġhoused", - "23708": "Ġunusually", - "23709": "Ice", - "23710": "Ġexecuting", - "23711": "ĠMoroc", - "23712": "eday", - "23713": "Ġeditions", - "23714": "Ġsmarter", - "23715": "ĠBA", - "23716": "Ġoutlaw", - "23717": "Ġvanished", - "23718": "iba", - "23719": "ALSE", - "23720": "ĠSilva", - "23722": "Could", - "23723": "Ġphilosopher", - "23724": "Ġevacuated", - "23725": "Secret", - "23727": "Ġvisas", - "23728": "ãĤ¬", - "23729": "ĠMalt", - "23730": "ĠClearly", - "23731": "ĠNiger", - "23732": "ĠCairo", - "23733": "ĠFist", - "23735": "ĠXML", - "23736": "auto", - "23737": "itant", - "23738": "Ġreinforced", - "23739": "Record", - "23740": "ĠSurvivor", - "23741": "GHz", - "23742": "Ġscrews", - "23743": "parents", - "23744": "Ġoceans", - "23745": "mares", - "23746": "Ġbrakes", - "23747": "vasive", - "23748": "Ġhello", - "23749": "ĠSIM", - "23750": "rimp", - "23751": "Ġore", - "23752": "ĠArmour", - "23754": "Ġterrific", - "23755": "Ġtones", - "23757": "ĠMinutes", - "23758": "Episode", - "23759": "Ġcurves", - "23760": "Ġinflammatory", - "23761": "Ġbatting", - "23762": "ĠBeautiful", - "23763": "Lay", - "23764": "Ġunpop", - "23765": "vable", - "23766": "Ġriots", - "23767": "ĠTactics", - "23768": "baugh", - "23769": "ĠCock", - "23770": "Ġorgasm", - "23771": "ĠSas", - "23772": "Ġconstructor", - "23773": "etz", - "23774": "Gov", - "23775": "Ġantagon", - "23776": "Ġtheat", - "23777": "Ġdeeds", - "23778": "hao", - "23779": "cuts", - "23780": "ĠMcCl", - "23781": "Ġum", - "23782": "ĠScientists", - "23783": "Ġgrassroots", - "23784": "yssey", - "23785": "\"]=>", - "23786": "Ġsurfaced", - "23787": "Ġshades", - "23788": "Ġneighbours", - "23789": "Ġadvertis", - "23790": "oya", - "23791": "Ġmerged", - "23792": "Upon", - "23793": "Ġgad", - "23794": "Ġanticipate", - "23795": "Anyway", - "23796": "Ġslogan", - "23797": "Ġdisrespect", - "23798": "Iran", - "23799": "ĠTB", - "23800": "acted", - "23801": "Ġsubpoen", - "23802": "mediately", - "23803": "OOOO", - "23804": "Ġwaiver", - "23805": "Ġvulnerabilities", - "23806": "ottesville", - "23807": "ĠHuffington", - "23808": "Josh", - "23809": "ĠDH", - "23810": "Monday", - "23811": "ĠEllen", - "23812": "Know", - "23813": "xon", - "23814": "items", - "23816": "Ġfills", - "23817": "ĠNike", - "23818": "Ġcumulative", - "23819": "andals", - "23820": "Ir", - "23821": "Ġì", - "23822": "Ġfriction", - "23823": "igator", - "23824": "Ġscans", - "23825": "ĠVienna", - "23826": "ldom", - "23827": "Ġperformers", - "23828": "Prim", - "23829": "Ġbidding", - "23830": "Mur", - "23831": "Ġleaned", - "23832": "ĠPrix", - "23833": "alks", - "23834": "Ġ[â̦]", - "23835": "ĠTwitch", - "23836": "ĠDeveloper", - "23837": "ĠGir", - "23838": "Ġcallback", - "23839": "Abstract", - "23840": "Ġaccustomed", - "23841": "Ġfreedoms", - "23842": "ĠPG", - "23843": "uracy", - "23844": "Ġlump", - "23845": "isman", - "23846": ",,,,", - "23848": "ĠRED", - "23849": "Ġworm", - "23850": "Match", - "23851": "ĠPlatinum", - "23852": "IJ", - "23853": "ĠOwner", - "23854": "Trivia", - "23855": "compl", - "23856": "Ġnewborn", - "23857": "Ġfantas", - "23858": "Own", - "23859": "Ġ1959", - "23860": "Ġsympath", - "23861": "Ġubiqu", - "23862": "Ġoutputs", - "23863": "Ġallev", - "23864": "Ġprag", - "23865": "Kevin", - "23866": "Ġfavors", - "23867": "Ġburial", - "23868": "Ġnurt", - "23869": "solete", - "23870": "cache", - "23871": "Ġ156", - "23872": "Ġunlocks", - "23873": "techn", - "23874": "Making", - "23875": "Ġconquer", - "23876": "adic", - "23877": "æĸ", - "23878": "Ġelf", - "23879": "Ġelectorate", - "23880": "ĠKurds", - "23881": "ĠStack", - "23882": "ĠSamurai", - "23883": "Ġâĺħ", - "23884": "Ġ{}", - "23885": "ĠSaid", - "23886": "ĠFallout", - "23887": "Ġkindness", - "23888": "ĠCustoms", - "23889": "ĠBoulevard", - "23890": "Ġhelicopters", - "23891": "otics", - "23892": "ĠVeget", - "23893": "comment", - "23894": "Ġcriticised", - "23895": "Ġpolished", - "23896": "ĠRemix", - "23897": "ĠCultural", - "23898": "Ġrecons", - "23899": "Ġdoi", - "23900": "atem", - "23901": "Screen", - "23902": "Ġbarred", - "23903": "Comments", - "23904": "ĠGenerally", - "23905": "Ġslap", - "23907": "Vari", - "23908": "pine", - "23909": "Ġempt", - "23910": "Ġhats", - "23911": "ĠPlaying", - "23912": "lab", - "23913": "average", - "23914": "forms", - "23915": "ĠCotton", - "23916": "Ġcans", - "23917": "ĠDON", - "23918": "ĠSomalia", - "23919": "Crypt", - "23920": "ĠIncreases", - "23921": "Ever", - "23922": "modern", - "23923": "Ġsurgeon", - "23925": "Ġrandomized", - "23926": "================================================================", - "23927": "Bern", - "23928": "impl", - "23929": "ĠCOR", - "23930": "Ġproclaim", - "23931": "thouse", - "23932": "Ġtoes", - "23933": "Ġample", - "23934": "Ġpreserving", - "23935": "Ġdisbel", - "23936": "grand", - "23937": "Besides", - "23938": "Ġsilk", - "23939": "ĠPattern", - "23940": "hm", - "23941": "Ġenterprises", - "23942": "Ġaffidavit", - "23943": "ĠAdvisory", - "23944": "Ġadvertised", - "23945": "ĠReligious", - "23946": "sections", - "23947": "psych", - "23948": "ĠFields", - "23949": "aways", - "23950": "Ġhashtag", - "23951": "ĠNightmare", - "23952": "Ġvampire", - "23953": "Ġforensic", - "23954": "rossover", - "23955": "nar", - "23956": "Ġnavy", - "23957": "Ġvacant", - "23958": "ĠDuel", - "23959": "Ġhallway", - "23960": "Ġfacebook", - "23961": "identally", - "23962": "ĠNRA", - "23963": "Ġmatt", - "23964": "Ġhurricane", - "23965": "ĠKirby", - "23966": "ĠPuzzle", - "23967": "Ġskirt", - "23968": "oust", - "23969": "dullah", - "23970": "Ġanalogy", - "23971": "inion", - "23972": "Ġtomatoes", - "23973": "ĠNV", - "23974": "ĠPeak", - "23975": "ĠMeyer", - "23976": "Ġappointments", - "23977": "Ġmasc", - "23978": "Ġalley", - "23979": "rehend", - "23980": "Ġcharities", - "23981": "Ġundo", - "23982": "Ġdestinations", - "23983": "ĠTesting", - "23984": "\">\"", - "24619": "cats", - "24620": "*.", - "24621": "Ġgestures", - "24622": "general", - "24623": "League", - "24624": "Ġpackets", - "24625": "ĠInspector", - "24626": "ĠBerg", - "24627": "Ġfraudulent", - "24628": "Ġcriticize", - "24629": "Fun", - "24630": "Ġblaming", - "24631": "ndra", - "24632": "Ġslash", - "24633": "ĠEston", - "24634": "Ġproposing", - "24635": "Ġwhales", - "24636": "Ġtherapist", - "24637": "Ġsubset", - "24638": "Ġleisure", - "24639": "ELD", - "24640": "ĠCVE", - "24641": "ĠActivity", - "24642": "Ġculmin", - "24643": "shop", - "24644": "ĠDAY", - "24645": "ischer", - "24646": "ĠAdmiral", - "24647": "ĠAttacks", - "24648": "Ġ1958", - "24649": "Ġmemoir", - "24650": "Ġfolded", - "24651": "Ġsexist", - "24652": "Ġ153", - "24653": "ĠLI", - "24654": "Ġreadings", - "24655": "Ġembarrassment", - "24656": "ĠEmployment", - "24657": "wart", - "24658": "chin", - "24659": "Ġcontinuation", - "24660": "lia", - "24661": "Recently", - "24662": "Ġduel", - "24663": "Ġevacuation", - "24664": "ĠKashmir", - "24665": "Ġdisposition", - "24666": "ĠRig", - "24667": "Ġbolts", - "24668": "Ġinsurers", - "24670": "Mex", - "24671": "Ġretaliation", - "24672": "Ġmisery", - "24673": "Ġunreasonable", - "24674": "raining", - "24675": "Imm", - "24676": "ĠPU", - "24677": "emer", - "24678": "Ġgenital", - "24679": "ãĤ³", - "24680": "ĠCandy", - "24681": "Ġonions", - "24682": "ĠPatt", - "24683": "liner", - "24684": "Ġconceded", - "24685": "Ġfa", - "24686": "Ġforc", - "24687": "ĠHernandez", - "24688": "ĠGeoff", - "24689": "debian", - "24690": "ĠTeams", - "24691": "Ġcries", - "24692": "Ġhomeowners", - "24694": "ABC", - "24695": "Ġstitch", - "24696": "Ġstatistic", - "24697": "Ġheaders", - "24698": "ĠBiology", - "24699": "Ġmotors", - "24700": "ĠGEN", - "24701": "ĠLip", - "24702": "Ġhates", - "24703": "Ġheel", - "24704": "Self", - "24705": "ipl", - "24706": "EDIT", - "24707": "orting", - "24708": "Ġannot", - "24709": "ĠSpeech", - "24710": "oldemort", - "24711": "ĠJavascript", - "24712": "ĠLeBron", - "24713": "Ġfootprint", - "24714": "Ġfn", - "24715": "Ġseizures", - "24716": "nas", - "24717": "hide", - "24718": "Ġ1954", - "24719": "ĠBee", - "24720": "ĠDeclaration", - "24721": "ĠKatie", - "24722": "Ġreservations", - "24723": "NR", - "24724": "female", - "24725": "Ġsaturated", - "24726": "Ġbiblical", - "24727": "Ġtrolls", - "24728": "Device", - "24729": "photos", - "24730": "Ġdrums", - "24731": "ãĥīãĥ©ãĤ´ãĥ³", - "24732": "Night", - "24733": "fighter", - "24734": "ĠHak", - "24735": "riber", - "24736": "Ġcush", - "24737": "Ġdisciplinary", - "24738": "baum", - "24739": "ĠGH", - "24740": "ĠSchmidt", - "24741": "ilibrium", - "24742": "Ġsixty", - "24743": "ĠKushner", - "24744": "rots", - "24745": "Ġpund", - "24746": "ĠRac", - "24747": "Ġsprings", - "24748": "Ġconve", - "24749": "Business", - "24750": "Fall", - "24751": "Ġqualifications", - "24752": "Ġverses", - "24753": "Ġnarciss", - "24754": "ĠKoh", - "24755": "ĠWow", - "24756": "ĠCharlottesville", - "24757": "edo", - "24758": "Ġinterrogation", - "24759": "ĠWool", - "24761": "Brian", - "24762": "Ġâľĵ", - "24763": "Ġalleges", - "24764": "onds", - "24765": "idation", - "24766": "ĠJackie", - "24767": "yu", - "24768": "Ġlakes", - "24769": "Ġworthwhile", - "24770": "Ġcrystals", - "24771": "ĠJuda", - "24772": "Ġcomprehend", - "24773": "Ġflush", - "24774": "Ġabsorption", - "24775": "ĠOC", - "24776": "Ġfrightened", - "24777": "ĠChocolate", - "24778": "Martin", - "24779": "Ġbuys", - "24780": "Ġbucks", - "24781": "Ġappell", - "24782": "ĠChampionships", - "24783": "Ġlistener", - "24784": "ĠDefensive", - "24785": "Ġcz", - "24786": "uds", - "24787": "ĠMate", - "24788": "Ġreplay", - "24789": "Ġdecorated", - "24790": "Ġsunk", - "24791": "ĠVIP", - "24792": "ĠAnk", - "24793": "Ġ195", - "24794": "aaaa", - "24795": "Nobody", - "24796": "ĠMilk", - "24797": "ĠGur", - "24798": "ĠMk", - "24799": "ĠSara", - "24800": "Ġseating", - "24801": "ĠWid", - "24802": "Track", - "24803": "Ġemploys", - "24804": "Ġgigantic", - "24805": "APP", - "24806": "ãĤ§", - "24807": "inventory", - "24808": "Ġtowel", - "24809": "atche", - "24810": "lasting", - "24811": "ĠTL", - "24812": "Ġlatency", - "24813": "Ġkne", - "24814": "Ber", - "24815": "meaning", - "24816": "Ġupheld", - "24817": "Ġplayground", - "24818": "Ġmant", - "24819": "Side", - "24820": "Ġstereo", - "24821": "Ġnorthwest", - "24822": "Ġexceptionally", - "24823": "Ġrays", - "24824": "Ġrecurring", - "24825": "Drive", - "24826": "Ġupright", - "24827": "Ġabduct", - "24828": "ĠMarathon", - "24829": "Ġgoodbye", - "24830": "Ġalphabet", - "24831": "hp", - "24832": "Ġcourtroom", - "24833": "rington", - "24834": "othing", - "24835": "Tag", - "24836": "Ġdiplomats", - "24837": "Ġbarbar", - "24838": "ĠAqua", - "24841": "Ġmaturity", - "24842": "Ġinstability", - "24843": "ĠApache", - "24844": "Ġ===", - "24845": "Ġfasting", - "24846": "ĠGrid", - "24847": "ModLoader", - "24848": "Ġ152", - "24849": "Abs", - "24850": "ĠOperating", - "24851": "etti", - "24852": "Ġacquaint", - "24853": "Donnell", - "24854": "ĠKem", - "24855": "ĠForge", - "24856": "Ġarmored", - "24857": "Mil", - "24858": "Ġphilosophers", - "24859": "invest", - "24860": "Players", - "24861": "âĪ", - "24862": "Ġmyriad", - "24863": "Ġcomrades", - "24864": "Rot", - "24865": "Ġremembering", - "24866": "Ġcorresponds", - "24867": "Ġprogrammers", - "24868": "ĠLynn", - "24869": "Ġolig", - "24870": "Ġcoherent", - "24871": "ynchron", - "24872": "ĠChemical", - "24873": "Ġjugg", - "24874": "pair", - "24875": "posts", - "24876": "Eye", - "24877": "ĠInner", - "24878": "Ġsemester", - "24879": "ottest", - "24880": "ĠEmirates", - "24881": "ricanes", - "24882": "orously", - "24883": "mits", - "24884": "ĠWis", - "24885": "Ġdodge", - "24886": "location", - "24887": "Ġfaded", - "24888": "Amazon", - "24889": "ĠProceed", - "24890": "ĠINFO", - "24891": "journal", - "24892": "ĠTruck", - "24893": "Ten", - "24894": "Ġ217", - "24895": "Ġstatutes", - "24896": "mobile", - "24897": "ĠTypes", - "24898": "Recomm", - "24899": "buster", - "24900": "pex", - "24901": "Ġlegends", - "24902": "Ġheadache", - "24903": "faced", - "24904": "ĠWiFi", - "24905": "ifty", - "24906": "ĠHER", - "24907": "Ġcircuits", - "24908": "ERROR", - "24910": "olin", - "24911": "Ġcylinder", - "24912": "ospace", - "24913": "ikers", - "24914": "Prem", - "24915": "Quant", - "24916": "Ġconflicting", - "24917": "Ġslightest", - "24918": "Ġforged", - "24919": "ionage", - "24920": "Stephen", - "24921": "ĠKub", - "24922": "ĠOpportun", - "24923": "ĠHeal", - "24924": "Ġblo", - "24925": "Ġrulers", - "24926": "Ġhuh", - "24927": "Ġsubmarine", - "24928": "fy", - "24929": "asser", - "24930": "Ġallowance", - "24931": "ĠKasich", - "24932": "ĠTas", - "24933": "ĠAustralians", - "24934": "ForgeModLoader", - "24935": "ĠâĨij", - "24936": "ĠMatrix", - "24937": "amins", - "24938": "Ġ1200", - "24939": "ĠAcqu", - "24941": "Document", - "24942": "ĠBreaking", - "24944": "ĠSubst", - "24945": "ĠRoller", - "24946": "ĠProperties", - "24947": "ĠNI", - "24948": "tier", - "24949": "Ġcrushing", - "24950": "Ġadvocating", - "24951": "Furthermore", - "24952": "keepers", - "24953": "Ġsexism", - "24954": "xd", - "24955": "Ġcaller", - "24956": "ĠSense", - "24957": "chieve", - "24958": "ĠTF", - "24959": "Ġfueled", - "24960": "Ġreminiscent", - "24961": "Ġobsess", - "24962": "urst", - "24963": "Ġuphold", - "24964": "ĠFans", - "24965": "hetics", - "24966": "ĠâĹ", - "24967": "ĠBath", - "24968": "Ġbeverage", - "24969": "Ġoscill", - "24971": "Ġpoles", - "24972": "Ġgradual", - "24973": "Ġexting", - "24974": "ĠSuff", - "24975": "ĠSuddenly", - "24976": "Ġliking", - "24977": "Ġ1949", - "24978": "unciation", - "24979": "amination", - "24980": "ĠOmar", - "24981": "ĠLV", - "24982": "ĠConsequently", - "24983": "Ġsynthes", - "24984": "ĠGIF", - "24985": "Ġpains", - "24986": "Ġinteracting", - "24987": "uously", - "24988": "incre", - "24989": "Ġrumor", - "24990": "ĠScientology", - "24992": "ĠZig", - "24993": "Ġspelling", - "24994": "ĠASS", - "24995": "Ġextingu", - "24996": "mson", - "24997": "Ġgh", - "24998": "Ġremarked", - "24999": "ĠStrategic", - "25000": "ĠMON", - "25001": "å¥", - "25002": "gae", - "25003": "ĠWHAT", - "25004": "Eric", - "25005": "ĠCampus", - "25006": "Ġmethane", - "25007": "Ġimagin", - "25008": "JUST", - "25009": "ĠAlm", - "25010": "XT", - "25011": "iq", - "25012": "ĠRSS", - "25013": "Ġwrongdoing", - "25014": "atta", - "25015": "Ġbigot", - "25016": "Ġdemonstrators", - "25017": "ĠCalvin", - "25018": "ĠVilla", - "25019": "Ġmembrane", - "25020": "ĠAwesome", - "25021": "Ġbenefic", - "25023": "Ġmagnificent", - "25024": "ĠLots", - "25025": "Greg", - "25026": "ĠBoris", - "25027": "Ġdetainees", - "25028": "ĠHerman", - "25029": "Ġwhispered", - "25030": "Ġawe", - "25031": "Professor", - "25032": "funding", - "25033": "Ġphysiological", - "25034": "ĠDestruction", - "25035": "Ġlimb", - "25036": "Ġmanipulated", - "25037": "Ġbubbles", - "25038": "Ġpseud", - "25039": "Ġhydra", - "25040": "ĠBristol", - "25041": "Ġstellar", - "25042": "ĠExpansion", - "25043": "ĠKell", - "25044": "ĠInterestingly", - "25045": "Ġmans", - "25046": "Ġdragging", - "25047": "Ġecological", - "25048": "ĠFit", - "25049": "Ġgent", - "25050": "Ġbenefited", - "25051": "ĠHaiti", - "25052": "Ġpolyg", - "25053": "ãĥİ", - "25054": "Ġ2030", - "25055": "Ġprow", - "25056": "Ġreconstruction", - "25057": "Ġwast", - "25058": "Ġpsychic", - "25059": "ĠGreeks", - "25060": "Handler", - "25062": "ĠPulse", - "25063": "Ġsolicit", - "25064": "Ġsys", - "25065": "Ġinflux", - "25066": "ĠGentle", - "25067": "percent", - "25068": "Ġproliferation", - "25069": "Ġtaxable", - "25070": "Ġdisregard", - "25071": "Ġescaping", - "25072": "Ġginger", - "25073": "Ġwithstand", - "25074": "Ġdevastated", - "25075": "ĠDew", - "25076": "series", - "25077": "Ġinjected", - "25078": "elaide", - "25079": "Ġturnover", - "25080": "heat", - "25081": "ĻĤ", - "25082": "Happy", - "25083": "ĠSilent", - "25084": "ãĤŃ", - "25085": "ivism", - "25086": "Ġirrational", - "25087": "AMA", - "25088": "Ġreef", - "25089": "rub", - "25090": "Ġ162", - "25091": "Ġbankers", - "25092": "ĠEthics", - "25093": "vv", - "25094": "Ġcriticisms", - "25095": "Kn", - "25097": "Movie", - "25098": "ĠTories", - "25099": "Ġnood", - "25100": "Ġdistortion", - "25101": "False", - "25102": "odore", - "25103": "Ġtasty", - "25104": "Research", - "25105": "ĠUID", - "25106": "-)", - "25107": "Ġdivorced", - "25108": "ĠMU", - "25109": "ĠHayes", - "25110": "ĠIsn", - "25111": "iani", - "25112": "ĠHQ", - "25113": "Ġ\"#", - "25114": "ignant", - "25115": "Ġtraumatic", - "25116": "ĠLing", - "25117": "Hun", - "25118": "Ġsabot", - "25119": "online", - "25120": "random", - "25121": "Ġrenamed", - "25122": "rared", - "25123": "KA", - "25124": "dead", - "25125": "ét", - "25126": "ĠAssistance", - "25127": "Ġseaf", - "25128": "++++++++", - "25129": "Ġseldom", - "25130": "ĠWebb", - "25131": "Ġboolean", - "25132": "ulet", - "25133": "Ġrefrain", - "25134": "ĠDIY", - "25135": "rule", - "25136": "Ġshutting", - "25137": "Ġutilizing", - "25138": "loading", - "25139": "ĠParam", - "25140": "coal", - "25141": "ooter", - "25142": "Ġattracting", - "25143": "ĠDol", - "25144": "Ġhers", - "25145": "agnetic", - "25146": "ĠReach", - "25147": "imo", - "25148": "Ġdiscarded", - "25149": "ĠPip", - "25150": "015", - "25151": "ür", - "25152": "Ġmug", - "25153": "Imagine", - "25154": "COL", - "25155": "Ġcursed", - "25156": "ĠShows", - "25157": "ĠCurtis", - "25158": "ĠSachs", - "25159": "speaking", - "25160": "ĠVista", - "25161": "ĠFramework", - "25162": "ongo", - "25163": "Ġsubreddit", - "25164": "Ġcrus", - "25165": "ĠOval", - "25166": "Row", - "25167": "growing", - "25168": "Ġinstallment", - "25169": "Ġglac", - "25170": "ĠAdvance", - "25171": "ECK", - "25172": "ĠLGBTQ", - "25173": "LEY", - "25174": "Ġacet", - "25175": "Ġsuccessive", - "25176": "ĠNicole", - "25177": "Ġ1957", - "25178": "Quote", - "25179": "Ġcircumstance", - "25180": "ackets", - "25181": "Ġ142", - "25182": "ortium", - "25183": "Ġguessed", - "25184": "ĠFrame", - "25185": "Ġperpetrators", - "25186": "ĠAviation", - "25187": "ĠBench", - "25188": "Ġhandc", - "25189": "Ap", - "25190": "Ġ1956", - "25192": "rand", - "25193": "NetMessage", - "25194": "din", - "25195": "urtles", - "25196": "hig", - "25197": "ĠVIII", - "25198": "ffiti", - "25199": "ĠSwords", - "25200": "bial", - "25201": "Ġkidnapping", - "25202": "device", - "25203": "Ġbarn", - "25204": "ĠEli", - "25205": "aucas", - "25206": "Send", - "25207": "Constructed", - "25208": "Ġ½", - "25209": "Ġneedles", - "25210": "Ġadvertisements", - "25211": "Ġvou", - "25212": "Ġexhibited", - "25213": "ĠFortress", - "25214": "Ask", - "25215": "Berry", - "25216": "TYPE", - "25217": "Ġcancers", - "25218": "umping", - "25219": "ĠTerritory", - "25220": "Ġprud", - "25221": "Ġnas", - "25222": "Ġatheist", - "25223": "Ġbalances", - "25224": "ãģŁ", - "25225": "ĠShawn", - "25226": "&&", - "25227": "Ġlandsc", - "25228": "ĠRGB", - "25229": "Ġpetty", - "25230": "Ġexcellence", - "25231": "Ġtranslations", - "25232": "Ġparcel", - "25233": "ĠChev", - "25234": "East", - "25235": "ĠOutput", - "25236": "imi", - "25237": "Ġambient", - "25238": "ĠThreat", - "25239": "Ġvillains", - "25240": "Ġ550", - "25241": "ICA", - "25242": "Ġtaller", - "25243": "Ġleaking", - "25244": "cup", - "25245": "Ġpolish", - "25246": "Ġinfectious", - "25247": "ĠKC", - "25248": "Ġ@@", - "25249": "background", - "25250": "Ġbureaucracy", - "25251": "ĠSai", - "25252": "unless", - "25253": "itious", - "25254": "ĠSkype", - "25255": "Atl", - "25256": "IDENT", - "25257": "008", - "25258": "Ġhypocr", - "25259": "Ġpitchers", - "25260": "Ġguessing", - "25261": "ĠFINAL", - "25262": "Between", - "25263": "Ġvillagers", - "25264": "Ġ252", - "25265": "fashion", - "25266": "ĠTunis", - "25267": "Beh", - "25268": "ĠExc", - "25269": "ĠMID", - "25271": "ĠHaskell", - "25273": "ĠNOR", - "25274": "Ġspecs", - "25275": "Ġinvari", - "25276": "Ġglut", - "25277": "ĠCars", - "25278": "Ġimpulse", - "25279": "Ġhonors", - "25280": "gel", - "25281": "Ġjurisdictions", - "25282": "ĠBundle", - "25283": "ulas", - "25284": "California", - "25285": "ĠIncrease", - "25286": "Ġpear", - "25287": "Ġsingles", - "25288": "Ġcues", - "25289": "Ġunderwent", - "25290": "ĠWS", - "25291": "Ġexaggerated", - "25292": "Ġdubious", - "25293": "Ġflashing", - "25294": "LOG", - "25295": ")].", - "25296": "Journal", - "25297": "tg", - "25298": "Van", - "25299": "ĠIstanbul", - "25300": "ĠInsp", - "25301": "ĠFranken", - "25302": "Draw", - "25303": "Ġsadness", - "25304": "Ġironic", - "25305": "ĠFry", - "25306": "xc", - "25307": "Ġ164", - "25308": "isch", - "25309": "Way", - "25310": "ĠProtestant", - "25311": "horn", - "25312": "Ġunaff", - "25313": "ĠViv", - "25314": "illas", - "25315": "ĠProductions", - "25316": "ĠHogan", - "25317": "Ġperimeter", - "25318": "ĠSisters", - "25319": "Ġspontaneous", - "25320": "Ġdownside", - "25321": "Ġdescendants", - "25322": "Ġorn", - "25323": "worm", - "25324": "Japanese", - "25325": "Ġ1955", - "25326": "Ġ151", - "25327": "ĠDoing", - "25328": "elsen", - "25329": "umbles", - "25330": "Ġradically", - "25331": "ĠDrum", - "25332": "ĠBach", - "25333": "Ġliabilities", - "25334": "ĠOB", - "25335": "ĠElementary", - "25336": "Ġmeme", - "25337": "ynes", - "25338": "Ġfingerprint", - "25339": "ĠGrab", - "25340": "Ġundertake", - "25341": "Members", - "25342": "ĠReader", - "25343": "ĠSims", - "25344": "god", - "25345": "Ġhypothetical", - "25346": "scient", - "25347": "ĠAJ", - "25348": "Ġcharism", - "25349": "Ġadmissions", - "25350": "ĠMissile", - "25351": "trade", - "25352": "Ġexercising", - "25353": "ĠBackground", - "25354": "Written", - "25355": "Ġvocals", - "25356": "whether", - "25357": "Ġvi", - "25358": "ĠWinner", - "25359": "Ġlitter", - "25360": "ĠShooting", - "25361": "STEM", - "25362": "ãĤ¡", - "25363": "ĠAFL", - "25364": "Ġvariability", - "25365": "Ġeats", - "25366": "ĠDPS", - "25367": "brow", - "25368": "Ġelephants", - "25369": "Ġstrat", - "25370": "ĠÅ", - "25371": "Ġsettlers", - "25372": "Matthew", - "25373": "Ġinadvert", - "25374": "HI", - "25375": "ĠIMF", - "25376": "ĠGoal", - "25377": "Ġnerves", - "25378": "Johnson", - "25379": "eye", - "25380": "ablishment", - "25381": "Thursday", - "25382": "BILITY", - "25383": "Had", - "25384": "amoto", - "25385": "hetamine", - "25386": "eps", - "25387": "Ġmitochond", - "25388": "Ġcompressed", - "25389": "ĠTrevor", - "25390": "ĠAnimals", - "25391": "Tool", - "25392": "Lock", - "25393": "Ġtweak", - "25394": "Ġpinch", - "25395": "Ġcancellation", - "25396": "Pot", - "25397": "Ġfocal", - "25398": "ĠAstron", - "25400": "ĠASC", - "25401": "ĠOTHER", - "25402": "umni", - "25403": "Ġdemise", - "25404": "dl", - "25405": "Ùħ", - "25406": "Semitism", - "25407": "Ġcracking", - "25408": "Ġcollaborative", - "25409": "Ġexplores", - "25410": "sql", - "25411": "Ġherbs", - "25412": "Ġconfigurations", - "25413": "mis", - "25414": "ĠResult", - "25415": "acey", - "25416": "ĠSmoke", - "25417": "Ġsanct", - "25418": "elia", - "25419": "Ġdegener", - "25420": "Ġdeepest", - "25421": "Ġscreamed", - "25422": "Ġnap", - "25423": "Software", - "25424": "ĠSTAR", - "25425": "EF", - "25426": "ĠXin", - "25427": "sponsored", - "25428": "manship", - "25430": "Ġprimaries", - "25431": "Ġfiltering", - "25432": "Ġassemble", - "25433": "mil", - "25434": "ĠMyers", - "25435": "bows", - "25436": "Ġpunched", - "25437": "Mic", - "25438": "Ġinnovations", - "25439": "Ġfunc", - "25440": "ando", - "25441": "Ġfracking", - "25442": "ĠVul", - "25443": "оÐ", - "25444": "oshop", - "25445": "ĠImmun", - "25446": "Ġsettling", - "25447": "Ġadolescents", - "25448": "Ġrebuilding", - "25449": "Ġtransforming", - "25450": "Ġparole", - "25451": "Ġharbor", - "25452": "Ġbooking", - "25453": "otional", - "25454": "ongevity", - "25455": "ĠYo", - "25456": "bug", - "25457": "Ġemerges", - "25458": "ĠMethods", - "25459": "ĠChu", - "25460": "Pres", - "25461": "ĠDungeons", - "25462": "Ġtrailing", - "25463": "ĠRum", - "25464": "ĠHugh", - "25465": "天", - "25466": "ĠEra", - "25467": "ĠBattles", - "25468": "Results", - "25469": "ĠTrading", - "25470": "Ġversa", - "25471": "css", - "25472": "axies", - "25473": "heet", - "25474": "Ġgreed", - "25476": "Ġgardens", - "25477": "Ġcontingent", - "25478": "Park", - "25479": "ĠLeafs", - "25480": "hook", - "25481": "robe", - "25482": "Ġdiplomacy", - "25483": "ĠFuel", - "25484": "ĠInvasion", - "25485": "Ġupgrading", - "25486": "Male", - "25487": "Ġelic", - "25488": "Ġrelentless", - "25489": "ĠCovenant", - "25490": "apesh", - "25491": "ĠTrop", - "25492": "Ty", - "25493": "production", - "25494": "arty", - "25495": "Ġpunches", - "25496": "ako", - "25497": "cyclopedia", - "25498": "ĠRabbit", - "25499": "ĠHDMI", - "25500": "Ġ141", - "25501": "Ġfoil", - "25502": "ItemImage", - "25503": "ĠFG", - "25504": "Ġimplementations", - "25505": "ĠPom", - "25506": "ixtures", - "25507": "Ġawait", - "25508": "Ġ330", - "25509": "amus", - "25510": "Ġumbrella", - "25511": "Ġforesee", - "25512": "separ", - "25513": "Ġcircumcision", - "25514": "Ġperipheral", - "25515": "Say", - "25516": "ĠExpert", - "25517": "Inc", - "25518": "Ġwithdrew", - "25519": "ĠAnders", - "25520": "fried", - "25521": "Ġradioactive", - "25522": "ĠOpening", - "25523": "Ġboarding", - "25524": "ĠND", - "25525": "Ġoverthrow", - "25526": "Activ", - "25527": "WP", - "25528": "ĠActs", - "25529": "×Ļ", - "25530": "Ġmotions", - "25531": "vic", - "25532": "ĠMighty", - "25533": "ĠDefender", - "25534": "aer", - "25535": "Ġthankful", - "25536": "ĠKilling", - "25537": "ĠBris", - "25538": "moil", - "25539": "Ġpredicting", - "25541": "choice", - "25542": "Ġkillers", - "25543": "Ġincub", - "25544": "ĠChest", - "25545": "athering", - "25546": "Ġproclaimed", - "25547": "flower", - "25548": "ossom", - "25549": "umbledore", - "25550": "ĠCycling", - "25551": "ĠOccupy", - "25552": "AGES", - "25553": "Pen", - "25554": "ĠYug", - "25555": "Ġpackaged", - "25556": "Ġheightened", - "25557": "cot", - "25558": "stack", - "25559": "Cond", - "25560": "Ġstamps", - "25561": "mage", - "25562": "Ġpersuaded", - "25563": "Ġensl", - "25564": "ĠCardinal", - "25565": "Ġsolitary", - "25566": "Ġpossessing", - "25567": "ĠCork", - "25568": "Ġevid", - "25569": "ĠTay", - "25570": "Ġblues", - "25571": "Ġextremism", - "25572": "Ġlunar", - "25573": "Ġclown", - "25574": "Techn", - "25575": "Ġfestivals", - "25576": "ĠPvP", - "25577": "ĠLar", - "25578": "Ġconsequently", - "25579": "present", - "25580": "Ġsomeday", - "25581": "çİĭ", - "25582": "ĠMeteor", - "25583": "Ġtouring", - "25584": "culture", - "25585": "Ġbeaches", - "25586": "Ship", - "25587": "cause", - "25588": "ĠFlood", - "25589": "ãĥ¯", - "25590": "Ġpurity", - "25591": "those", - "25592": "Ġemission", - "25593": "bolt", - "25594": "Ġchord", - "25595": "ĠScripture", - "25596": "Lu", - "25597": "Ġ${", - "25598": "created", - "25599": "Others", - "25601": "Ġelemental", - "25602": "Ġannoyed", - "25603": "ĠAE", - "25604": "dan", - "25605": "ĠSag", - "25606": "Researchers", - "25607": "Ġfairy", - "25608": "âĢĵâĢĵ", - "25609": "============", - "25610": "Smart", - "25611": "GGGG", - "25612": "Ġskeletons", - "25613": "Ġpupils", - "25614": "linked", - "25615": "Ġurgency", - "25616": "enabled", - "25617": "ĠFuck", - "25618": "Ġcouncill", - "25619": "rab", - "25620": "UAL", - "25621": "TI", - "25622": "Ġlifes", - "25623": "Ġconfessed", - "25624": "Bug", - "25625": "Ġharmon", - "25626": "ĠCONFIG", - "25627": "ĠNeutral", - "25628": "Double", - "25629": "Ġstaple", - "25630": "ĠSHA", - "25631": "British", - "25632": "ĠSNP", - "25633": "ATOR", - "25634": "oco", - "25635": "Ġswinging", - "25636": "gex", - "25637": "oleon", - "25638": "plain", - "25639": "ĠMissing", - "25640": "ĠTrophy", - "25641": "vari", - "25642": "ranch", - "25643": "Ġ301", - "25645": "0000000000000000", - "25646": "Ġrestoring", - "25647": "Ġhaul", - "25648": "ucing", - "25649": "nerg", - "25650": "Ġfutures", - "25651": "Ġstrategist", - "25652": "question", - "25653": "Ġlateral", - "25654": "ĠBard", - "25655": "Ġsor", - "25656": "ĠRhodes", - "25657": "ĠDowntown", - "25658": "?????-", - "25659": "ĠLit", - "25660": "ĠBened", - "25661": "Ġcoil", - "25662": "street", - "25663": "ĠPortal", - "25664": "FILE", - "25665": "ĠGru", - "25666": "*,", - "25668": "neum", - "25669": "Ġsucked", - "25670": "Ġrapper", - "25671": "Ġtendencies", - "25672": "ĠLauren", - "25673": "cellaneous", - "25675": "Ġbrowse", - "25676": "Ġoverc", - "25677": "header", - "25678": "oise", - "25679": "Ġbeet", - "25680": "ĠGle", - "25681": "Stay", - "25682": "Ġmum", - "25683": "Ġtyped", - "25684": "Ġdiscounts", - "25685": "Talk", - "25686": "ĠOg", - "25687": "existing", - "25688": "ĠSell", - "25689": "uph", - "25690": "CI", - "25691": "ĠAustrian", - "25692": "ĠWarm", - "25693": "Ġdismissal", - "25694": "Ġaverages", - "25695": "camera", - "25696": "Ġallegiance", - "25697": "LAN", - "25698": "=\"#", - "25699": "Ġcommentators", - "25700": "ĠSetting", - "25701": "ĠMidwest", - "25702": "Ġpharmac", - "25703": "ĠEXP", - "25704": "Ġstainless", - "25705": "Chicago", - "25706": "Ġtan", - "25708": "Ġcountryside", - "25709": "ĠVac", - "25711": "Ġpinned", - "25712": "Ġcrises", - "25713": "Ġstandardized", - "25714": "Task", - "25715": "ĠJail", - "25716": "ĠDocker", - "25717": "colored", - "25718": "forth", - "25719": "\"},", - "25720": "Ġpatrons", - "25721": "Ġspice", - "25722": "Ġmourn", - "25723": "ĠMood", - "25724": "Ġlaundry", - "25725": "Ġequip", - "25726": "ĠMole", - "25727": "yll", - "25728": "ĠTHC", - "25729": "nation", - "25730": "ĠSherlock", - "25731": "Ġissu", - "25732": "ĠKre", - "25733": "ĠAmericas", - "25734": "ĠAAA", - "25735": "Ġsystematically", - "25736": "Ġcontra", - "25737": "ĠSally", - "25738": "Ġrationale", - "25739": "Ġcarriage", - "25740": "Ġpeaks", - "25741": "Ġcontradiction", - "25742": "ensation", - "25743": "ĠFailure", - "25744": "Ġprops", - "25745": "Ġnamespace", - "25746": "Ġcove", - "25747": "fields", - "25748": "ãĤĭ", - "25749": "Ġwool", - "25750": "ĠCatch", - "25751": "Ġpresumed", - "25752": "ĠDiana", - "25753": "ragon", - "25754": "igi", - "25755": "Ġhamm", - "25756": "Ġstunt", - "25757": "ĠGUI", - "25758": "ĠObservatory", - "25759": "ĠShore", - "25760": "Ġsmells", - "25761": "annah", - "25762": "Ġcockpit", - "25763": "ĠDuterte", - "25765": "Ġoppressed", - "25766": "breaker", - "25767": "ĠContribut", - "25768": "ĠPeru", - "25769": "ĠMonsanto", - "25770": "ĠAttempt", - "25771": "Ġcommanding", - "25772": "Ġfridge", - "25773": "ĠRin", - "25774": "ĠChess", - "25775": "uality", - "25776": "Ġol", - "25777": "Republican", - "25778": "ĠGlory", - "25779": "ĠWIN", - "25780": ".......", - "25781": "agent", - "25782": "reading", - "25783": "Ġinh", - "25784": "Jones", - "25785": "Ġclicks", - "25786": "alan", - "25787": "Ġ[];", - "25788": "ĠMajesty", - "25789": "ĠCed", - "25790": "opus", - "25791": "atel", - "25792": "ê", - "25793": "ARC", - "25794": "ĠEcuador", - "25795": "ãĥł", - "25796": "ĠKuro", - "25797": "Ġrituals", - "25798": "Ġcaptive", - "25799": "Ġounce", - "25800": "Ġdisagreement", - "25801": "Ġslog", - "25802": "fuel", - "25803": "Pet", - "25804": "Mail", - "25805": "Ġexercised", - "25806": "Ġsolic", - "25807": "Ġrainfall", - "25808": "Ġdevotion", - "25809": "ĠAssessment", - "25810": "Ġrobotic", - "25811": "options", - "25812": "ĠRP", - "25813": "ĠFamilies", - "25814": "ĠFlames", - "25815": "Ġassignments", - "25816": "007", - "25817": "akedown", - "25818": "Ġvocabulary", - "25819": "Reilly", - "25820": "Ġcaval", - "25821": "gars", - "25822": "Ġsuppressed", - "25823": "ĠSET", - "25824": "ĠJohns", - "25825": "Ġwarp", - "25826": "broken", - "25827": "Ġstatues", - "25828": "Ġadvocated", - "25829": "Ġ275", - "25830": "Ġperil", - "25831": "omorph", - "25832": "ĠFemin", - "25833": "perfect", - "25834": "Ġhatch", - "25835": "Lib", - "25837": "Ġlifelong", - "25839": "Ġcheeks", - "25840": "Ġnumbered", - "25841": "ĠMug", - "25842": "Body", - "25843": "ravel", - "25844": "Weight", - "25845": "ĠJak", - "25846": "ĠHeath", - "25847": "Ġkissing", - "25848": "ĠJUST", - "25849": "Ġwaving", - "25850": "upload", - "25851": "Ġinsider", - "25852": "ĠProgressive", - "25853": "ĠFilter", - "25854": "tta", - "25855": "ĠBeam", - "25856": "Ġviolently", - "25857": "ipation", - "25858": "Ġskepticism", - "25859": "Ġ1918", - "25860": "ĠAnnie", - "25861": "ĠSI", - "25862": "Ġgenetics", - "25863": "Ġonboard", - "25864": "atl", - "25865": "ĠFriedman", - "25866": "ĠBri", - "25867": "ceptive", - "25868": "Ġpirate", - "25869": "ĠReporter", - "25871": "Ġmythology", - "25872": "Ġeclipse", - "25873": "Ġskins", - "25874": "Ġglyph", - "25875": "ingham", - "25876": "Files", - "25877": "Cour", - "25878": "women", - "25879": "Ġregimes", - "25880": "Ġphotographed", - "25881": "Kat", - "25882": "ĠMAX", - "25883": "Officials", - "25884": "Ġunexpectedly", - "25885": "Ġimpressions", - "25886": "Front", - "25887": ";;;;;;;;", - "25888": "Ġsupremacy", - "25889": "Ġsang", - "25890": "Ġaggravated", - "25891": "Ġabruptly", - "25892": "ĠSector", - "25893": "Ġexcuses", - "25894": "Ġcosting", - "25895": "idepress", - "25896": "Stack", - "25897": "ĠRNA", - "25898": "obil", - "25899": "Ġghosts", - "25900": "ldon", - "25901": "atibility", - "25902": "Topics", - "25903": "Ġreimburse", - "25904": "ĠHM", - "25905": "ĠDeg", - "25906": "Ġthief", - "25907": "yet", - "25908": "ogenesis", - "25909": "leaning", - "25910": "ĠKol", - "25911": "ĠBasketball", - "25912": "Ġfi", - "25913": "ĠSeeing", - "25914": "Ġrecycling", - "25915": "Ġ[-", - "25916": "Congress", - "25917": "Ġlectures", - "25918": "Psy", - "25919": "Ġnep", - "25920": "Ġmaid", - "25921": "Ġoriented", - "25922": "AX", - "25923": "Ġrespectful", - "25924": "rene", - "25925": "flush", - "25926": "ĠUnloaded", - "25927": "request", - "25928": "grid", - "25929": "ĠAlternatively", - "25930": "ĠHugo", - "25931": "Ġdecree", - "25932": "ĠBuddhism", - "25933": "andum", - "25934": "Android", - "25935": "ĠCongo", - "25936": "ĠJoyce", - "25937": "Ġacknowledging", - "25938": "hesive", - "25939": "ĠTomorrow", - "25940": "ĠHiro", - "25941": "thren", - "25942": "ĠMaced", - "25943": "Ġhoax", - "25944": "ĠIncreased", - "25945": "ĠPradesh", - "25946": "Wild", - "25947": "______", - "25949": "Ġaunt", - "25950": "Ġdistributing", - "25951": "ĠTucker", - "25952": "ĠSSL", - "25953": "ĠWolves", - "25954": "Building", - "25955": "oult", - "25956": "ĠLuo", - "25957": "ĠYas", - "25958": "ĠSpir", - "25959": "ĠShape", - "25960": "ĠCambod", - "25961": "ĠIPv", - "25962": "Ġml", - "25963": "Ġextrad", - "25965": "ĠPenny", - "25966": "dream", - "25967": "Ġstationed", - "25968": "optional", - "25969": "eworthy", - "25970": ".", - "26701": "ĠWorkshop", - "26702": "ĠRetail", - "26703": "ĠAvatar", - "26705": "Na", - "26706": "ĠVC", - "26707": "ĠSecure", - "26708": "MY", - "26710": "ossip", - "26711": "Ġprostate", - "26712": "Ġunden", - "26713": "Ġgamer", - "26714": "ĠContents", - "26715": "ĠWarhammer", - "26716": "ĠSentinel", - "26718": "Ġsegregation", - "26719": "ĠFlex", - "26720": "ĠMAY", - "26721": "Ġdrills", - "26722": "ĠDrugs", - "26723": "Islamic", - "26724": "Ġspur", - "26725": "Ġcafe", - "26726": "Ġimaginary", - "26727": "Ġguiding", - "26728": "Ġswings", - "26729": "ĠTheme", - "26730": "oby", - "26731": "Ġnud", - "26732": "Ġbegging", - "26733": "Ġstrongh", - "26734": "Ġrejecting", - "26735": "Ġpedestrians", - "26736": "ĠProspect", - "26737": "Rare", - "26738": "sle", - "26739": "Ġconcessions", - "26740": "ĠConstitutional", - "26741": "Ġbeams", - "26742": "Ġfibers", - "26743": "poon", - "26744": "Ġinstincts", - "26745": "property", - "26746": "ĠBIG", - "26747": "Sanders", - "26748": "imates", - "26749": "Ġcoating", - "26750": "Ġcorpses", - "26751": "ĠTRUE", - "26752": "checked", - "26753": "Ġ166", - "26754": "Ash", - "26755": "ĠJS", - "26756": "ĠFiction", - "26757": "Ġcommunal", - "26758": "Ġenergetic", - "26759": "oooooooo", - "26760": "Ġnowadays", - "26761": "ILD", - "26762": "ibo", - "26763": "ĠSUV", - "26764": "Ren", - "26765": "Ġdwelling", - "26766": "Silver", - "26767": "Ġtally", - "26768": "ĠMoving", - "26769": "Ġcoward", - "26770": "Ġgenerals", - "26771": "Ġhorns", - "26772": "Ġcirculated", - "26773": "Ġrobbed", - "26774": "ĠUnlimited", - "26775": "Ġharassed", - "26776": "Ġinhibit", - "26777": "Ġcomposer", - "26778": "ĠSpotify", - "26779": "Ġspreads", - "26781": "Ġsuicidal", - "26782": "Ġnoises", - "26783": "ĠStur", - "26784": "Ġsaga", - "26785": "ĠKag", - "26786": "iso", - "26787": "Ġtheoretically", - "26788": "Money", - "26789": "Ġsimilarity", - "26790": "Ġsliced", - "26791": "utils", - "26792": "inges", - "26793": "\"-", - "26794": "Ġanth", - "26795": "Ġimped", - "26796": "Module", - "26797": "Throughout", - "26798": "Ġmenus", - "26799": "committee", - "26800": "andi", - "26801": "obj", - "26802": "inav", - "26803": "fired", - "26804": "ĠAbdullah", - "26805": "Ġundead", - "26806": "Ġfonts", - "26807": "Hold", - "26808": "ENG", - "26809": "Ġsustainability", - "26810": "Ġflick", - "26811": "Ġrazor", - "26812": "ĠFest", - "26813": "ĠCharacters", - "26814": "Ġwording", - "26815": "Ġpopulist", - "26816": "Ġcriticizing", - "26817": "Ġmuse", - "26818": "vine", - "26819": "Ġcardboard", - "26820": "Ġkindly", - "26821": "Ġfringe", - "26822": "ĠTheft", - "26823": "icultural", - "26824": "Ġgovernors", - "26825": "Ġ����", - "26826": "Ġ163", - "26827": "Ġtimeout", - "26828": "ĠAuth", - "26829": "Children", - "26830": "AU", - "26831": "Ġredemption", - "26832": "ĠAlger", - "26833": "Ġ1914", - "26834": "Ġwaved", - "26835": "Ġastronauts", - "26836": "ograms", - "26837": "Ġswamp", - "26838": "ĠFinnish", - "26839": "Ġcandle", - "26840": "Ġtonnes", - "26841": "utm", - "26842": "Ġray", - "26843": "Ġspun", - "26844": "Ġfearful", - "26845": "articles", - "26846": "Ġcaus", - "26847": "orically", - "26848": "ĠRequires", - "26849": "ĠGol", - "26850": "Ġpope", - "26851": "Ġinaugural", - "26852": "Ġgle", - "26853": "ADA", - "26854": "ĠISIL", - "26855": "ĠOffensive", - "26856": "Ġwatchdog", - "26857": "Ġbalcon", - "26858": "entity", - "26859": "ĠHoo", - "26860": "Ġgallon", - "26861": "ACC", - "26862": "Ġdoubling", - "26863": "Ġimplication", - "26864": "ĠSight", - "26865": "Ġdoctr", - "26866": "-------", - "26867": "Ġ\\\\", - "26868": "Ġmalt", - "26869": "Roll", - "26870": "Ġâī¥", - "26871": "Ġrecap", - "26872": "adding", - "26873": "uces", - "26874": "ĠBend", - "26875": "figure", - "26876": "Ġturkey", - "26877": "Ġsocietal", - "26878": "ĠTickets", - "26879": "Ġcommercially", - "26880": "Ġspicy", - "26881": "Ġ216", - "26882": "ĠRamp", - "26883": "Ġsuperiority", - "26884": "ï", - "26885": "ĠTracker", - "26886": "Carl", - "26887": "ĠCoy", - "26888": "ĠPatriot", - "26889": "Ġconsulted", - "26890": "Ġlistings", - "26891": "Ġslew", - "26892": "reenshot", - "26893": "ĠGone", - "26894": "Ġ[...]", - "26896": "Ġhottest", - "26897": "ر", - "26898": "Ġrocky", - "26899": "ĠDiaz", - "26900": "Ġmassage", - "26901": "Ġparaly", - "26902": "Ġpony", - "26903": "Az", - "26904": "Ġcartridge", - "26905": "ĠNZ", - "26906": "Ġsnack", - "26907": "ĠLamar", - "26908": "plement", - "26909": "ĠLeslie", - "26910": "Ġmater", - "26911": "Ġsnipp", - "26913": "Ġjointly", - "26914": "ĠBrisbane", - "26915": "ĠiPod", - "26916": "Ġpumping", - "26917": "Ġgoat", - "26918": "ĠSharon", - "26919": "ealing", - "26920": "Ġcoron", - "26921": "Ġanomal", - "26922": "rahim", - "26923": "ĠConnection", - "26924": "Ġsculpture", - "26925": "Ġscheduling", - "26926": "ĠDaddy", - "26927": "athing", - "26928": "Ġeyebrows", - "26929": "Ġcurved", - "26930": "Ġsentiments", - "26931": "Ġdrafting", - "26932": "Drop", - "26933": "([", - "26934": "Ġnominal", - "26935": "ĠLeadership", - "26936": "ĠGrow", - "26937": "Ġ176", - "26938": "Ġconstructive", - "26939": "ivation", - "26940": "Ġcorrupted", - "26941": "gerald", - "26942": "ĠCros", - "26943": "ĠChester", - "26944": "ĠLap", - "26945": "ãģª", - "26946": "OTH", - "26947": "DATA", - "26948": "Ġalmond", - "26949": "probably", - "26950": "Imp", - "26951": "Ġfeast", - "26952": "ĠWarcraft", - "26953": "Flor", - "26954": "Ġcheckpoint", - "26955": "Ġtranscription", - "26956": "Ġ204", - "26957": "Ġtweaks", - "26958": "Ġrelieve", - "26959": "Science", - "26960": "Ġperformer", - "26961": "Zone", - "26962": "Ġturmoil", - "26963": "igated", - "26964": "hibit", - "26965": "ĠCafe", - "26966": "themed", - "26967": "Ġfluor", - "26968": "bench", - "26969": "Ġdecom", - "26970": "ĠUnt", - "26971": "ĠBarrett", - "26972": "ĠFacts", - "26973": "Ġtasting", - "26974": "ĠPTSD", - "26975": "ĠSeal", - "26976": "ĠJudaism", - "26977": "ĠDynamic", - "26978": "ĠCors", - "26979": "Ve", - "26980": "ĠMing", - "26981": "ĠTransform", - "26982": "von", - "26983": "ĠDefenders", - "26984": "ĠTactical", - "26985": "ĠVon", - "26986": "ĠUnivers", - "26987": "Ġdistorted", - "26988": "ĠBreath", - "26989": "?'\"", - "26990": "Ġagon", - "26991": "ĠDeadly", - "26992": "Ġlan", - "26993": "ĠCycle", - "26994": "orned", - "26995": "Ġreliably", - "26996": "Ġglor", - "26997": "ĠMonkey", - "26998": "ãĥ¡", - "26999": "Ġadren", - "27000": "Ġmicrowave", - "27001": "ĠAlban", - "27002": "ircraft", - "27003": "digit", - "27004": "smart", - "27005": "ĠDread", - "27006": "¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯", - "27007": "{{", - "27008": "ĠRochester", - "27009": "Ġsimplified", - "27010": "Ġinflicted", - "27011": "Ġtakeover", - "27012": "Ġyourselves", - "27013": "aditional", - "27014": "Ġmuscular", - "27015": "KS", - "27016": "Ġingen", - "27017": "Tax", - "27018": "ĠFeature", - "27020": "Ġcruc", - "27021": "Ġcrate", - "27022": "Ġunidentified", - "27023": "Ġacclaimed", - "27024": "ĠManga", - "27025": "ĠFrances", - "27026": "ĠNepal", - "27027": "ĠGerald", - "27028": "ĠKuwait", - "27029": "Ġslain", - "27030": "ĠHeb", - "27031": "ĠGoku", - "27032": "ã쮿", - "27034": "Mrs", - "27035": "ĠCody", - "27036": "ĠSanctuary", - "27037": "016", - "27038": "Ġdismant", - "27039": "Ġdataset", - "27040": "ĠHond", - "27041": "buck", - "27042": "ĠPatterson", - "27043": "Ġpalette", - "27044": "ĠGD", - "27045": "icol", - "27046": "ĠLodge", - "27047": "Ġplanetary", - "27048": "akin", - "27049": "ĠRegistered", - "27050": "abwe", - "27051": "ĠPetersburg", - "27052": "Ġhailed", - "27053": "ĠPiece", - "27054": "Sche", - "27055": "ĠDOJ", - "27056": "Ġenumer", - "27058": "ĠObserver", - "27059": "ĠBold", - "27060": "founded", - "27061": "commerce", - "27062": "Ġexploits", - "27063": "ĠFinding", - "27064": "URN", - "27065": "ĠSne", - "27066": "ĠAcid", - "27067": "ayette", - "27068": "ĠValues", - "27069": "Ġdrastic", - "27070": "Ġarchitectural", - "27071": "Ġ\".", - "27072": "×ķ", - "27073": "umped", - "27074": "Ġwrapping", - "27075": "Ġwidow", - "27076": "ĠSlayer", - "27077": "lace", - "27078": "once", - "27079": "Germany", - "27080": "avoid", - "27081": "Ġtemples", - "27082": "PAR", - "27083": "ô", - "27084": "ĠLucifer", - "27085": "ĠFlickr", - "27086": "lov", - "27087": "forces", - "27088": "Ġscouting", - "27089": "Ġlouder", - "27090": "tesy", - "27091": "Ġbeforehand", - "27092": "Äĵ", - "27093": "ĠNeon", - "27094": "ĠWol", - "27095": "ĠTypically", - "27096": "ĠPolitico", - "27097": "-+-+", - "27098": "Ġbuilder", - "27099": "Ġderive", - "27100": "Kill", - "27101": "Ġpoker", - "27102": "Ġambiguous", - "27103": "Ġlifts", - "27104": "Ġcyt", - "27105": "Ġribs", - "27106": "oodle", - "27107": "ĠSounds", - "27108": "hair", - "27109": "ĠSyndrome", - "27110": "tf", - "27111": "Ġproportional", - "27112": "uid", - "27113": "Ġpertaining", - "27114": "ĠKindle", - "27115": "ĠNegro", - "27116": "Ġreiterated", - "27117": "ĠTonight", - "27118": "oths", - "27119": "ĠCornell", - "27120": "Ġowing", - "27121": "Ġ208", - "27122": "elfare", - "27123": "ocating", - "27124": "ĠBirds", - "27125": "Subscribe", - "27126": "Ġessays", - "27127": "Ġburdens", - "27128": "Ġillustrations", - "27129": "arious", - "27130": "ERAL", - "27131": "ĠCalcul", - "27132": "Ġxen", - "27133": "ĠLinkedIn", - "27134": "ĠJung", - "27135": "Ġredesign", - "27136": "Connor", - "27138": "Ġreversal", - "27139": "ĠAdelaide", - "27140": "ĠLL", - "27141": "Ġsinking", - "27142": "Ġgum", - "27143": "USH", - "27144": "capt", - "27145": "ĠGrimm", - "27146": "Ġfootsteps", - "27147": "ĠCBD", - "27148": "ispers", - "27149": "Ġprose", - "27150": "Wednesday", - "27151": "ĠMovies", - "27152": "edin", - "27153": "Ġoverturned", - "27154": "Ġcontentious", - "27155": "USB", - "27156": "~~~~~~~~~~~~~~~~", - "27157": "ĠCopper", - "27158": "Ġpointless", - "27159": "NV", - "27160": "values", - "27161": "olphin", - "27162": "dain", - "27163": "Ġdeposited", - "27164": "ĠGW", - "27165": "Ġpreceded", - "27166": "ĠCla", - "27167": "ĠGolem", - "27168": "ĠNim", - "27169": "Ġβ", - "27170": "ĠEngineers", - "27171": "middle", - "27172": "Ġflatt", - "27173": "operative", - "27174": "Ġcouncils", - "27175": "imbabwe", - "27176": "elin", - "27177": "Ġstressful", - "27178": "ĠLD", - "27179": "Ġresh", - "27180": "lake", - "27181": "Ġwheelchair", - "27182": "ĠAlternative", - "27183": "Ġoptimize", - "27184": "operation", - "27185": "Ġpeek", - "27186": "Ġoneself", - "27187": "igil", - "27188": "Ġtransitions", - "27189": "opathy", - "27190": "blank", - "27191": "Ġ169", - "27193": "________________________________________________________________", - "27194": "Ġlaundering", - "27195": "Enc", - "27196": "ĠDEC", - "27197": "Ġworkouts", - "27198": "Ġspikes", - "27199": "Ġdinosaurs", - "27200": "Ġdiscriminatory", - "27201": "Pool", - "27202": "Rather", - "27204": "RNA", - "27205": "testers", - "27206": "eto", - "27207": "ĠIdentity", - "27208": "Ġvein", - "27209": "ĠBurton", - "27210": "Ġarcade", - "27212": "Ultimately", - "27213": "ĠSadly", - "27214": "ð", - "27215": "pill", - "27216": "Ġcubic", - "27217": "ĠSpectrum", - "27218": "these", - "27219": "states", - "27220": "Ġunofficial", - "27221": "hawks", - "27222": "ĠEVERY", - "27223": "Ġrainbow", - "27224": "Ġincarceration", - "27225": "anding", - "27226": "Ġsyll", - "27227": "ĠEverton", - "27228": "Ġ179", - "27229": "ĠSerbia", - "27230": "Ġ189", - "27231": "meter", - "27232": "ĠMickey", - "27233": "Ġantiqu", - "27234": "Ġfactual", - "27235": "neck", - "27236": "ĠNare", - "27237": "norm", - "27238": "must", - "27239": "Ġhighways", - "27240": "Ġglam", - "27241": "Ġdividing", - "27242": "ĠSquadron", - "27243": "ĠMartha", - "27244": "Ġbirths", - "27245": "Cover", - "27246": "////////////////", - "27247": "ĠWong", - "27248": "Phot", - "27249": "ĠALS", - "27250": "rio", - "27251": "ĠNonetheless", - "27252": "ĠLemon", - "27253": "Ġ206", - "27254": "ĠEE", - "27255": "Ġderivative", - "27256": "ĠWWII", - "27257": "vote", - "27258": "Ġtherein", - "27259": "Ġseparating", - "27261": "sync", - "27262": "ĠStreets", - "27263": "Ġratt", - "27264": "Ġmunicipality", - "27265": "ĠShortly", - "27266": "Ġmonk", - "27267": "),\"", - "27268": "Ġscrub", - "27269": "Ġoperatives", - "27270": "Neither", - "27271": "Place", - "27272": "ĠLimit", - "27273": "Female", - "27274": "ĠActor", - "27275": "Character", - "27276": "Ġconstituted", - "27278": "Ġprotested", - "27279": "ĠStraw", - "27280": "ĠHeight", - "27281": "ilda", - "27282": "ĠTyph", - "27283": "Ġfloods", - "27284": "Ġcosmetic", - "27285": "WAY", - "27286": "perture", - "27287": "upon", - "27288": "tons", - "27289": "essing", - "27290": "ĠPocket", - "27291": "Ġrooft", - "27292": "ĠCaucas", - "27293": "Ġantidepress", - "27294": "Ġincompatible", - "27295": "ECD", - "27296": "Ġopera", - "27297": "ĠContest", - "27298": "Ġgenerators", - "27299": "lime", - "27300": "Defense", - "27302": "forum", - "27303": "Ġsavage", - "27304": "ĠHungarian", - "27305": "nz", - "27306": "Ġmetallic", - "27307": "Ġexpelled", - "27308": "Ġresidency", - "27309": "Ġdresses", - "27311": "ĠClement", - "27312": "fires", - "27313": "Category", - "27314": "Ġgeek", - "27315": "alis", - "27316": "Ġcemetery", - "27317": "educated", - "27318": "Ġcrawl", - "27319": "ĠUnable", - "27320": "ĠTyson", - "27321": "akis", - "27322": "Ġpardon", - "27323": "ĠWra", - "27324": "Ġstrengthened", - "27325": "ĠFors", - "27327": "ĠHC", - "27328": "ĠMond", - "27329": "Ġvisuals", - "27330": "ĠBeatles", - "27331": "ettlement", - "27332": "Ġï", - "27333": "gro", - "27334": "Ġbash", - "27335": "Ġpoorest", - "27336": "Ġexcel", - "27337": "Ġaspirations", - "27338": "ĠMunicip", - "27339": "ensible", - "27340": "Ġceremonies", - "27341": "Ġintimidation", - "27342": "ĠCONTR", - "27343": "beck", - "27344": "ĠKap", - "27345": "asu", - "27346": "Ġtrademarks", - "27347": "ĠSew", - "27348": "ĠCompetition", - "27349": "network", - "27350": "ĠArri", - "27351": "ĠTet", - "27352": "Roaming", - "27353": "WC", - "27354": "Dat", - "27355": "Ġsob", - "27356": "Ġpairing", - "27357": "Ġoverdose", - "27358": "SAY", - "27359": "aber", - "27360": "Ġrevolt", - "27361": "ĠFah", - "27362": "acting", - "27363": "eq", - "27364": "estation", - "27365": "Fight", - "27366": "ĠMarks", - "27368": "Ġ178", - "27369": "Raw", - "27370": "ãģĭ", - "27372": "blocks", - "27373": "Ġverge", - "27374": "estine", - "27375": "ĠPodesta", - "27376": "Ġinvasive", - "27377": "Ġprofoundly", - "27378": "ĠAo", - "27379": "each", - "27380": "Ġlest", - "27381": "interpret", - "27382": "Ġshrinking", - "27383": "Ġerrone", - "27384": "Ġchees", - "27385": "lys", - "27386": "ĠIvy", - "27387": "ĠDirectory", - "27388": "Ġhinted", - "27389": "VICE", - "27390": "Ġcontacting", - "27391": "ĠGent", - "27392": "hei", - "27393": "Ġlabeling", - "27394": "Ġmercury", - "27395": "ĠLite", - "27396": "Ġexpires", - "27397": "Ġdestabil", - "27398": "ritis", - "27399": "cu", - "27400": "Ġfeathers", - "27401": "Ġsteer", - "27402": "Ġprogrammed", - "27403": "ĠVader", - "27404": "Going", - "27405": "ĠElim", - "27406": "Ġyo", - "27407": "ĠMiche", - "27408": "Ġ203", - "27409": "Ġsleeves", - "27410": "Ġbully", - "27411": "ĠHumans", - "27413": "Ġcompress", - "27414": "ĠBanner", - "27415": "ARS", - "27416": "Ġawhile", - "27417": "Ġcalib", - "27418": "Ġsponsorship", - "27419": "ĠDifficulty", - "27420": "ĠPapers", - "27421": "Ġidentifier", - "27422": "}.", - "27423": "Ġyog", - "27424": "ĠShia", - "27425": "Ġcleanup", - "27426": "Ġvibe", - "27427": "introdu", - "27428": "imming", - "27429": "Australia", - "27430": "Ġoutlines", - "27431": "ĠYoutube", - "27432": "train", - "27433": "ĠMakes", - "27434": "Ġdeported", - "27435": "Ġcentr", - "27436": "ĠDug", - "27437": "ĠBoulder", - "27438": "ĠBuffy", - "27439": "Ġinjunction", - "27440": "ĠHarley", - "27441": "ĠGroups", - "27442": "ĠDumbledore", - "27443": "ĠClara", - "27444": "Ġ\"-", - "27445": "Ġsacrificed", - "27446": "eph", - "27447": "Shadow", - "27448": "ibling", - "27449": "Ġfreelance", - "27450": "Ġevidently", - "27451": "phal", - "27452": "Ġretains", - "27453": "Mir", - "27454": "Ġfinite", - "27455": "dar", - "27456": "ĠCous", - "27457": "Ġrepaired", - "27458": "Ġperiodic", - "27459": "Ġchampionships", - "27460": "Ġasteroid", - "27461": "blind", - "27462": "Ġexpressly", - "27463": "ĠAstros", - "27464": "Ġscaled", - "27465": "Ġgeographical", - "27466": "ĠRapids", - "27467": "Enjoy", - "27468": "Ġelastic", - "27469": "ĠMohamed", - "27470": "Market", - "27471": "begin", - "27472": "Ġdiscovers", - "27473": "Ġtelecommunications", - "27474": "Ġscanner", - "27475": "Ġenlarge", - "27476": "Ġsharks", - "27477": "Ġpsychedel", - "27478": "ĠRouge", - "27479": "Ġsnapshot", - "27480": "isine", - "27481": "XP", - "27482": "Ġpesticides", - "27483": "ĠLSD", - "27484": "ĠDistribution", - "27485": "really", - "27486": "Ġdegradation", - "27487": "Ġdisguise", - "27488": "Ġbiom", - "27489": "ĠEXT", - "27490": "Ġequations", - "27491": "Ġhazards", - "27492": "ĠCompared", - "27493": ")*", - "27494": "Ġvirtues", - "27495": "Ġelders", - "27496": "Ġenhancing", - "27497": "ĠAcross", - "27498": "eros", - "27499": "angling", - "27500": "Ġcombust", - "27501": "ucci", - "27502": "Ġconcussion", - "27503": "Ġcontraception", - "27504": "ĠKang", - "27505": "Ġexpresses", - "27506": "Ġaux", - "27507": "ĠPione", - "27508": "Ġexhibits", - "27509": "Debug", - "27510": "OTAL", - "27511": "ĠAlready", - "27512": "ĠWheeler", - "27513": "Ġexpands", - "27514": "?:", - "27515": "Ġreconciliation", - "27516": "Ġpirates", - "27517": "Ġpurse", - "27518": "Ġdiscourage", - "27519": "Ġspectacle", - "27520": "Rank", - "27521": "Ġwraps", - "27522": "ĠThought", - "27523": "Ġimpending", - "27524": "Opp", - "27525": "ĠAnglo", - "27526": "ĠEUR", - "27527": "Ġscrewed", - "27528": "retched", - "27529": "Ġencouragement", - "27530": "models", - "27531": "Ġconfuse", - "27532": "mmm", - "27533": "ĠVitamin", - "27534": "âĸijâĸij", - "27535": "Cru", - "27536": "Ġknights", - "27537": "Ġdiscard", - "27538": "Ġbishops", - "27539": "ĠWear", - "27540": "ĠGarrett", - "27541": "kan", - "27542": "ãĥŁ", - "27543": "Ġmasculine", - "27544": "capital", - "27545": "ĠAus", - "27546": "Ġfatally", - "27547": "thanks", - "27548": "ĠAU", - "27549": "ĠGut", - "27551": "Ġ00000000", - "27552": "Ġsurrog", - "27553": "ĠBIOS", - "27554": "raits", - "27555": "ĠWatts", - "27556": "Ġresurrection", - "27557": "ĠElectoral", - "27558": "ĠTips", - "27560": "Ġnutrient", - "27561": "Ġdepicting", - "27562": "Ġsprink", - "27563": "Ġmuff", - "27564": "ĠLIM", - "27565": "ĠSample", - "27566": "psc", - "27567": "ibi", - "27568": "generated", - "27569": "Ġspecimens", - "27570": "Ġdissatisf", - "27571": "Ġtailored", - "27572": "Ġholdings", - "27573": "ĠMonthly", - "27574": "ĠEat", - "27575": "poons", - "27576": "Ġnec", - "27577": "ĠCage", - "27578": "ĠLotus", - "27579": "ĠLantern", - "27580": "Ġfrontier", - "27581": "Ġpensions", - "27582": "Ġjoked", - "27583": "ĠHardy", - "27584": "=-=-=-=-", - "27585": "rade", - "27586": "UID", - "27587": "Ġrails", - "27588": "Ġemit", - "27589": "Ġslate", - "27590": "Ġsmug", - "27591": "Ġspit", - "27592": "ĠCalls", - "27593": "ĠJacobs", - "27594": "feat", - "27595": "ĠUE", - "27596": "Ġrestruct", - "27597": "Ġregeneration", - "27598": "Ġenergies", - "27599": "ĠConnor", - "27600": "OHN", - "27601": "ĠCheese", - "27602": "Ġger", - "27603": "Ġresurrect", - "27604": "management", - "27605": "NW", - "27606": "Ġpresently", - "27607": "ĠBruins", - "27608": "Member", - "27609": "ĠMang", - "27610": "idan", - "27611": "Ġboosting", - "27612": "wyn", - "27613": "+.", - "27614": "requisite", - "27615": "ĠNYPD", - "27616": "ĠMegan", - "27617": "ĠConditions", - "27618": "Ġpics", - "27619": "nesium", - "27620": "ĠRash", - "27621": "Ġ174", - "27622": "ĠDucks", - "27623": "Ġembro", - "27624": "zu", - "27625": "onian", - "27626": "religious", - "27627": "Ġcraz", - "27628": "ĠACA", - "27629": "ĠZucker", - "27630": "EMA", - "27631": "ĠPros", - "27632": "Weapon", - "27633": "ĠKnox", - "27634": "ĠArduino", - "27635": "Ġstove", - "27636": "Ġheavens", - "27637": "ĠPurchase", - "27638": "Ġherd", - "27639": "Ġfundraiser", - "27640": "Digital", - "27642": "Ġproponents", - "27643": "/âĢĭ", - "27644": "Ġjelly", - "27645": "ĠVisa", - "27646": "Ġmonks", - "27647": "Ġadvancement", - "27648": "ĠWer", - "27649": "Ġ187", - "27650": "eus", - "27651": "ertility", - "27652": "Ġfetal", - "27653": "Ġ1936", - "27654": "Lo", - "27655": "Ġoutfits", - "27656": "Ġstaircase", - "27657": "bomb", - "27658": "Ġcustomized", - "27659": "clair", - "27660": "Tree", - "27661": "Ġmapped", - "27662": "ĠConsidering", - "27663": "ĠTorres", - "27664": "Ġmethyl", - "27665": "Ġapproximate", - "27666": "Ġdoom", - "27667": "ĠHansen", - "27668": "Ġcrossover", - "27669": "Ġstandalone", - "27670": "ä¼", - "27671": "Ġinvites", - "27672": "Ġgraveyard", - "27673": "Ġhp", - "27674": "DonaldTrump", - "27675": "Ġescort", - "27676": "Gar", - "27677": "Ġpredecessors", - "27678": "Ġhay", - "27679": "Ġenzyme", - "27680": "ĠStraight", - "27681": "visors", - "27682": "Ing", - "27683": "aneously", - "27684": "ĠApplied", - "27685": "Ġfec", - "27686": "ĠDurant", - "27687": "Ġoutspoken", - "27688": "orb", - "27689": "Ġzeal", - "27690": "Ġdisgrace", - "27691": "').", - "27692": "ĠCheng", - "27694": "ĠRena", - "27695": "ĠSuicide", - "27697": "Ġoutraged", - "27698": "ĠNewman", - "27699": "ĠNvidia", - "27700": "ĠAber", - "27701": "ĠBers", - "27702": "Ġrecreation", - "27703": "Window", - "27704": "ĠDP", - "27705": "xe", - "27706": "Ġpedoph", - "27707": "Ġfallout", - "27708": "amboo", - "27709": "Ġpresentations", - "27710": "ĠApps", - "27711": "Ġhtml", - "27713": "ĠXXX", - "27714": "Ġrubbing", - "27715": "ĠLeather", - "27716": "Ġhumidity", - "27717": "seys", - "27718": "established", - "27719": "ĠUnits", - "27721": "Ġrespectable", - "27722": "Auto", - "27723": "Ġthriving", - "27724": "ĠInnovation", - "27725": "angs", - "27726": "Extra", - "27727": "regulation", - "27729": "pick", - "27730": "Examples", - "27731": "ĠCJ", - "27732": "Attack", - "27733": "Ġdracon", - "27734": "LT", - "27735": "Ġsticker", - "27736": "rers", - "27737": "Ġsunny", - "27738": "Iss", - "27739": "regulated", - "27740": "dim", - "27741": "ĠAbstract", - "27742": "Ġhusbands", - "27743": "Office", - "27744": "omination", - "27745": "itars", - "27746": "ANGE", - "27747": "ascal", - "27748": "ĠKris", - "27749": "ĠInfantry", - "27750": "Ġmalf", - "27751": "ĠAthe", - "27752": "ĠRally", - "27753": "balanced", - "27754": "........................", - "27755": "OUP", - "27756": "Ġmolecule", - "27757": "metics", - "27758": "ĠSplit", - "27759": "ĠInstructions", - "27760": "ĠNights", - "27761": "cards", - "27762": "Ġtug", - "27763": "Ġcone", - "27764": "åŃ", - "27765": "Ġtx", - "27766": "ĠDiscussion", - "27767": "Ġcatastrophe", - "27768": "ppe", - "27769": "gio", - "27770": "Ġcommunism", - "27771": "Ġhalted", - "27772": "ĠGuant", - "27773": "clean", - "27774": "ĠSched", - "27775": "ĠKanye", - "27776": "Ġwander", - "27777": "ĠSeriously", - "27778": "Ġ188", - "27779": "ennial", - "27780": "follow", - "27781": "productive", - "27782": "ĠFlow", - "27783": "ĠSail", - "27784": "Ġcraw", - "27785": "Ġsimulations", - "27786": "oru", - "27787": "angles", - "27788": "ĠNolan", - "27789": "Ġmenstru", - "27791": "Ġ207", - "27792": "aja", - "27793": "Ġcasually", - "27794": "boarding", - "27795": "Ġ222", - "27796": "ovy", - "27797": "ĠNumbers", - "27798": "umat", - "27799": "OE", - "27801": "ĠClemson", - "27802": "Ġcerts", - "27803": "Ġslid", - "27804": "ĠTribe", - "27805": "Ġtoast", - "27806": "Ġfortunes", - "27807": "Ġfals", - "27808": "ĠCommittees", - "27809": "Ġgp", - "27810": "Ġfiery", - "27811": "ĠNets", - "27812": "ĠAnime", - "27813": "Package", - "27814": "ĠCompare", - "27815": "laughter", - "27816": "infect", - "27817": "Ġatrocities", - "27818": "Ġjustices", - "27819": "Ġinsults", - "27820": "ĠVernon", - "27821": "Ġshaken", - "27822": "Ġpersona", - "27823": "estamp", - "27825": "brain", - "27826": "Ġexperimenting", - "27827": "Ken", - "27828": "ĠElectronics", - "27829": "Ġ161", - "27830": "domain", - "27831": "Ġgraphical", - "27832": "bishop", - "27833": "Ġwhopping", - "27834": "ĠEvangel", - "27835": "Ġadvertisers", - "27836": "ĠSpear", - "27837": "Ġbids", - "27838": "Ġdestroys", - "27839": "utz", - "27840": "Ġundersc", - "27841": "ĠADD", - "27842": "Ġants", - "27843": "ĠCum", - "27844": "ipples", - "27845": "ĠFill", - "27846": "Ġglanced", - "27847": "Ġindicted", - "27848": "ĠEff", - "27849": "Ġmiscon", - "27850": "ĠDesktop", - "27851": "Ġabide", - "27852": "ãĥĢ", - "27853": "ĠIo", - "27854": "ĠCoul", - "27855": "Ġcapsule", - "27856": "ĠChrys", - "27857": "MON", - "27858": "Ġundes", - "27859": "ĠIRA", - "27860": "Ġcitation", - "27861": "Ġdictate", - "27862": "ĠNetworks", - "27863": "ĠConflict", - "27864": "ĠStuff", - "27865": "xa", - "27866": "isec", - "27867": "ĠChemistry", - "27868": "Ġquarterly", - "27869": "Williams", - "27870": "anan", - "27871": "Opt", - "27872": "ĠAlexandria", - "27873": "outheastern", - "27874": "ĠSpringfield", - "27875": "ĠBlacks", - "27876": "Ġgeography", - "27878": "Ġutmost", - "27879": "ĠExxon", - "27880": "abouts", - "27881": "EVA", - "27882": "ĠEnable", - "27883": "ĠBarr", - "27884": "Ġdisagreed", - "27885": "ĠCyprus", - "27886": "Ġdementia", - "27887": "Ġlabs", - "27888": "Ġubiquitous", - "27889": "ĠLOVE", - "27890": "Ġconsolidated", - "27891": "sr", - "27892": "Ġcreamy", - "27893": "ĠTimber", - "27894": "Regardless", - "27895": "ĠCertificate", - "27896": "Ġ\"...", - "27897": "ogenous", - "27898": "Captain", - "27899": "Ġinsulting", - "27900": "ĠSoros", - "27901": "ĠInstr", - "27902": "ĠBulgaria", - "27903": "better", - "27904": "Ġsucking", - "27905": "ĠDavidson", - "27906": "atz", - "27907": "Ġcollateral", - "27908": "gif", - "27909": "Ġplagued", - "27910": "ĠCancel", - "27911": "ĠGardner", - "27912": "RB", - "27913": "Ġsixteen", - "27914": "Remove", - "27915": "uristic", - "27916": "cook", - "27917": "Rod", - "27918": "Ġcomprising", - "27919": "fle", - "27920": ")âĢĶ", - "27921": "ĠViking", - "27922": "growth", - "27923": "agonal", - "27924": "Ġsrf", - "27925": "afety", - "27926": "mot", - "27927": "Nearly", - "27928": "stown", - "27929": "ĠFactor", - "27930": "Ġautomobile", - "27931": "Ġprocedural", - "27932": "mask", - "27933": "ampires", - "27934": "Ġdisappears", - "27935": "jab", - "27937": "Ġ1951", - "27938": "needed", - "27939": "Ġdaring", - "27940": "leader", - "27941": "Ġpodium", - "27942": "Ġunhealthy", - "27943": "Ġmund", - "27944": "Ġpyramid", - "27945": "ocre", - "27946": "Ġkissed", - "27947": "Ġdreamed", - "27948": "ĠFantastic", - "27949": "ĠGly", - "27950": "åĬ", - "27951": "Ġgreatness", - "27952": "Ġspices", - "27953": "Ġmetropolitan", - "27954": "Ġcompuls", - "27955": "iets", - "27957": "ĠSham", - "27958": "ĠPyr", - "27959": "flies", - "27960": "ĠMidnight", - "27961": "Ġswallowed", - "27962": "Ġgenres", - "27963": "ĠLucky", - "27964": "ĠRewards", - "27965": "Ġdispatch", - "27966": "ĠIPA", - "27967": "ĠApply", - "27968": "Ġaven", - "27969": "alities", - "27971": "things", - "27972": "Ġ().", - "27973": "Ġmates", - "27974": "ĠSz", - "27975": "ĠCOP", - "27976": "olate", - "27977": "OFF", - "27978": "Ġrecharge", - "27979": "caps", - "27980": "ĠYorker", - "27981": "icone", - "27982": "Ġgalaxies", - "27983": "ileaks", - "27984": "Dave", - "27985": "ĠPuzz", - "27986": "ĠCeltic", - "27987": "ĠAFC", - "27989": "ĠSons", - "27990": "Ġaffirmative", - "27991": "Hor", - "27992": "Ġtutorials", - "27993": "ĠCITY", - "27994": "ĠRosa", - "27995": "ĠExtension", - "27996": "Series", - "27997": "Ġfats", - "27998": "Ġrab", - "27999": "lis", - "28000": "Ġunic", - "28001": "Ġeve", - "28002": "ĠSpin", - "28003": "Ġadulthood", - "28004": "typ", - "28005": "Ġsectarian", - "28006": "Ġcheckout", - "28007": "ĠCycl", - "28008": "Single", - "28009": "Ġmartyr", - "28010": "Ġchilling", - "28012": "oufl", - "28013": "Ġ];", - "28014": "Ġcongestion", - "28015": "mk", - "28016": "ĠWhereas", - "28017": "Ġ1938", - "28018": "urrencies", - "28019": "erion", - "28020": "Ġboast", - "28021": "ĠPatients", - "28022": "Ġchap", - "28023": "ĠBD", - "28024": "realDonaldTrump", - "28025": "Ġexamines", - "28026": "hov", - "28027": "Ġstartling", - "28028": "ĠBabylon", - "28029": "wid", - "28030": "omew", - "28031": "brance", - "28032": "ĠOdyssey", - "28033": "wig", - "28034": "Ġtorch", - "28035": "ĠVox", - "28036": "ĠMoz", - "28037": "ĠTroll", - "28038": "ĠAns", - "28039": "Similarly", - "28040": "ĠFul", - "28041": "006", - "28042": "Unless", - "28043": "ĠAlone", - "28044": "stead", - "28045": "ĠPublisher", - "28046": "rights", - "28047": "tu", - "28048": "ĠDoesn", - "28049": "Ġprofessionally", - "28050": "Ġclo", - "28051": "icz", - "28052": "Ġsteals", - "28053": "Ġá", - "28055": "Ġsturdy", - "28056": "ĠJohann", - "28057": "Ġmedals", - "28058": "Ġfilings", - "28059": "ĠFraser", - "28060": "done", - "28061": "Ġmultinational", - "28062": "Ġfeder", - "28063": "Ġworthless", - "28064": "Ġpest", - "28065": "Yesterday", - "28066": "ankind", - "28067": "Ġgays", - "28068": "Ġborne", - "28069": "ĠPOS", - "28070": "Picture", - "28071": "Ġpercentages", - "28073": "rame", - "28074": "Ġpotions", - "28075": "AMD", - "28076": "ĠLebanese", - "28077": "Ġrang", - "28078": "ĠLSU", - "28079": "ongs", - "28080": "Ġpeninsula", - "28081": "ĠClause", - "28082": "ALK", - "28083": "oha", - "28084": "ĠMacBook", - "28085": "Ġunanimous", - "28086": "Ġlenders", - "28087": "Ġhangs", - "28088": "Ġfranchises", - "28089": "orers", - "28090": "ĠUpdates", - "28091": "Ġisolate", - "28092": "andro", - "28093": "Soon", - "28094": "Ġdisruptive", - "28095": "ĠSurve", - "28096": "Ġstitches", - "28097": "ĠScorp", - "28098": "ĠDominion", - "28099": "Ġsupplying", - "28100": "Arg", - "28101": "Ġturret", - "28102": "ĠLuk", - "28103": "Ġbrackets", - "28104": "*)", - "28105": "ĠRevolutionary", - "28106": "ĠHonest", - "28107": "Ġnoticing", - "28108": "ĠShannon", - "28109": "Ġafforded", - "28110": "Ġtha", - "28111": "ĠJanet", - "28112": "!--", - "28113": "ĠNarendra", - "28114": "ĠPlot", - "28115": "Hol", - "28116": "sever", - "28117": "eenth", - "28118": "Ġobstruction", - "28119": "Ġ1024", - "28120": "staff", - "28121": "jas", - "28122": "orget", - "28123": "scenes", - "28124": "laughs", - "28125": "ĠFargo", - "28126": "crime", - "28127": "Ġorchestr", - "28128": "Ġdelet", - "28129": "iliary", - "28130": "rieved", - "28131": "Ġmilitar", - "28132": "ĠGreene", - "28133": "âĹı", - "28134": "ãģ¦", - "28135": "ĠGuards", - "28136": "Ġunleashed", - "28137": "ĠWeber", - "28138": "Ġadjustable", - "28139": "Ġcaliber", - "28140": "Ġmotivations", - "28141": "ĠÃł", - "28142": "mAh", - "28143": "ĠLanka", - "28144": "handle", - "28145": "Ġpent", - "28146": "ĠRav", - "28147": "ĠAngular", - "28148": "ĠKau", - "28149": "umbing", - "28150": "Ġphilanthrop", - "28151": "Ġdehyd", - "28152": "Ġtoxicity", - "28153": "eer", - "28154": "ĠYORK", - "28155": "witz", - "28156": "å¼", - "28157": "ĠIE", - "28158": "community", - "28159": "ĠAH", - "28160": "Ġretali", - "28161": "Ġmassively", - "28162": "ĠDaniels", - "28163": "ĠDEL", - "28164": "Ġcarcin", - "28165": "Url", - "28166": "Ġrouting", - "28167": "ĠNPCs", - "28168": "ĠRAF", - "28169": "ryce", - "28170": "Ġwaived", - "28171": "ĠGuatem", - "28172": "Everybody", - "28173": "Ġcovenant", - "28174": "Ġ173", - "28175": "Ġrelaxing", - "28176": "Ġquart", - "28177": "almost", - "28178": "Ġguarded", - "28179": "ĠSoldiers", - "28180": "ĠPLAY", - "28181": "Ġoutgoing", - "28182": "LAND", - "28183": "Ġrewrite", - "28184": "ĠMOV", - "28185": "ĠImper", - "28186": "ĠSolution", - "28187": "Ġphenomenal", - "28188": "Ġlongevity", - "28189": "Ġimpat", - "28190": "ĠNissan", - "28191": "irie", - "28192": "Ġodor", - "28193": "ĠZar", - "28194": "oks", - "28195": "Ġmilitias", - "28196": "ĠSPEC", - "28197": "Ġtolerated", - "28198": "arser", - "28199": "ĠBradford", - "28200": "+,", - "28201": "Ġsurreal", - "28202": "sf", - "28203": "Canadian", - "28204": "Ġresemblance", - "28205": "Ġcarbohydrate", - "28206": "VIEW", - "28207": "Ġaccessory", - "28208": "meal", - "28209": "largest", - "28210": "iegel", - "28211": "Someone", - "28212": "Ġtoughest", - "28213": "oso", - "28214": "Ġfunnel", - "28215": "Ġcondemnation", - "28216": "luent", - "28217": "Ġwired", - "28218": "ĠSunset", - "28219": "Jesus", - "28220": "ĠPST", - "28221": "ĠPages", - "28222": "ĠTycoon", - "28223": "ĠPF", - "28224": "Ġselections", - "28225": "Ġà¤", - "28226": "partisan", - "28227": "Ġhighs", - "28228": "ĠRune", - "28229": "Ġcrafts", - "28230": "lead", - "28231": "ĠParents", - "28232": "Ġreclaim", - "28233": "eker", - "28234": "ĠAllied", - "28235": "aeper", - "28236": "Ġlooming", - "28237": "Ġbeneficiaries", - "28238": "ĠHull", - "28239": "Students", - "28240": "Jewish", - "28241": "dj", - "28242": "Ġpact", - "28243": "template", - "28244": "ĠOfficials", - "28245": "ĠBaylor", - "28246": "Ġhemp", - "28247": "Ġyouths", - "28248": "ĠLevels", - "28249": "ĠXiao", - "28250": "ĠChes", - "28251": "Ġendeavor", - "28252": "ĠRemoved", - "28253": "Ġhippocamp", - "28254": "Hell", - "28255": "ãĤĬ", - "28257": "Ġdinosaur", - "28258": "ĠWrath", - "28259": "ĠIndonesian", - "28260": "Ġcalculator", - "28261": "ĠDictionary", - "28262": "Ġ420", - "28263": "ĠMAG", - "28264": "(_", - "28265": "!,", - "28266": "tarians", - "28267": "Ġrestricting", - "28268": "racuse", - "28269": "Ġweekday", - "28270": "OUNT", - "28271": "Ġshrugged", - "28272": "leground", - "28273": "Ġbald", - "28274": "ĠDoctors", - "28275": "Ġtouted", - "28276": "ĠMaxwell", - "28277": "Ġ214", - "28278": "Ġdiplomat", - "28279": "Ġrepression", - "28280": "Ġconstituency", - "28281": "vice", - "28282": "ranked", - "28283": "ĠNapoleon", - "28284": "gang", - "28285": "ĠForever", - "28286": "tun", - "28287": "Ġbulb", - "28288": "ĠPDT", - "28289": "ĠCisco", - "28290": "VEN", - "28291": "Ġresumed", - "28292": "Steven", - "28293": "ĠManitoba", - "28294": "Ġfabulous", - "28295": "ĠAgents", - "28297": "Ġamusing", - "28298": "ĠMysteries", - "28299": "Ġorthodox", - "28300": "floor", - "28301": "Ġquestionnaire", - "28302": "Ġpenetrate", - "28303": "Ġfilmmakers", - "28304": "ĠUnc", - "28305": "Ġstamped", - "28306": "Ġthirteen", - "28307": "Ġoutfield", - "28308": "Ġforwarded", - "28309": "Ġappra", - "28310": "Ġaided", - "28311": "try", - "28312": "Ġunfocused", - "28313": "ĠLiz", - "28314": "ĠWendy", - "28315": "ĠScene", - "28316": "Charg", - "28317": "Ġrejects", - "28318": "Ġleftist", - "28319": "ĠProvidence", - "28320": "ĠBrid", - "28321": "regn", - "28322": "Ġprophecy", - "28323": "ĠLIVE", - "28325": "Ġforge", - "28326": "ĠFML", - "28327": "Ġintrinsic", - "28328": "ĠFrog", - "28329": "Ġwont", - "28330": "ĠHolt", - "28331": "Ġfamed", - "28332": "CLUS", - "28333": "aepernick", - "28334": "ĠHate", - "28335": "ĠCay", - "28336": "Ġregistering", - "28337": "ortality", - "28338": "ropy", - "28339": "ocalyptic", - "28340": "aan", - "28341": "nav", - "28342": "Ġfascist", - "28343": "IFIED", - "28344": "Ġimplicated", - "28345": "ĠResort", - "28346": "ĠChandler", - "28347": "ĠBrick", - "28348": "Pin", - "28349": "ysc", - "28350": "Usage", - "28351": "ĠHelm", - "28352": "usra", - "28353": "âĺħâĺħ", - "28354": "ĠAbbas", - "28355": "Ġunanimously", - "28356": "Ġkeeper", - "28357": "Ġaddicted", - "28358": "???", - "28359": "Ġhelmets", - "28360": "Ġantioxid", - "28361": "apsed", - "28363": "giene", - "28364": "Ġwaits", - "28365": "Ġminion", - "28366": "raved", - "28367": "ĠPorsche", - "28368": "Ġdreaming", - "28369": "Ġ171", - "28370": "ĠCain", - "28371": "Ġunfor", - "28372": "asso", - "28373": "ĠConfiguration", - "28374": "kun", - "28375": "hardt", - "28376": "Ġnested", - "28377": "ĠLDS", - "28378": "LES", - "28379": "Ġtying", - "28380": "enos", - "28381": "Ġcue", - "28382": "ĠMarqu", - "28383": "skirts", - "28384": "Ġclicked", - "28385": "Ġexpiration", - "28386": "ĠAccordingly", - "28387": "ĠWC", - "28388": "Ġblessings", - "28389": "Ġaddictive", - "28390": "ĠNarr", - "28391": "yx", - "28392": "ĠJaguars", - "28393": "Ġrents", - "28394": "ĠSiber", - "28395": "Ġtipped", - "28396": "ousse", - "28397": "ĠFitzgerald", - "28398": "Ġhierarch", - "28399": "outine", - "28400": "Ġwavelength", - "28401": ">.", - "28402": "chid", - "28403": "ĠProcessing", - "28404": "/+", - "28405": "ranking", - "28406": "Easy", - "28407": "ĠConstruct", - "28408": "Ġtet", - "28409": "insured", - "28410": "HUD", - "28411": "Ġquoting", - "28412": "Ġcommunicated", - "28413": "inx", - "28414": "Ġinmate", - "28415": "Ġerected", - "28416": "ĠAbsolutely", - "28417": "ĠSurely", - "28418": "Ġunim", - "28419": "ĠThrone", - "28420": "heid", - "28421": "Ġclaws", - "28422": "Ġsuperstar", - "28423": "ĠLenn", - "28424": "ĠWhis", - "28425": "Uk", - "28426": "abol", - "28427": "Ġsket", - "28428": "ĠNiet", - "28429": "Ġperks", - "28430": "Ġaffinity", - "28431": "Ġopenings", - "28432": "phasis", - "28433": "Ġdiscriminate", - "28434": "Tip", - "28435": "vc", - "28436": "Ġgrinding", - "28437": "ĠJenny", - "28438": "Ġasthma", - "28439": "holes", - "28440": "ĠHomer", - "28441": "Ġregisters", - "28442": "ĠGlad", - "28443": "Ġcreations", - "28444": "Ġlithium", - "28445": "Ġapplause", - "28446": "until", - "28447": "Justice", - "28448": "ĠTurks", - "28449": "Ġscandals", - "28450": "Ġbake", - "28451": "tank", - "28452": "Mech", - "28453": "ĠMeans", - "28454": "ĠMaid", - "28455": "Republicans", - "28456": "isal", - "28457": "windows", - "28458": "ĠSantos", - "28459": "Ġvegetation", - "28461": "tri", - "28462": "Ġflux", - "28463": "insert", - "28464": "Ġclarified", - "28465": "Ġmortg", - "28466": "ĠChim", - "28467": "ĠTort", - "28468": "Ġdisclaim", - "28469": "metal", - "28470": "ĠAside", - "28471": "Ġinduction", - "28472": "Ġinfl", - "28473": "Ġatheists", - "28474": "amph", - "28475": "Ġether", - "28476": "ĠVital", - "28477": "ĠBuilt", - "28478": "Mind", - "28479": "Ġweaponry", - "28480": "SET", - "28481": "Ġ186", - "28482": "admin", - "28483": "gam", - "28484": "contract", - "28485": "afa", - "28486": "Ġderivatives", - "28487": "Ġsnacks", - "28488": "Ġchurn", - "28489": "Econom", - "28490": "Ġcapped", - "28491": "ĠUnderstanding", - "28492": "ĠHers", - "28493": "ĠIz", - "28494": "Ġduct", - "28495": "IENT", - "28496": "aughty", - "28497": "ĠâľĶ", - "28498": "ĠNP", - "28499": "Ġsailing", - "28500": "Initialized", - "28501": "Ġted", - "28502": "Ġreactors", - "28503": "ĠLomb", - "28504": "Ġchoke", - "28505": "ĠWorm", - "28506": "Ġadmiration", - "28507": "Ġswung", - "28508": "ensibly", - "28509": "Ġrash", - "28510": "ĠGoals", - "28511": "ĠImportant", - "28512": "Shot", - "28513": "ĠRas", - "28514": "Ġtrainers", - "28515": "ĠBun", - "28516": "Working", - "28517": "Ġharmed", - "28518": "ĠPandora", - "28519": "ĠLTE", - "28520": "Ġmushroom", - "28521": "ĠCHAR", - "28522": "ĠFee", - "28523": "ĠMoy", - "28524": "Born", - "28525": "oliberal", - "28526": "ĠMartial", - "28527": "Ġgentlemen", - "28528": "Ġlingering", - "28529": "Official", - "28530": "Ġgraffiti", - "28531": "ĠNames", - "28532": "Der", - "28533": "Ġquint", - "28534": "istrate", - "28535": "azeera", - "28536": "ĠNOTICE", - "28537": "ĠFlorence", - "28538": "Ġpayable", - "28539": "Ġdepicts", - "28540": "ĠSpecies", - "28541": "Heart", - "28542": "âĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢ", - "28543": "Ġenclosed", - "28544": "Increases", - "28545": "Daily", - "28546": "ĠLis", - "28547": "Ġenactment", - "28548": "ĠBacon", - "28549": "ĠSteele", - "28550": "demand", - "28551": "Ġ183", - "28552": "Ġmouths", - "28553": "Ġstranded", - "28554": "Ġenhancement", - "28555": "011", - "28556": "ĠWhats", - "28557": "Ġhealed", - "28558": "eny", - "28559": "ĠRab", - "28560": "Ġ340", - "28561": "ĠLabyrinth", - "28562": "roach", - "28563": "ĠYosh", - "28564": "ĠClippers", - "28565": "Ġconcerts", - "28566": "Internet", - "28568": "Ġstickers", - "28569": "Ġtermed", - "28570": "ĠAxe", - "28571": "Ġgrandparents", - "28572": "France", - "28573": "ĠClim", - "28574": "ĠUh", - "28575": "ulic", - "28576": "Ġthrill", - "28577": "centric", - "28578": "ĠOverview", - "28579": "ĠConduct", - "28580": "Ġsubstantive", - "28581": "Ġ182", - "28582": "mur", - "28583": "Ġstray", - "28584": "ĠCoff", - "28585": "Ġrepetitive", - "28586": "ĠForgotten", - "28587": "Ġqualification", - "28588": "ewitness", - "28589": "ĠZimbabwe", - "28590": "Ġsimulated", - "28591": "ĠJD", - "28593": "ĠWare", - "28594": "Ġunsc", - "28595": "Times", - "28596": "Ġsummons", - "28597": "Ġdisconnected", - "28598": "Ġ184", - "28599": "cius", - "28600": "ĠGujar", - "28601": "odka", - "28602": "Ġerase", - "28603": "ĠTobacco", - "28604": "elected", - "28605": "Ġuncont", - "28606": "ĠShepard", - "28607": "ĠLamp", - "28608": "Ġalerted", - "28609": "Ġoperative", - "28610": "arna", - "28611": "uint", - "28612": "Ġnegligence", - "28613": "acements", - "28614": "Ġsupra", - "28615": "Ġprevail", - "28616": "ĠShark", - "28617": "Ġbelts", - "28618": "ãģ«", - "28619": "Ġtighter", - "28620": "Engineers", - "28621": "Ġinactive", - "28622": "Ġexponent", - "28623": "ĠWillie", - "28624": "aples", - "28625": "Ġheir", - "28626": "ĠHits", - "28627": "iann", - "28628": "ĠSays", - "28629": "Ġcurrents", - "28630": "ĠBengal", - "28631": "Ġarist", - "28632": "Buffer", - "28633": "Ġbreeze", - "28634": "ĠWesley", - "28635": "Cola", - "28636": "Ġpronoun", - "28637": "Ġdeed", - "28638": "ĠKling", - "28639": "Ġoft", - "28640": "Ġinflict", - "28641": "Ġpunishing", - "28642": "Ġnm", - "28643": "iku", - "28644": "ODUCT", - "28645": "014", - "28646": "Ġsubsidy", - "28647": "ĠDEA", - "28648": "ĠHerbert", - "28649": "ĠJal", - "28650": "Bank", - "28651": "Ġdeferred", - "28652": "Ġshipment", - "28653": "Bott", - "28654": "Ġalle", - "28655": "bearing", - "28656": "HTML", - "28657": "Offline", - "28658": "Ġ213", - "28659": "Ġscrolling", - "28660": "Ġscanned", - "28661": "ĠLibyan", - "28662": "ĠTOP", - "28663": "chrom", - "28664": "dt", - "28665": "column", - "28666": "PsyNetMessage", - "28667": "Zero", - "28668": "Ġtorso", - "28669": "050", - "28670": "âķIJ", - "28671": "Ġimperson", - "28672": "ĠSchwartz", - "28673": "udic", - "28674": "Ġpissed", - "28675": "ĠSapp", - "28677": "ĠISPs", - "28678": "ogl", - "28679": "Ġsupervised", - "28680": "Ġadolescent", - "28681": "Ġattained", - "28682": "ĠDelivery", - "28683": "ĠBunny", - "28684": "Ġ1937", - "28685": "Ġminiature", - "28686": "Ġos", - "28687": "Ġ370", - "28689": "ĠMourinho", - "28690": "Ġinnate", - "28691": "Ġtempo", - "28692": "ĠNM", - "28693": "ĠFallen", - "28694": "009", - "28695": "Ġprovocative", - "28696": "Streamer", - "28697": "ĠBenedict", - "28698": "ĠBolshe", - "28699": "Ġturtle", - "28700": "ĠPCB", - "28701": "ĠEqual", - "28702": "Director", - "28703": "ĠRend", - "28704": "Ġfluids", - "28705": "Authorities", - "28706": "Ġcousins", - "28707": "requency", - "28708": "ĠNeighbor", - "28709": "sets", - "28710": "shared", - "28711": "Charles", - "28712": "password", - "28713": "Ġgears", - "28714": "Ġ211", - "28715": "ĠHardware", - "28716": "rika", - "28717": "Ġupstream", - "28718": "Hom", - "28719": "Ġdisproportionately", - "28720": "ivities", - "28721": "Ġundefined", - "28722": "Ġelectrons", - "28723": "Ġcommemor", - "28724": "Eventually", - "28725": "Ġ><", - "28726": "Ġirresponsible", - "28728": "ĠReleased", - "28729": "ĠOVER", - "28730": "ĠIGN", - "28731": "ĠBread", - "28732": "stellar", - "28733": "ĠSage", - "28734": "tted", - "28735": "damage", - "28736": "edition", - "28737": "ĠPrec", - "28738": "Ġlime", - "28739": "Ġconfinement", - "28740": "Ġcalorie", - "28741": "weapon", - "28742": "Ġdiffering", - "28743": "ĠSina", - "28744": "mys", - "28745": "amd", - "28746": "Ġintricate", - "28747": "kk", - "28748": "ĠPAT", - "28749": "ão", - "28750": "stones", - "28751": "links", - "28752": "Ġranch", - "28753": "Semitic", - "28754": "Ġdifferentiate", - "28755": "ĠSinger", - "28756": "occupied", - "28757": "Ġfortress", - "28758": "cmd", - "28759": "Ġinterception", - "28760": "ĠAnkara", - "28761": "Ġrept", - "28762": "ĠSolitaire", - "28763": "Ġremake", - "28764": "pred", - "28765": "Ġdared", - "28766": "autions", - "28767": "ĠBACK", - "28768": "Running", - "28769": "Ġdebugging", - "28770": "Ġgraphs", - "28772": "ĠNigel", - "28773": "Ġbun", - "28774": "Ġpillow", - "28775": "Ġprogressed", - "28776": "fashioned", - "28777": "Ġobedience", - "28778": "ERN", - "28779": "Ġrehears", - "28780": "Cell", - "28781": "tl", - "28782": "Sher", - "28783": "Ġherald", - "28784": "ĠPayment", - "28785": "ĠCory", - "28786": "ĠDept", - "28787": "Ġrepent", - "28788": "ĠWeak", - "28789": "uckland", - "28790": "Ġpleasing", - "28791": "Ġshortages", - "28792": "Ġjurors", - "28793": "ĠKab", - "28794": "qqa", - "28795": "Anti", - "28796": "Ġwow", - "28797": "ĠRCMP", - "28798": "Ġtsun", - "28799": "ĠSic", - "28800": "Ġcomprises", - "28801": "Ġspies", - "28802": "Ġprecinct", - "28803": "nu", - "28804": "Ġurges", - "28805": "Ġtimed", - "28806": "Ġstripes", - "28807": "ĠBoots", - "28808": "Ġyen", - "28809": "Advanced", - "28810": "Ġdiscrete", - "28811": "ĠArchangel", - "28812": "employment", - "28813": "Diff", - "28814": "Ġmonuments", - "28815": "Ġ209", - "28816": "worker", - "28817": "Ġ196", - "28818": "ĠIg", - "28819": "utterstock", - "28820": "TPS", - "28821": "Jac", - "28822": "Ġhomelessness", - "28823": "Ġcommentator", - "28824": "Ġracially", - "28825": "fing", - "28826": "seed", - "28827": "Ele", - "28828": "ellation", - "28829": "Ġethanol", - "28830": "Ġparish", - "28831": "ĠDong", - "28832": "ĠAwakening", - "28833": "Ġdeviation", - "28834": "ĠBearing", - "28835": "ĠTsuk", - "28836": "Ġrecess", - "28837": "Ġlymph", - "28838": "ĠCannabis", - "28839": "åľ", - "28840": "ĠNEWS", - "28841": "Ġdra", - "28842": "ĠStefan", - "28843": "ĠWrong", - "28844": "ĠSAM", - "28845": "Ġloosely", - "28846": "Ġinterpreter", - "28847": "ĠPlain", - "28848": "Government", - "28849": "Ġbigotry", - "28850": "Ġgrenades", - "28851": "avez", - "28852": "pictured", - "28853": "Ġmandated", - "28854": "ĠMonk", - "28855": "ĠPedro", - "28856": "Ġlava", - "28858": "Ġcynical", - "28859": "ĠScrolls", - "28860": "locks", - "28861": "Mp", - "28862": "Ġcongregation", - "28863": "ornings", - "28864": "phil", - "28865": "ĠIbid", - "28866": "Ġferv", - "28867": "Ġdisappearing", - "28868": "Ġarrogant", - "28869": "syn", - "28870": "ĠMaver", - "28871": "ĠSuit", - "28873": "Ġabbre", - "28874": "ackers", - "28875": "Pa", - "28876": "ĠYel", - "28877": "Whenever", - "28878": "Ġ235", - "28879": "ĠVine", - "28880": "ĠAnat", - "28881": "Ġextinct", - "28882": "LET", - "28883": "Ġexecutable", - "28884": "VERS", - "28885": "oxide", - "28886": "DNA", - "28887": "ĠPrel", - "28888": "Ġresentment", - "28889": "Ġcomprise", - "28890": "ĠAviv", - "28891": "Ġinterceptions", - "28892": "Ġprolific", - "28893": "INA", - "28894": "ĠErin", - "28895": "thought", - "28897": "ĠPsychiatry", - "28898": "unky", - "28899": "chemist", - "28900": "Ho", - "28901": "ĠMcCoy", - "28902": "Ġbricks", - "28903": "Los", - "28904": "rily", - "28905": "ĠUSSR", - "28906": "Ġrud", - "28907": "Ġlaud", - "28908": "ĠWise", - "28909": "ĠEmerald", - "28910": "Ġrevived", - "28911": "Ġdamned", - "28912": "ĠRepair", - "28913": "idem", - "28914": "ctica", - "28915": "Ġpatriarch", - "28916": "ĠNurs", - "28917": "meg", - "28918": "Ġcheapest", - "28919": "reements", - "28920": "empty", - "28921": "ĠCelebr", - "28922": "Ġdeprivation", - "28923": "chanted", - "28924": "ĠThumbnails", - "28925": "Energy", - "28926": "ĠEthan", - "28927": "ĠQing", - "28928": "Ġopposes", - "28929": "WIND", - "28930": "vik", - "28931": "ĠMau", - "28932": "ĠSUB", - "28934": "GRE", - "28935": "ĠVolunte", - "28936": "nton", - "28937": "Cook", - "28938": "åIJ", - "28939": "esque", - "28940": "Ġplummet", - "28941": "Ġsuing", - "28942": "Ġpronounce", - "28943": "Ġresisting", - "28944": "ĠFishing", - "28945": "ĠTrials", - "28946": "Ġyell", - "28947": "Ġ310", - "28948": "Ġinduct", - "28949": "Ġpersonalized", - "28950": "often", - "28951": "Reb", - "28952": "EMBER", - "28953": "Ġviewpoint", - "28954": "Ġexistential", - "28955": "())", - "28956": "remove", - "28957": "MENTS", - "28958": "lasses", - "28959": "Ġevapor", - "28960": "Ġaisle", - "28961": "meta", - "28962": "Ġreflective", - "28963": "Ġentitlement", - "28964": "Ġdevised", - "28965": "music", - "28966": "ascade", - "28967": "Ġwinding", - "28968": "offset", - "28969": "Ġaccessibility", - "28970": "kered", - "28971": "Better", - "28972": "ĠJohnston", - "28973": "thinking", - "28974": "Snow", - "28975": "ĠCroatia", - "28976": "ĠAtomic", - "28979": "Ġtextbook", - "28980": "ĠSixth", - "28981": "ĠاÙĦ", - "28982": "Ġslider", - "28983": "ĠBurger", - "28984": "bol", - "28985": "Sync", - "28986": "Ġgrandchildren", - "28987": "Ġcerv", - "28988": "+)", - "28989": "Ġeternity", - "28990": "Ġtweeting", - "28991": "Ġspeculative", - "28992": "Ġpivotal", - "28993": "ĠWP", - "28994": "ĠTER", - "28995": "ynamic", - "28996": "Ġupl", - "28997": "ĠCats", - "28998": "perhaps", - "28999": "Ġclassmates", - "29000": "Ġblatant", - "29001": "'-", - "29002": "Ġlakh", - "29003": "antine", - "29004": "ĠBorg", - "29005": "iom", - "29006": "/(", - "29007": "ĠAthletic", - "29008": "Ġsar", - "29009": "OTA", - "29010": "ĠHoffman", - "29011": "Nevertheless", - "29012": "Ġadorable", - "29013": "Ġspawned", - "29014": "Associated", - "29015": "ĠDomestic", - "29016": "Ġimplant", - "29017": "ĠLuxem", - "29018": "ĠKens", - "29019": "Ġpumps", - "29020": "ĠSAT", - "29021": "Attributes", - "29023": "avour", - "29024": "Ġcentralized", - "29025": "ĠTN", - "29026": "Ġfreshly", - "29027": "ĠAchieve", - "29028": "Ġoutsiders", - "29029": "herty", - "29030": "ĠRee", - "29031": "ĠTowers", - "29032": "ĠDart", - "29033": "akable", - "29034": "Ġmp", - "29035": "ĠHeavenly", - "29036": "Ġripe", - "29037": "ĠCaroline", - "29038": "ryan", - "29039": "Ġclassics", - "29040": "Ġretiring", - "29041": "Ġ228", - "29042": "Ġah", - "29043": "Ġdealings", - "29044": "Ġpunching", - "29045": "ĠChapman", - "29046": "Options", - "29047": "maxwell", - "29048": "volume", - "29049": "Ġstal", - "29050": "Ġexported", - "29051": "ĠQuite", - "29052": "Ġnumerical", - "29053": "Burn", - "29054": "Fact", - "29055": "ĠKeystone", - "29056": "Ġtrending", - "29057": "Ġaltering", - "29058": "ĠAfricans", - "29060": "ĠMN", - "29061": "ĠKnock", - "29062": "Ġtemptation", - "29063": "Ġprestige", - "29064": "Overview", - "29065": "ĠTraditional", - "29066": "ĠBahrain", - "29067": "Private", - "29068": "ĠHOU", - "29069": "Ġbarr", - "29070": "ĠTat", - "29071": "Cube", - "29072": "USD", - "29073": "ĠGrande", - "29074": "ĠGat", - "29075": "ĠFlo", - "29076": "Ġresides", - "29077": "Ġindec", - "29078": "volent", - "29079": "Ġperpetual", - "29080": "ubes", - "29081": "Ġworldview", - "29082": "ĠQuantum", - "29083": "Ġfiltered", - "29084": "Ġensu", - "29085": "orgetown", - "29086": "ERSON", - "29087": "ĠMild", - "29089": "OTT", - "29090": "Ã¥", - "29091": "Ġvitamins", - "29092": "Ġribbon", - "29093": "Ġsincerely", - "29094": "ĠHin", - "29095": "Ġeighteen", - "29096": "Ġcontradictory", - "29097": "Ġglaring", - "29098": "Ġexpectancy", - "29099": "Ġconspir", - "29100": "Ġmonstrous", - "29101": "Ġ380", - "29102": "reci", - "29103": "Ġhandic", - "29104": "Ġpumped", - "29105": "Ġindicative", - "29106": "Ġrapp", - "29107": "Ġavail", - "29108": "ĠLEGO", - "29109": "ĠMarijuana", - "29111": "erton", - "29112": "Ġtwentieth", - "29113": "################################", - "29114": "ĠSwamp", - "29115": "Ġvaluation", - "29116": "Ġaffiliates", - "29117": "adjusted", - "29118": "ĠFacility", - "29120": "Ġenzymes", - "29121": "itudinal", - "29122": "Ġimprint", - "29123": "Site", - "29124": "Ġinstaller", - "29125": "ĠTRA", - "29126": "mology", - "29127": "linear", - "29128": "ĠCollective", - "29129": "igating", - "29130": "ĠToken", - "29131": "Ġspeculated", - "29132": "KN", - "29133": "ĠCly", - "29134": "ority", - "29135": "Ġdefer", - "29136": "Ġinspectors", - "29137": "approved", - "29138": "RM", - "29139": "ĠSuns", - "29140": "Ġinforming", - "29141": "ĠSyracuse", - "29142": "ibli", - "29144": "Ġglove", - "29145": "Ġauthorize", - "29146": "â̦â̦â̦â̦â̦â̦â̦â̦", - "29147": "ĠCruise", - "29148": "Ġcontracting", - "29149": "shell", - "29150": "IFE", - "29151": "ĠJewel", - "29152": "pract", - "29153": "ĠPhotoshop", - "29154": "ĠKnowing", - "29155": "harm", - "29156": "Ġattractions", - "29157": "adan", - "29158": "etus", - "29159": "018", - "29160": "wagen", - "29161": "Alt", - "29162": "Ġmultiply", - "29163": "Ġequilibrium", - "29164": ":{", - "29165": "ĠFighters", - "29166": "ĠEdgar", - "29167": "Ġfourteen", - "29168": "Govern", - "29169": "Ġmisuse", - "29170": "Ġabusing", - "29171": "Ġancestry", - "29172": "ramer", - "29174": "Ġworms", - "29175": "Ġthicker", - "29176": "ĠCombine", - "29177": "Ġpeasants", - "29178": "Ġvind", - "29179": "Ġconquest", - "29180": "Ġmocked", - "29181": "Ġcinnamon", - "29182": "ĠCald", - "29183": "ĠGallup", - "29184": "Ġavoidance", - "29185": "Ġincarnation", - "29186": "ĠStrat", - "29187": "Ġtasted", - "29188": "enta", - "29189": "ĠNeal", - "29190": "pared", - "29191": "Ġterminology", - "29192": "jection", - "29193": "Scientists", - "29194": "ĠINS", - "29195": "ĠDee", - "29196": "Ġdirectories", - "29197": "Road", - "29198": "ĠShap", - "29199": "bright", - "29200": "ĠDirectors", - "29201": "ĠColumn", - "29202": "Ġbob", - "29203": "Ġpreferably", - "29204": "Ġglitch", - "29205": "furt", - "29206": "Ġeg", - "29207": "idis", - "29208": "CBC", - "29209": "Ġsurrendered", - "29210": "Ġtestament", - "29212": "uggest", - "29213": "ĠNil", - "29214": "another", - "29215": "Ġpathetic", - "29216": "ĠDonna", - "29217": "Ġ218", - "29218": "ĠAvery", - "29219": "Ġwhiskey", - "29220": "Ġfixture", - "29221": "ĠConquest", - "29222": "Ġbets", - "29223": "Occ", - "29224": "ĠLeicester", - "29225": "].\"", - "29226": "Ġ));", - "29227": "Ġflashes", - "29229": "Ġmasked", - "29230": "gebra", - "29231": "Ġcomputed", - "29232": "chel", - "29233": "auder", - "29234": "Ġdefeats", - "29235": "ĠLiberation", - "29236": "ĠOsama", - "29237": "ĠVive", - "29238": "Changes", - "29239": "Channel", - "29240": "Ġtariffs", - "29241": "Ġmage", - "29242": "ĠSax", - "29243": "Ġinadvertently", - "29244": "ĠCRE", - "29245": "ĠReaper", - "29246": "inky", - "29247": "grading", - "29248": "Ġstereotyp", - "29249": "Ġcurl", - "29250": "ĠFANT", - "29251": "Ġframeworks", - "29252": "Mom", - "29253": "ĠAnch", - "29254": "Ġflavour", - "29255": "carbon", - "29256": "Ġpermitting", - "29257": "letcher", - "29258": "ĠMozilla", - "29259": "ĠParking", - "29260": "ĠChamp", - "29261": "Scroll", - "29262": "Ġmurderer", - "29263": "Ġrested", - "29264": "Ġowes", - "29265": "ĠPoss", - "29266": "ADD", - "29267": "IFF", - "29268": "resolution", - "29269": "ĠMining", - "29270": "Ġcomparative", - "29271": "Dim", - "29272": "Ġneighbouring", - "29273": "ĠAST", - "29274": "ĠToxic", - "29275": "Ġbiases", - "29276": "Ġgunfire", - "29277": "urous", - "29278": "ĠMoment", - "29280": "Ġpervasive", - "29281": "ttp", - "29282": "ĠNormally", - "29283": "rir", - "29284": "Sarah", - "29285": "ĠAlbany", - "29286": "Ġunsett", - "29287": "ĠSMS", - "29288": "ipers", - "29289": "layer", - "29290": "ĠWhites", - "29291": "uple", - "29292": "Ġturbo", - "29293": "ĠLeeds", - "29294": "Ġthats", - "29295": "ĠMiner", - "29296": "MER", - "29297": "ĠReign", - "29298": "Ġperme", - "29299": "ĠBlitz", - "29300": "Ġ1934", - "29301": "Ġintimidating", - "29302": "tube", - "29303": "Ġeccentric", - "29304": "abolic", - "29305": "boxes", - "29306": "ĠAssociates", - "29307": "votes", - "29308": "Ġsimulate", - "29309": "umbo", - "29310": "astery", - "29311": "Ġshipments", - "29312": "FFFF", - "29313": "anth", - "29314": "Ġseasoned", - "29315": "Ġexperimentation", - "29316": "âĸł", - "29317": "laws", - "29318": "Meet", - "29319": "iddles", - "29320": "antics", - "29321": "Rating", - "29322": "ISIS", - "29323": "hift", - "29324": "Ġfronts", - "29325": "buf", - "29326": "017", - "29327": "Ġunatt", - "29328": "ĠDil", - "29329": "leases", - "29330": "ĠGardens", - "29332": "touch", - "29333": "vell", - "29335": "Ġ=====", - "29336": "saving", - "29337": "Ġerosion", - "29338": "ĠQuin", - "29339": "Ġearns", - "29340": "Ġaccomplishment", - "29341": "ĠWei", - "29342": "Ġ<[", - "29343": "_____", - "29344": "Ġirrig", - "29345": "ĠTeddy", - "29346": "Ġconquered", - "29347": "ĠArmored", - "29348": "Ġasserts", - "29349": "Ġmanipulating", - "29350": "ré", - "29351": "Ġtranscripts", - "29352": "Gallery", - "29353": "Ġplotting", - "29354": "Neil", - "29355": "Ġbetrayal", - "29356": "loader", - "29357": "ĠSul", - "29358": "Ġdisplacement", - "29359": "Ġroyalty", - "29360": "ĠWI", - "29361": "heit", - "29362": "ĠDevices", - "29363": "allel", - "29364": "Ġmunicipalities", - "29365": "Ġcanal", - "29366": "Stars", - "29367": "ĠUAE", - "29368": "Ġ\"â̦", - "29369": "ĠCU", - "29370": "above", - "29371": "Ġresonance", - "29372": "ĠguiActiveUn", - "29373": "added", - "29374": "ĠBraves", - "29375": "ĠIbn", - "29376": "Ġhereby", - "29377": "ĠBRE", - "29378": "Ġshareholder", - "29379": "ĠHir", - "29380": "ĠJi", - "29381": "Ġstrangely", - "29382": "Ġadmired", - "29383": "Ġplight", - "29384": "Ġbachelor", - "29385": "ĠPole", - "29386": "ciplinary", - "29387": "Tony", - "29388": "ĠArmenian", - "29389": "Ġunman", - "29390": "ĠZionist", - "29391": "Stage", - "29392": "iscover", - "29393": "Ġautomotive", - "29394": "Ġsidelines", - "29395": "Ġslick", - "29396": "ĠRenaissance", - "29397": "ĠFUN", - "29398": "Images", - "29399": "ĠHaj", - "29400": "Ġping", - "29401": "Ġshortcut", - "29402": "ĠBlvd", - "29403": "ĠLooks", - "29404": "Ġbursts", - "29405": "Ġclamp", - "29406": "Ġmish", - "29407": "Ġsorting", - "29408": "Ġpatriot", - "29409": "Ġcorrectness", - "29410": "ĠScandinav", - "29411": "ĠCavaliers", - "29412": "python", - "29413": "azar", - "29414": "Ġ375", - "29415": "ĠJaune", - "29417": "Ġdetrimental", - "29418": "Ġstabbing", - "29419": "Ġpoisoned", - "29420": "Ġfountain", - "29421": "ocent", - "29422": "orst", - "29423": "ĠMari", - "29424": "Ġrains", - "29425": "ĠOvers", - "29426": "ĠInstitution", - "29427": "udget", - "29428": "AMY", - "29429": "tale", - "29430": "ĠKR", - "29431": "ĠPrices", - "29432": "Ġheadaches", - "29433": "Ġlandsl", - "29434": "ĠAura", - "29435": "Bonus", - "29436": "ĠZhao", - "29437": "ĠHip", - "29438": "Ġhops", - "29439": "ĠKurdistan", - "29440": "Ġexploiting", - "29441": "ryn", - "29442": "Ġhypocrisy", - "29443": "opening", - "29444": "Ġgunshot", - "29445": "Ġwed", - "29446": "interstitial", - "29447": "Interstitial", - "29448": "Ġamen", - "29449": "Breaking", - "29450": "Ġmarketed", - "29451": "Wire", - "29452": "ĠCrowd", - "29453": "Continue", - "29454": "ĠKnown", - "29455": "ĠEffective", - "29456": "orean", - "29457": "izons", - "29458": "Joseph", - "29459": "Ġescalation", - "29460": "username", - "29461": "Ġcurtain", - "29462": "ATES", - "29463": "ĠPAR", - "29464": "ĠMiy", - "29465": "Ġcounterfe", - "29466": "lene", - "29467": "Ġcontenders", - "29468": "daily", - "29469": "ĠAsc", - "29470": "ĠPhillip", - "29471": "mostly", - "29472": "Ġfilename", - "29473": "hene", - "29474": "Ġresembling", - "29475": "Ġstaging", - "29476": "ĠChloe", - "29477": "Ġwiring", - "29478": "Hon", - "29479": "ĠRenew", - "29480": "ottage", - "29481": "ĠHybrid", - "29482": "much", - "29483": "Ġstrokes", - "29484": "Ġpolicymakers", - "29485": "APTER", - "29486": "ĠArkham", - "29487": "plot", - "29488": "Ġassistants", - "29489": "Ġdeport", - "29490": "ĠSega", - "29491": "Ġinfluenza", - "29492": "ĠCursed", - "29493": "ĠKobe", - "29494": "Ġskinny", - "29495": "Provider", - "29496": "ĠRip", - "29497": "Ġincremental", - "29498": "products", - "29499": "BF", - "29500": "Ġdome", - "29501": "ĠCredits", - "29502": "Ġlosers", - "29503": "ints", - "29504": "ĠBetty", - "29505": "ĠTalent", - "29506": "ĠDAM", - "29507": "Lv", - "29508": "Ess", - "29509": "Ġdens", - "29510": "temp", - "29511": "Judge", - "29512": "odic", - "29513": "Ġ'(", - "29514": "URES", - "29515": "etsk", - "29516": "VO", - "29517": "Ġretrieved", - "29518": "Ġarchitects", - "29519": "Ùĩ", - "29520": "Ġethic", - "29521": "ĠSecondary", - "29522": "stocks", - "29523": "adia", - "29524": "Ġ325", - "29525": "ĠOpinion", - "29526": "Ġsimultaneous", - "29527": "Ġdizz", - "29528": "ulp", - "29529": "Ġsmuggling", - "29530": "ippery", - "29531": "Random", - "29532": "facing", - "29533": "ĠDas", - "29534": "Ġstockp", - "29535": "Ġdisclosures", - "29536": "pointer", - "29537": "Ġcoral", - "29538": "ĠSelection", - "29539": "ĠPike", - "29540": "ivalent", - "29541": "Ġruthless", - "29542": "ĠRim", - "29543": "Ġensuing", - "29544": "ĠExperiment", - "29545": "Ġcongressman", - "29546": "Ġbeliever", - "29547": "Ġunspecified", - "29548": "ĠMord", - "29549": "Ġknowledgeable", - "29550": "ĠVERY", - "29551": "TX", - "29552": "Ġstraps", - "29553": "Ġturf", - "29554": "apeshifter", - "29555": "Ġmarital", - "29556": "Ġflock", - "29557": "ãģĨ", - "29559": "AMES", - "29560": "ĠOpposition", - "29561": "Ġtreasures", - "29562": "ĠGOD", - "29563": "Ġmodeled", - "29564": "ĠWORLD", - "29565": "Ġ([", - "29566": "ĠUsage", - "29567": "HF", - "29568": "Ġ$(", - "29569": "ussed", - "29570": "Ġpioneer", - "29571": "Eight", - "29572": "parse", - "29573": "bread", - "29574": "ritz", - "29575": "ĠMiranda", - "29576": "ĠKant", - "29577": "++)", - "29578": "oren", - "29579": "Ġprovoked", - "29580": "Ġbreeds", - "29581": "ĠIncludes", - "29582": "ĠPastebin", - "29583": "ĠFlip", - "29584": "Java", - "29585": "Ġbrink", - "29586": "Ġrumored", - "29587": "Ġunseen", - "29588": "Ġgarnered", - "29589": "ĠDefin", - "29590": "alted", - "29591": "Ġtattoos", - "29592": "Ġhesitation", - "29593": "isitions", - "29594": "ĠWeaver", - "29595": "ĠReporting", - "29596": "Ġtherapies", - "29597": "Ġconsultants", - "29598": "Ġresidual", - "29599": "ĠMali", - "29600": "ĠRoma", - "29601": "iago", - "29602": "ĠResidents", - "29603": "ubi", - "29604": "Ġremedies", - "29605": "Ġadaptive", - "29606": "ĠAlive", - "29607": "ĠBarcl", - "29608": "Ġwallets", - "29609": "crypt", - "29610": "etermination", - "29611": "ĠPelosi", - "29612": "Ġslipping", - "29613": "otonin", - "29614": "Ġalliances", - "29615": "patrick", - "29616": "iris", - "29617": "Ġorth", - "29618": "ĠPerkins", - "29619": "ĠDeV", - "29620": "ĠGets", - "29621": "Ġdrying", - "29622": "gee", - "29623": "forest", - "29624": "ĠForget", - "29625": "orem", - "29627": "Ġvaguely", - "29628": "ĠDion", - "29629": "ĠPorn", - "29630": "ĠHOW", - "29631": "Ġpneum", - "29632": "Ġrubble", - "29633": "ĠTaste", - "29634": "encia", - "29635": "ĠGel", - "29636": "Ġdst", - "29637": "Ġ245", - "29638": "ĠMorocco", - "29639": "inflamm", - "29640": "ĠTwins", - "29641": "Ġbots", - "29642": "daughter", - "29643": "ĠBalk", - "29644": "Ġbrethren", - "29645": "Ġlogos", - "29646": "Ġgobl", - "29647": "fps", - "29648": "Ġsubdivision", - "29649": "Ġpawn", - "29650": "Ġsqueezed", - "29651": "Ġmorale", - "29652": "ĠDW", - "29653": "'\"", - "29654": "Ġknot", - "29655": "ooky", - "29656": "Ġdivisive", - "29657": "Ġboosted", - "29658": "chy", - "29659": "ãĥIJ", - "29660": "ifact", - "29661": "Ġnewcomers", - "29662": "ĠWrestling", - "29663": "Ġscouts", - "29664": "wolves", - "29665": "Rat", - "29666": "Ġnineteenth", - "29667": "ĠOsborne", - "29668": "Stats", - "29669": "Ġempowered", - "29670": "Ġpsychopath", - "29671": "ĠOEM", - "29672": "uggage", - "29673": "ĠPK", - "29674": "ĠMohammad", - "29675": "Pak", - "29676": "Ġanarchists", - "29677": "ĠExtract", - "29678": "esthes", - "29679": "ĠStockholm", - "29680": "loo", - "29681": "ĠGraph", - "29682": "Ġdeploying", - "29683": "ĠStranger", - "29684": "ĠMold", - "29685": "Ġstaffer", - "29686": "Ġdiscounted", - "29687": "uckle", - "29688": "please", - "29689": "ĠLanding", - "29690": "ÃŃa", - "29691": "Ġ193", - "29692": "Ġante", - "29693": "Ġrepetition", - "29694": "Ġ+/-", - "29695": "Ġparody", - "29696": "Ġlively", - "29697": "AAA", - "29698": "ĠHorus", - "29699": "Ġpits", - "29700": "inders", - "29701": "LOC", - "29702": "ĠVenice", - "29704": "ĠDiscover", - "29705": "âĨ", - "29706": "ellectual", - "29707": "Ġpens", - "29708": "Ġeyel", - "29709": "iguous", - "29710": "Impl", - "29711": "Ġjoking", - "29712": "Ġinval", - "29713": "ĠBelfast", - "29714": "Ġcreditors", - "29715": "ĠSkywalker", - "29716": "ovsky", - "29717": "Ġceasefire", - "29718": "Ġseals", - "29719": "isoft", - "29720": ")).", - "29721": "ĠFelix", - "29722": "ITS", - "29723": "Ġtresp", - "29724": "ĠBlockchain", - "29725": "eware", - "29726": "ĠSchwar", - "29727": "enne", - "29728": "mounted", - "29729": "ĠBeacon", - "29730": "lesh", - "29731": "Ġimmensely", - "29732": "Ġcheering", - "29733": "Employ", - "29734": "scene", - "29735": "ishly", - "29736": "atchewan", - "29737": "ĠNicolas", - "29738": "Ġdrained", - "29739": "ĠExit", - "29740": "ĠAzerb", - "29741": "jun", - "29742": "Ġfloated", - "29743": "uania", - "29744": "Deep", - "29745": "Ġsuperv", - "29746": "Ġmystical", - "29747": "ĠDollar", - "29748": "ĠApostle", - "29749": "ĠREL", - "29750": "ĠProvided", - "29751": "ĠBucks", - "29752": "ãĥ´", - "29753": "cutting", - "29754": "Ġenhancements", - "29755": "ĠPenguins", - "29756": "ĠIsaiah", - "29757": "Ġjerk", - "29758": "ĠWyn", - "29759": "Ġstalled", - "29760": "Ġcryptocurrencies", - "29761": "ĠRoland", - "29762": "single", - "29763": "Ġlumin", - "29764": "ĠFellow", - "29765": "ĠCapacity", - "29766": "ĠKazakh", - "29767": "WN", - "29768": "Ġfinanced", - "29770": "Ġtid", - "29771": "Ġcollusion", - "29772": "ĠMyr", - "29773": "îĢ", - "29774": "Senator", - "29775": "Ġpediatric", - "29776": "Ġneatly", - "29777": "Ġsandwiches", - "29778": "ĠArchitecture", - "29779": "Ġtucked", - "29780": "Ġbalcony", - "29781": "Ġearthquakes", - "29782": "quire", - "29783": "Future", - "29784": "Ġhefty", - "29785": "éĹ", - "29786": "Ġspecializes", - "29787": "Ġstresses", - "29788": "Ġsender", - "29789": "Ġmisunderstanding", - "29790": "Ġepile", - "29791": "Ġprovoke", - "29792": "ĠColors", - "29793": "Ġdismay", - "29794": "uko", - "29795": "[_", - "29797": "neutral", - "29798": "Ġdonating", - "29799": "ĠRandall", - "29800": "Multi", - "29801": "Ġconveniently", - "29802": "ĠSung", - "29803": "ĠCoca", - "29804": "Ġtents", - "29805": "ĠAcceler", - "29806": "Ġpartnered", - "29808": "irming", - "29809": "ĠBAS", - "29810": "sometimes", - "29811": "Ġobjected", - "29812": "ubric", - "29813": "posed", - "29814": "LCS", - "29815": "grass", - "29816": "Ġattributable", - "29817": "VIS", - "29818": "Israeli", - "29819": "Ġrepeats", - "29820": "ĠRM", - "29821": "vag", - "29822": "uta", - "29823": "inous", - "29824": "Ġinert", - "29825": "ĠMiguel", - "29826": "æŃ", - "29827": "ĠHawaiian", - "29828": "Board", - "29829": "Ġartific", - "29830": "ĠAzerbai", - "29831": "asio", - "29832": "ĠRent", - "29833": "AIN", - "29834": "Ġappliances", - "29835": "Ġnationality", - "29836": "Ġasshole", - "29837": "ĠNeb", - "29838": "Ġnotch", - "29839": "hani", - "29840": "ĠBride", - "29841": "Availability", - "29842": "Ġintercepted", - "29843": "Ġcontinental", - "29844": "Ġswelling", - "29845": "ĠPerspect", - "29846": "bies", - "29847": ".<", - "29848": "ithmetic", - "29849": "ĠLara", - "29850": "Ġtempting", - "29851": "addr", - "29852": "Ġoverseeing", - "29853": "clad", - "29854": "ĠDV", - "29855": "ĠGingrich", - "29856": "Ġmun", - "29857": "ĠAppropri", - "29858": "Ġalterations", - "29859": "ĠPatreon", - "29860": "Ġhavoc", - "29861": "Ġdisciplines", - "29862": "Ġnotoriously", - "29863": "akuya", - "29864": "ieri", - "29865": "?).", - "29866": "ĠWent", - "29867": "Ġsilicon", - "29868": "Ġtremb", - "29869": "Container", - "29870": "Known", - "29871": "Ġmortar", - "29872": "este", - "29873": "icka", - "29874": "Arthur", - "29875": "ĠPreviously", - "29876": "ĠMarty", - "29877": "Ġsparse", - "29878": "gins", - "29879": "Ġinward", - "29880": "ĠParticipant", - "29881": "Copy", - "29882": "ĠMisc", - "29883": "Ġantibiotic", - "29884": "ĠRetro", - "29885": "Ġelusive", - "29886": "Ġassail", - "29887": "ĠBattalion", - "29888": "ĠBought", - "29889": "Ġdiminish", - "29890": "ĠEuropa", - "29891": "session", - "29892": "ĠDangerous", - "29893": "iesel", - "29894": "Ġdisbelief", - "29895": "Ġblasts", - "29896": "extreme", - "29897": "ĠBoyd", - "29898": "ĠProjects", - "29899": "ĠGuys", - "29900": "Ġundergone", - "29901": "Ġgrill", - "29902": "ĠDwight", - "29903": "Ġ197", - "29904": "USER", - "29905": "Ġfilesystem", - "29906": "Ġclocks", - "29907": "Taylor", - "29908": "Ġwrapper", - "29909": "Ġfolding", - "29910": "ousand", - "29911": "ĠPhilippine", - "29912": "ATIONAL", - "29913": "ĠPerth", - "29914": "Ġashes", - "29915": "Ġaccumulate", - "29916": "ĠGateway", - "29917": "Shop", - "29918": "orkshire", - "29919": "Han", - "29920": "ĠBarrel", - "29921": "ĠLeh", - "29922": "ĠXV", - "29923": "Ġwhim", - "29924": "Ġrepo", - "29925": "ĠCG", - "29926": "ĠMam", - "29927": "Ġincorporating", - "29928": "Ġbailout", - "29929": "Ġlinguistic", - "29930": "Ġdisinteg", - "29931": "CLE", - "29932": "Ġcinematic", - "29933": "ĠFiber", - "29934": "Syn", - "29935": "ilion", - "29936": "ĠCompos", - "29937": "chens", - "29938": "Ġneoc", - "29939": "Ġboiled", - "29940": "FINE", - "29941": "ono", - "29942": "uncle", - "29943": "iken", - "29944": "ĠBM", - "29945": "ι", - "29946": "Ġreceipts", - "29947": "Ġdisposed", - "29948": "ĠThirty", - "29949": "ĠRough", - "29950": "ĠABS", - "29951": "Ġnotwithstanding", - "29952": "ollen", - "29953": "#$", - "29954": "Ġunreliable", - "29955": "Ġbloom", - "29956": "Ġmediocre", - "29957": "Ġtram", - "29958": "ĠTasman", - "29959": "Ġshakes", - "29960": "Ġmanifesto", - "29961": "ĠMW", - "29962": "Ġsatisfactory", - "29963": "Ġshores", - "29964": "Ġcomputation", - "29965": "Ġassertions", - "29966": "ormons", - "29967": "arag", - "29968": "abit", - "29969": "Democrats", - "29970": "ĠLoot", - "29971": "ĠVolks", - "29972": "haired", - "29973": "Ġgravitational", - "29974": "Sing", - "29975": "ĠMiz", - "29976": "Ġthrottle", - "29977": "Ġtyranny", - "29978": "ĠViews", - "29979": "Ġrobber", - "29980": "ĠMinority", - "29981": "Ġshrine", - "29982": "scope", - "29983": "purpose", - "29984": "Ġnucleus", - "29985": "ourcing", - "29986": "ĠUSDA", - "29987": "ĠDHS", - "29988": "wra", - "29989": "ĠBowie", - "29990": "Scale", - "29991": "ĠBEL", - "29992": "xi", - "29993": "Iter", - "29994": "Ġ(),", - "29995": "wright", - "29996": "Ġsailors", - "29997": "oused", - "29998": "NASA", - "29999": "ĠProof", - "30000": "ĠMineral", - "30001": "token", - "30002": "ĠFD", - "30003": "Rew", - "30004": "Ġell", - "30006": "Ġchancellor", - "30007": "ĠGos", - "30008": "Ġamounted", - "30009": "ĠRecre", - "30010": "omez", - "30011": "ĠOptim", - "30012": "ĠOlive", - "30013": "Ġtracker", - "30014": "owler", - "30015": "ĠUnique", - "30016": "Root", - "30017": "Ġmaritime", - "30018": "ĠQuran", - "30019": "ĠAdapt", - "30020": "Ġecosystems", - "30021": "ĠRepeat", - "30022": "ĠSoy", - "30023": "ĠIMP", - "30024": "Ġgraduating", - "30025": "andem", - "30026": "Pur", - "30027": "ĠReset", - "30028": "ĠTrick", - "30029": "ĠPhilly", - "30030": "ĠTue", - "30031": "ĠMalaysian", - "30032": "Ġclimax", - "30033": "Ġbury", - "30034": "Ġconspic", - "30035": "ĠSouthampton", - "30036": "ĠFlowers", - "30037": "Ġescorted", - "30038": "ĠEducational", - "30039": "ĠIRC", - "30040": "Ġbrutally", - "30041": "eating", - "30042": "Ġpillar", - "30043": "ĠSang", - "30044": "ĠJude", - "30045": "arling", - "30046": "ĠAmnesty", - "30047": "Ġreminding", - "30048": "ĠAdministrative", - "30049": "hesda", - "30050": "Ġflashed", - "30051": "ĠPBS", - "30052": "perate", - "30053": "feature", - "30054": "Ġswipe", - "30055": "Ġgraves", - "30056": "oultry", - "30058": "breaks", - "30059": "ĠGuer", - "30060": "Ġshrimp", - "30061": "ĠVoting", - "30062": "quist", - "30063": "Ġanalytical", - "30064": "Ġtablespoons", - "30065": "ĠSOU", - "30066": "Ġresearched", - "30067": "Ġdisrupted", - "30068": "Ġjour", - "30069": "Ġreplica", - "30070": "Ġcartoons", - "30071": "bians", - "30072": "})", - "30073": "copy", - "30074": "Got", - "30075": "ouched", - "30076": "PUT", - "30077": "Ġswarm", - "30078": "notations", - "30079": "said", - "30080": "Ġrebuilt", - "30081": "Ġcollaborate", - "30082": "Ġraging", - "30083": "Ġnar", - "30084": "Ġdemographics", - "30085": "ĠDDR", - "30086": "Ġdistrust", - "30087": "ossier", - "30088": "ĠKro", - "30089": "Ġpumpkin", - "30090": "Ġregrets", - "30091": "Ġfatalities", - "30092": "ĠLens", - "30093": "ĠOle", - "30094": "pd", - "30095": "Ġpuppet", - "30096": "ĠOutlook", - "30097": "ĠStam", - "30098": "Ol", - "30099": "Fair", - "30100": "UU", - "30101": "Ġrewritten", - "30102": "ı", - "30103": "Ġfascinated", - "30104": "Ġvectors", - "30105": "Ġtribunal", - "30106": "uay", - "30107": "ĠMats", - "30108": "ĠCoins", - "30109": "[[", - "30110": "Ġ181", - "30111": "Ġrenders", - "30112": "ĠKaepernick", - "30113": "Ġespionage", - "30114": "Ġsumm", - "30115": "Ġditch", - "30116": "Account", - "30117": "Ġspreadsheet", - "30118": "Ġmutant", - "30119": "past", - "30121": "Ġdye", - "30122": "Ġinitiation", - "30123": "Ġ4000", - "30124": "Ġpunishable", - "30125": "Ġthinner", - "30126": "ĠKhal", - "30127": "Ġintermedi", - "30128": "Dun", - "30129": "ĠGotham", - "30130": "Ġeagerly", - "30131": "Ġvaginal", - "30132": "powers", - "30133": "VW", - "30134": "ĠWATCHED", - "30135": "Ġpredator", - "30136": "amsung", - "30137": "Ġdisparity", - "30138": "Ġ[*", - "30139": "Ġamph", - "30140": "Ġoutskirts", - "30141": "ĠSpirits", - "30142": "Ġskeletal", - "30143": "л", - "30144": "ĠRear", - "30145": "Ġissuance", - "30146": "ĠLogic", - "30147": "released", - "30148": "ZZ", - "30149": "ĠBound", - "30150": "Entry", - "30151": "Ġexits", - "30152": "isol", - "30153": "ĠFounder", - "30154": "Ġwre", - "30155": "ĠGreenland", - "30156": "ĠMMO", - "30157": "taker", - "30158": "INC", - "30159": "ãģ¾", - "30160": "Ġhourly", - "30161": "henko", - "30162": "Ġfantasies", - "30163": "Ġdisob", - "30164": "Ġdemolition", - "30165": "ãĥĭ", - "30166": "Ġenlisted", - "30167": "ratulations", - "30168": "Ġmisguided", - "30169": "Ġensured", - "30170": "Ġdiscouraged", - "30171": "mort", - "30172": "Ġflank", - "30173": "Ġcess", - "30174": "Ġreacts", - "30175": "ĠSere", - "30176": "sensitive", - "30177": "ĠSerpent", - "30178": "assad", - "30179": "Ġ247", - "30180": "Ġcalmly", - "30181": "busters", - "30182": "Ġbleed", - "30183": "ĠStro", - "30184": "Ġamusement", - "30185": "ĠAntarctica", - "30186": "Ġscept", - "30187": "ĠGaw", - "30188": "aq", - "30189": "asonic", - "30190": "Ġsprawling", - "30191": "native", - "30192": "aturated", - "30193": "ĠBattlefield", - "30194": "IVERS", - "30195": "EB", - "30196": "ĠGems", - "30197": "ĠNorthwestern", - "30198": "ĠFilms", - "30199": "ĠAutomatic", - "30200": "Ġapprehend", - "30201": "ãģ¨", - "30202": "ĠguiName", - "30203": "Ġbackend", - "30204": "Ġevidenced", - "30205": "geant", - "30206": "012", - "30207": "ĠSiege", - "30208": "ĠexternalTo", - "30209": "ĠunfocusedRange", - "30210": "ĠguiActiveUnfocused", - "30211": "ĠguiIcon", - "30212": "ĠexternalToEVA", - "30213": "ĠexternalToEVAOnly", - "30214": "Fri", - "30215": "chard", - "30216": "enaries", - "30217": "Ġchiefs", - "30218": "Ġcf", - "30219": "ĠHUD", - "30220": "Ġcorrobor", - "30221": "ĠdB", - "30222": "ĠTaken", - "30223": "ĠPatricia", - "30224": "rail", - "30225": "ĠCharm", - "30226": "ĠLibertarian", - "30227": "rieve", - "30228": "Personal", - "30229": "ĠOUR", - "30230": "geries", - "30231": "Ġdumping", - "30232": "Ġneurological", - "30233": "itimate", - "30234": "ĠClintons", - "30235": "rafted", - "30236": "ĠMolly", - "30237": "Ġterminals", - "30238": "register", - "30239": "Ġflare", - "30240": "Ġencoded", - "30241": "Ġautopsy", - "30242": "pel", - "30243": "machine", - "30244": "Ġexemptions", - "30245": "ĠRoyals", - "30246": "distance", - "30247": "Ġdrafts", - "30248": "Ġlame", - "30249": "ĠCunning", - "30250": "Ġspouses", - "30251": "ĠMarkets", - "30252": "ĠCarrier", - "30253": "Ġimplying", - "30254": "ĠYak", - "30255": "sid", - "30256": "Ġloser", - "30257": "Ġvigilant", - "30258": "Ġimpeachment", - "30259": "Ġaugmented", - "30260": "ĠEmployees", - "30261": "Ġunintended", - "30262": "ternally", - "30263": "ĠWatt", - "30264": "Ġrecognizable", - "30265": "essim", - "30266": "æĿ", - "30267": "Ġcoated", - "30268": "rha", - "30269": "Ġlieutenant", - "30270": "ĠLegislation", - "30271": "published", - "30273": "013", - "30274": "Ġideally", - "30275": "ĠPassword", - "30276": "Ġsimplify", - "30277": "ĠMeta", - "30278": "ĠMRI", - "30279": "Ġpleading", - "30280": "organized", - "30281": "handler", - "30282": "Ġunravel", - "30283": "correct", - "30284": "Ġicy", - "30285": "Ġparanoid", - "30286": "Ġpasser", - "30287": "Ġinspections", - "30288": "ofer", - "30289": "ĠHealthcare", - "30291": "ĠBrut", - "30292": "iola", - "30293": "forge", - "30294": "ĠMedieval", - "30295": "MSN", - "30296": "ievers", - "30297": "ĠProgramming", - "30298": "åī", - "30299": "Ġ223", - "30300": "mu", - "30301": "ĠCLE", - "30302": "uga", - "30303": "Ġshoppers", - "30304": "Ġinformative", - "30305": "ĠPlans", - "30306": "Ġsupplementation", - "30307": "ĠTests", - "30308": "tyard", - "30309": "ocytes", - "30310": "ĠVega", - "30311": "ĠGujarat", - "30312": "ermanent", - "30313": "Except", - "30314": "ĠLOT", - "30315": "alla", - "30316": "ĠCumm", - "30317": "ĠOsw", - "30318": "Ġvenom", - "30319": "ĠDebt", - "30320": "ĠDOWN", - "30321": "Ġreunion", - "30322": "Ġmuc", - "30323": "ĠRelief", - "30324": "Ġgeop", - "30325": "ĠðŁĺ", - "30326": "alogue", - "30327": "Anth", - "30328": "echo", - "30329": "Ġcorros", - "30330": "Ġreplication", - "30331": "ĠBlazing", - "30332": "ĠDaughter", - "30333": "Ġinflic", - "30334": "ĠLindsey", - "30335": "ÙĪ", - "30337": "Exit", - "30338": "Ġgloom", - "30339": "TAIN", - "30340": "Ġundermining", - "30341": "Ġadvising", - "30342": "hidden", - "30343": "Ġoverflow", - "30344": "Ġgor", - "30345": "urdue", - "30346": "Ġechoes", - "30347": "enhagen", - "30348": "Ġimpuls", - "30349": "drug", - "30350": "cash", - "30351": "Ġasync", - "30352": "Ġmirac", - "30353": "atts", - "30354": "punk", - "30355": "Ġpivot", - "30356": "ĠLegislative", - "30357": "Ġbloggers", - "30358": "ĠClaw", - "30359": "sburg", - "30360": "dyl", - "30361": "ĠRecommend", - "30362": "Ġverte", - "30363": "Ġprohibiting", - "30364": "ĠPanther", - "30365": "Jonathan", - "30366": "Ġomin", - "30367": "Ġhateful", - "30369": "ĠOrche", - "30370": "ĠMurdoch", - "30371": "downs", - "30372": "Ġasymm", - "30373": "GER", - "30374": "Always", - "30375": "Ġinforms", - "30376": "ĠWM", - "30377": "ĠPony", - "30378": "ĠAppendix", - "30379": "ĠArlington", - "30380": "Jam", - "30381": "Ġmedicinal", - "30382": "ĠSlam", - "30383": "ITIES", - "30384": "Ġreaff", - "30385": "ĠRi", - "30386": "FG", - "30387": "Spring", - "30388": "bool", - "30389": "Ġthighs", - "30390": "Ġmarkings", - "30391": "ĠRaqqa", - "30392": "ĠLak", - "30393": "poll", - "30394": "tsky", - "30395": "ĠMorty", - "30396": "ĠDefinition", - "30397": "Ġdebunk", - "30398": "endered", - "30399": "ĠLeone", - "30400": "avers", - "30401": "Ġmortgages", - "30402": "Apparently", - "30403": "Nic", - "30404": "haus", - "30405": "ĠThousands", - "30406": "auld", - "30407": "Ġmash", - "30408": "shoot", - "30409": "Ġdiarr", - "30410": "Ġconsciously", - "30411": "Hero", - "30412": "eas", - "30413": "ĠNaturally", - "30414": "ĠDestroyer", - "30415": "Ġdashboard", - "30416": "services", - "30417": "Rog", - "30418": "Ġmillennials", - "30419": "Ġinvade", - "30420": "-(", - "30421": "Ġcommissions", - "30422": "ĠAuckland", - "30423": "Ġbroadcasts", - "30424": "Ġfrontal", - "30425": "Ġcrank", - "30426": "ĠHistoric", - "30427": "Ġrumours", - "30428": "CTV", - "30429": "Ġsteril", - "30430": "Ġbooster", - "30431": "rocket", - "30432": "ãĤ¼", - "30433": "utsche", - "30434": "ĠPI", - "30435": "Ġ233", - "30436": "ĠProducer", - "30437": "ĠAnalytics", - "30438": "Ġinvaluable", - "30439": "Ġunintention", - "30440": "ĠCY", - "30441": "Ġscrutin", - "30442": "Ġgigg", - "30443": "Ġengulf", - "30444": "Ġproletariat", - "30445": "Ġhacks", - "30446": "ĠHew", - "30447": "arak", - "30448": "ĠSlime", - "30449": "ielding", - "30450": "agher", - "30451": "ĠElliot", - "30452": "Ġtelecom", - "30453": "Ġ219", - "30454": "ultan", - "30455": "ĠArbor", - "30456": "ĠScouts", - "30457": "Ban", - "30458": "Ġlifespan", - "30459": "Ġblasp", - "30461": "Ġjudiciary", - "30462": "ĠContinental", - "30463": "asking", - "30464": "McC", - "30465": "LED", - "30466": "Ġbaggage", - "30467": "ĠSorcerer", - "30468": "Ġremnants", - "30469": "ĠGriffith", - "30470": "etsu", - "30471": "ĠSubaru", - "30472": "ĠPersonality", - "30473": "designed", - "30474": "ushima", - "30475": "agnar", - "30476": "Ġrecoil", - "30477": "Ġpassions", - "30478": "\\\":", - "30479": "Ġtee", - "30480": "Ġabolition", - "30481": "ĠCreating", - "30482": "jac", - "30483": "Ġ194", - "30484": "019", - "30485": "Ġpillars", - "30486": "riched", - "30487": "/\"", - "30488": "tk", - "30489": "Ġlivelihood", - "30490": "Ġroasted", - "30491": "ahon", - "30492": "ĠHutch", - "30493": "assert", - "30494": "Ġdividend", - "30495": "Ġknit", - "30496": "Ġdaunting", - "30497": "Ġdisturbance", - "30498": "Ġshale", - "30499": "Ġcultivated", - "30500": "Ġrefrigerator", - "30501": "LB", - "30502": "ĠNET", - "30503": "Ġcommercials", - "30504": "Ġthinkers", - "30506": "Ġchop", - "30507": "Broad", - "30508": "Ġsuspicions", - "30509": "Ġtagged", - "30510": "lifting", - "30511": "Ġstylish", - "30512": "ĠShields", - "30513": "Shortly", - "30514": "Ġtails", - "30515": "Auth", - "30516": "STE", - "30517": "ĠGAME", - "30518": "Ġseism", - "30519": "ĠKis", - "30520": "ologne", - "30521": "Ġcowork", - "30522": "Ġforcibly", - "30523": "Ġthyroid", - "30524": "ĠPB", - "30525": "ANE", - "30526": "married", - "30527": "horse", - "30528": "Ġpolymer", - "30529": "ĠChal", - "30530": "odor", - "30531": "DEBUG", - "30532": "ĠContext", - "30533": "Ġbliss", - "30534": "Ġpinpoint", - "30535": "ĠMathemat", - "30536": "legram", - "30537": "ĠWeekend", - "30538": "Ġlabelled", - "30539": "Ġbart", - "30540": "itles", - "30541": "Ġestrogen", - "30542": "âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ", - "30543": "\"'", - "30544": "Ġvisibly", - "30545": "Ġoutsider", - "30546": "aida", - "30547": "Area", - "30548": "Ġdissemin", - "30549": "Ġdishonest", - "30550": "ĠClosed", - "30551": "ĠBulletin", - "30552": "ĠRamsey", - "30553": "sword", - "30554": "ĠXI", - "30555": "ourced", - "30556": "Same", - "30558": "ĠRepe", - "30559": "ĠKou", - "30560": "cake", - "30561": "emis", - "30562": "Cache", - "30563": "ĠMeaning", - "30564": "ĠEnlight", - "30565": "onomy", - "30566": "Ġmanifestation", - "30567": "sworth", - "30568": "Jay", - "30569": "Ġchore", - "30570": "ör", - "30571": "Dream", - "30572": "Ġsanctioned", - "30573": "Ġculturally", - "30574": "ĠAra", - "30575": "Nav", - "30576": "Ġtheological", - "30577": "Ġstrut", - "30578": "ĠVO", - "30579": "ĠHandbook", - "30580": "Ġconstructing", - "30581": "Ġ¶", - "30582": "ĠBenefits", - "30583": "ĠPsychological", - "30584": "sac", - "30585": "å¸", - "30586": "policy", - "30587": "ĠMatters", - "30588": "ĠReported", - "30589": "ĠByte", - "30590": "Ġvitro", - "30591": "ĠMaiden", - "30592": "Ġlam", - "30593": "ĠJennings", - "30594": "Ġgarment", - "30595": "ĠRutgers", - "30596": "ĠStafford", - "30597": "ĠWellington", - "30598": "Ġintermitt", - "30599": "Ġnpm", - "30600": "Ġordeal", - "30601": "Ġplugged", - "30602": "ooming", - "30603": "inished", - "30604": "framework", - "30605": "Ġtimber", - "30606": "Ġcass", - "30607": "Ġ850", - "30608": "iless", - "30609": "ĠRedux", - "30611": "Stre", - "30612": "Ġsurpassed", - "30613": "whel", - "30614": "Ġparallels", - "30615": "Ġveil", - "30616": "ĠGI", - "30617": "ĠREST", - "30618": "Ġreadiness", - "30619": "sort", - "30620": "Ġmodifying", - "30621": "ĠSlate", - "30622": "ruff", - "30623": "Ġmarble", - "30624": "Ġinfrared", - "30625": "Ġauditor", - "30626": "ĠFANTASY", - "30627": "ĠPoverty", - "30628": "ĠSPD", - "30629": "Ġ\"(", - "30630": "Ky", - "30631": "RAY", - "30632": "Ġexecutions", - "30633": "ĠBeverly", - "30634": "ĠMarxism", - "30635": "ĠBurst", - "30636": "ĠKali", - "30637": "estones", - "30638": "Clearly", - "30639": "Ell", - "30640": "ãģ§", - "30641": "ĠProceedings", - "30642": "Token", - "30643": "IFIC", - "30644": "ña", - "30645": "Central", - "30646": "ĠHaley", - "30647": "ĠDrama", - "30648": "Ġformations", - "30649": "ORN", - "30650": "Books", - "30651": "Ġdominating", - "30652": "ĠFlyers", - "30653": "ĠCompanion", - "30654": "Ġdisciplined", - "30655": "ĠYugoslav", - "30656": "ĠSpells", - "30657": "Ġvengeance", - "30658": "Ġlandlords", - "30659": "Len", - "30660": "ĠOgre", - "30661": "anoia", - "30662": "Ġpiercing", - "30663": "Ġcongreg", - "30664": "Ġscorer", - "30665": "obia", - "30666": "Ġnickel", - "30667": "ĠLearns", - "30668": "Ġrejo", - "30669": "Ġmasterpiece", - "30670": "Flash", - "30671": "Ġinhabited", - "30672": "ĠOpenGL", - "30673": "ĠDud", - "30674": "ĠICO", - "30675": "Ġarter", - "30676": "Ġplur", - "30677": "Ġmastery", - "30678": "Ġlongstanding", - "30679": "sted", - "30680": "Ġwines", - "30681": "Ġtelevised", - "30682": "ĠShrine", - "30683": "ĠBayern", - "30684": "Ġâĵĺ", - "30685": "Ġenclosure", - "30686": "john", - "30687": "Ġprophets", - "30688": "ĠResurrection", - "30689": "ĠOrders", - "30690": "Ġuneven", - "30691": "rals", - "30692": "Ġdwind", - "30693": "ĠLah", - "30694": "ĠSloven", - "30696": "Ġinsistence", - "30697": "affle", - "30698": "ĠClone", - "30699": "Ġhardship", - "30700": "ĠCongressman", - "30701": "Ġplead", - "30702": "Ġreviewers", - "30703": "Ġcured", - "30704": "Ġ1935", - "30705": "asley", - "30706": "fake", - "30707": "ĠThinking", - "30708": "ydia", - "30709": "PART", - "30710": "ĠDota", - "30711": "oit", - "30712": "Ġwhipped", - "30713": "Ġbouncing", - "30714": "ĠHispanics", - "30715": "comings", - "30716": "Ġcannabin", - "30717": "ĠChambers", - "30718": "ĠZack", - "30719": "Optional", - "30720": "Ġcoats", - "30721": "Ġprowess", - "30722": "ĠNorton", - "30723": "Ġplainly", - "30724": "Ġfreight", - "30725": "Ġinhibition", - "30726": "Ġclam", - "30727": "Ġ303", - "30728": "kef", - "30729": "aleigh", - "30730": "Luke", - "30731": "Ġpsycho", - "30732": "atorium", - "30733": "MED", - "30734": "Ġtreaties", - "30735": "Ġindisc", - "30736": "Ġdc", - "30737": "OPS", - "30738": "Ġresilient", - "30739": "ĠInterstate", - "30740": "Ġslack", - "30741": "Ġmundane", - "30742": "Ġestablishes", - "30744": "Ġstrained", - "30745": "Ġnond", - "30746": "Sus", - "30747": "Ġcaste", - "30748": "arate", - "30749": "ieving", - "30750": "Ġunfairly", - "30751": "Ġparser", - "30752": "onial", - "30753": "ursive", - "30754": "Via", - "30755": "ĠOtto", - "30756": "ĠAuthorities", - "30757": "stroke", - "30758": "KR", - "30759": "ĠMercy", - "30760": "Ġfurnished", - "30761": "Ġoutset", - "30762": "Ġmetic", - "30764": "olithic", - "30765": "ĠTent", - "30766": "ogical", - "30767": "ĠAircraft", - "30768": "Ġhides", - "30769": "ĠBecame", - "30770": "Ġeducators", - "30771": "reaching", - "30772": "Ġvolatility", - "30773": "Ġtoddler", - "30774": "ĠNASCAR", - "30775": "ĠTwelve", - "30776": "ĠHighlights", - "30777": "Ġgrape", - "30778": "Ġsplits", - "30779": "Ġpeasant", - "30780": "Ġreneg", - "30781": "ĠMSI", - "30782": "Temp", - "30783": "stars", - "30784": "Ġtrek", - "30785": "ĠHyde", - "30786": "binding", - "30787": "Ġrealism", - "30788": "Ġoxide", - "30789": "ĠHos", - "30790": "Ġmounts", - "30791": "Ġbiting", - "30792": "Ġcollapsing", - "30793": "Ġpostal", - "30794": "Ġmuseums", - "30795": "Ġdetached", - "30796": "Ġrespecting", - "30797": "Ġmonopol", - "30798": "Ġworkflow", - "30799": "ĠCake", - "30800": "Template", - "30801": "ĠOrganisation", - "30802": "Ġpersistence", - "30804": "Coming", - "30805": "Brad", - "30806": "Ġredundant", - "30807": "ĠGTA", - "30808": "Ġbending", - "30809": "Ġrevoked", - "30810": "Ġoffending", - "30811": "Ġframing", - "30812": "Ġprintf", - "30813": "Commun", - "30814": "members", - "30815": "Outside", - "30816": "Ġconstrued", - "30817": "Ġcoded", - "30818": "FORE", - "30819": "Ġchast", - "30820": "Chat", - "30821": "Indian", - "30822": "ĠYard", - "30823": "?!\"", - "30824": "ĠPorts", - "30825": "ĠXavier", - "30826": "ĠRET", - "30827": "'.\"", - "30828": "ĠBoat", - "30829": "ivated", - "30830": "icht", - "30831": "umerable", - "30832": "Ds", - "30833": "ĠDunn", - "30834": "Ġcoffin", - "30835": "Ġsecurely", - "30836": "ĠRaptors", - "30837": "ĠBes", - "30838": "Installation", - "30839": "Ġinception", - "30840": "ĠHealthy", - "30841": "endants", - "30842": "Ġpsychologists", - "30843": "ĠSheikh", - "30844": "cultural", - "30845": "ĠBlackBerry", - "30846": "shift", - "30847": "Fred", - "30848": "oche", - "30849": "Ġcakes", - "30850": "ĠSEO", - "30851": "ĠGian", - "30852": "ĠAsians", - "30853": "ogging", - "30854": "element", - "30855": "Ġpundits", - "30856": "ĠVaugh", - "30857": "ĠGavin", - "30858": "Ġhitter", - "30859": "Ġdrowned", - "30860": "Ġchalk", - "30861": "ĠZika", - "30862": "Ġmeasles", - "30864": "â̦..", - "30865": "ĠAWS", - "30866": "]\"", - "30867": "Ġdistort", - "30868": "ĠMast", - "30869": "Ġantibodies", - "30870": "ĠMash", - "30871": "Memory", - "30872": "ĠUganda", - "30873": "ĠProb", - "30874": "Ġvomiting", - "30875": "ĠTurns", - "30876": "Ġoccupying", - "30877": "Ġevasion", - "30878": "ĠTherapy", - "30879": "Ġpromo", - "30880": "Ġelectr", - "30881": "Ġblueprint", - "30882": "ĠDre", - "30883": "priced", - "30884": "ĠDepot", - "30885": "Ġalleviate", - "30886": "ĠSomali", - "30887": "marg", - "30888": "nine", - "30889": "Ġnostalgia", - "30890": "ĠShepherd", - "30891": "Ġcavalry", - "30892": "Ġtorped", - "30893": "ĠBloody", - "30894": "xb", - "30895": "Ġsank", - "30896": "Ġgoalt", - "30897": "reportprint", - "30898": "embedreportprint", - "30899": "cloneembedreportprint", - "30900": "ĠInitially", - "30901": "ĠFischer", - "30902": "Ġnoteworthy", - "30903": "cern", - "30904": "Ġinefficient", - "30905": "rawdownload", - "30906": "rawdownloadcloneembedreportprint", - "30907": "cation", - "30908": "ĠDynasty", - "30909": "lag", - "30910": "DES", - "30911": "Ġdistinctly", - "30912": "ĠEstonia", - "30913": "Ġopenness", - "30914": "Ġgossip", - "30915": "ruck", - "30916": "Width", - "30917": "ĠIbrahim", - "30918": "Ġpetroleum", - "30919": "Ġavatar", - "30920": "ĠHed", - "30921": "atha", - "30922": "ĠHogwarts", - "30923": "Ġcaves", - "30925": "Ġsafeguard", - "30926": "ĠMog", - "30927": "isson", - "30928": "ĠDurham", - "30929": "slaught", - "30930": "ĠGraduate", - "30931": "Ġsubconscious", - "30932": "ĠExcellent", - "30933": "ĠDum", - "30934": "-----", - "30935": "Ġpiles", - "30936": "ĠWORK", - "30937": "ĠGarn", - "30938": "ĠFol", - "30939": "ĠATM", - "30940": "Ġavoids", - "30941": "ĠTul", - "30942": "Ġbleak", - "30943": "ELY", - "30944": "ivist", - "30945": "lightly", - "30946": "Pers", - "30947": "ĠDob", - "30948": "ĠLS", - "30949": "Ġinsanity", - "30950": "ε", - "30951": "atalie", - "30952": "Enlarge", - "30953": "Ġtwists", - "30954": "Ġfaulty", - "30955": "Ġpiracy", - "30956": "Ġimpover", - "30957": "Ġrugged", - "30958": "ĠFashion", - "30959": "Ġsands", - "30960": "'?", - "30961": "swick", - "30962": "Ġnatives", - "30963": "Ġhen", - "30964": "ĠNoise", - "30965": "ãĥĹ", - "30966": "Ġgreens", - "30967": "Ġfreezer", - "30968": "Ġdynasty", - "30969": "ĠFathers", - "30970": "ĠNewark", - "30971": "Ġarchaeological", - "30972": "Ġot", - "30973": "obar", - "30974": "Ġblockade", - "30975": "Ġallerg", - "30976": "LV", - "30977": "Ġdebit", - "30978": "ĠRFC", - "30979": "ĠMilton", - "30980": "ĠPressure", - "30981": "Ġwillingly", - "30982": "Ġdisproportionate", - "30983": "Ġoppressive", - "30984": "Ġdiamonds", - "30985": "Ġbelongings", - "30987": "Ġbells", - "30988": "Ġimperialism", - "30989": "Ġ227", - "30990": "Ġexploding", - "30991": "ĠEclipse", - "30992": "Ġ1919", - "30993": "Ġrant", - "30994": "Ġnominations", - "30996": "Ġpeacefully", - "30997": "rica", - "30998": "ĠFUCK", - "30999": "Ġvibration", - "31000": "malink", - "31001": "Ġropes", - "31002": "ĠIvanka", - "31003": "ĠBrewery", - "31004": "ĠBooker", - "31005": "ĠOwens", - "31006": "goers", - "31007": "Services", - "31008": "ĠSnape", - "31009": "Ġ191", - "31011": "Ġ299", - "31012": "justice", - "31013": "Ġbri", - "31014": "Ġdiscs", - "31015": "Ġprominently", - "31016": "Ġvulgar", - "31017": "Ġskipping", - "31018": "lves", - "31019": "Ġtsunami", - "31021": "ĠUrug", - "31022": "ĠEid", - "31023": "recated", - "31024": "phen", - "31025": "Ġfaults", - "31026": "ĠStarted", - "31028": "Ġpi", - "31029": "Ġdetector", - "31030": "Ġbastard", - "31031": "Ġvalidated", - "31032": "SpaceEngineers", - "31033": "OURCE", - "31034": "Ġ(~", - "31035": "Ġunsur", - "31036": "Ġaffirmed", - "31037": "Ġfascism", - "31038": "Ġresolving", - "31039": "ĠChavez", - "31040": "ĠCyn", - "31041": "Ġdetract", - "31042": "Lost", - "31043": "Ġrigged", - "31044": "Ġhomage", - "31045": "ĠBruno", - "31047": "eca", - "31048": "Ġpresses", - "31049": "Ġhumour", - "31050": "Ġspacing", - "31051": "Ġ'/", - "31052": "olkien", - "31053": "Coun", - "31054": "OPER", - "31055": "Tre", - "31056": "Son", - "31057": "ĠCambodia", - "31058": "ierre", - "31059": "mong", - "31060": "ozy", - "31061": "Ġliquidity", - "31062": "ĠSoviets", - "31063": "ĠFernando", - "31064": "Ġ229", - "31065": "Ġslug", - "31066": "ĠCatalan", - "31067": "electric", - "31068": "Ġscenery", - "31069": "ĠHearth", - "31070": "Ġconstrained", - "31071": "Ġgoalie", - "31072": "ĠGuidelines", - "31073": "ĠAmmo", - "31074": "ĠPearson", - "31075": "Ġtaxed", - "31076": "Ġfetus", - "31077": "Response", - "31078": "ĠAlexis", - "31079": "thia", - "31080": "Guy", - "31081": "Ġreconstruct", - "31082": "Ġextremes", - "31083": "Ġconcluding", - "31084": "ĠPeg", - "31085": "ooks", - "31086": "Ġdeductions", - "31087": "Rose", - "31088": "Ġgroundbreaking", - "31089": "ĠTarg", - "31090": "ãĥģ", - "31091": "ĠReve", - "31092": "resource", - "31093": "Ġmoons", - "31094": "Ġelectromagnetic", - "31095": "Ġamidst", - "31096": "ĠViktor", - "31097": "NESS", - "31098": "BACK", - "31099": "Ġcommute", - "31100": "ĠAnaheim", - "31101": "Ġfluctuations", - "31103": "Ġnoodles", - "31104": "ĠCopenhagen", - "31105": "ĠTide", - "31106": "ĠGrizz", - "31107": "ĠSEE", - "31108": "Ġpipelines", - "31109": "Ġscars", - "31110": "endo", - "31111": "agus", - "31112": "ĠETF", - "31113": "/#", - "31114": "ĠBecome", - "31116": "Ġvisc", - "31117": "ĠRecommended", - "31118": "Ġjumper", - "31119": "Ġcognition", - "31120": "Ġassassin", - "31121": "Ġwitnessing", - "31122": "ĠSetup", - "31123": "Ġlac", - "31124": "vim", - "31125": "ISM", - "31126": "pages", - "31127": "SSL", - "31129": "Ġadject", - "31130": "industrial", - "31131": "lore", - "31132": "chery", - "31133": "Ġglitter", - "31134": "Ġcalf", - "31135": "Florida", - "31136": "Ġspoilers", - "31137": "Ġsucceeds", - "31138": "Ġchanting", - "31139": "Ġslogans", - "31140": "ĠTracy", - "31141": "Visit", - "31142": "rology", - "31143": "Ġmornings", - "31144": "Ġlineage", - "31145": "Ġsip", - "31146": "Ġintensely", - "31147": "Ġflourish", - "31148": "ĠSleeping", - "31149": "ĠFem", - "31150": "orpor", - "31151": "ĠKlan", - "31152": "ĠDarth", - "31153": "hack", - "31154": "ĠNielsen", - "31155": "Ġtumors", - "31156": "Ġprocurement", - "31157": "ĠYorkshire", - "31158": "Ġraided", - "31159": "KY", - "31160": "Anna", - "31161": "Ġ//[", - "31162": "ĠDisorder", - "31163": "ĠMustang", - "31164": "ĠWen", - "31165": "ĠTrying", - "31166": "sq", - "31167": "Ġdeliveries", - "31168": "Ġshutter", - "31169": "Ġcerebral", - "31170": "Ġbipolar", - "31171": "ĠCN", - "31172": "lass", - "31173": "jet", - "31174": "Ġdebating", - "31175": ">:", - "31176": "Ġeagle", - "31177": "grades", - "31178": "ĠDixon", - "31179": "UGC", - "31180": "MAS", - "31181": "ĠDraco", - "31182": "ĠMachines", - "31183": "affer", - "31184": "Ġeman", - "31185": "²", - "31186": "pron", - "31187": "ĠGym", - "31188": "Ġcomparatively", - "31189": "ĠTribunal", - "31190": "PRO", - "31191": "Ġlex", - "31192": "Ġfertile", - "31193": "Ġdepressing", - "31194": "Ġsuperficial", - "31195": "essential", - "31196": "ĠHunters", - "31197": "gp", - "31198": "Ġprominence", - "31199": "Liber", - "31200": "ĠAncest", - "31201": "otechnology", - "31202": "Ġmocking", - "31203": "ĠTraff", - "31204": "ĸļ", - "31205": "Medium", - "31206": "Iraq", - "31207": "Ġpsychiatrist", - "31208": "Quantity", - "31209": "ĠLect", - "31210": "Ġnoisy", - "31212": "GY", - "31213": "Ġslapped", - "31214": "ĠMTV", - "31215": "Ġpara", - "31216": "pull", - "31217": "Multiple", - "31218": "asher", - "31219": "Ġnour", - "31220": "ĠSeg", - "31221": "Spell", - "31222": "vous", - "31223": "ordial", - "31224": "Senior", - "31225": "ĠGoldberg", - "31226": "ĠPlasma", - "31227": "need", - "31228": "Ġmessenger", - "31229": "eret", - "31230": "Ġteamed", - "31231": "Ġliteracy", - "31232": "ĠLeah", - "31233": "ĠDoyle", - "31234": "Ġemitted", - "31235": "UX", - "31236": "Ġevade", - "31237": "Ġmaze", - "31238": "Ġwrongly", - "31239": "ĠLars", - "31240": "Ġstereotype", - "31241": "Ġpledges", - "31242": "Ġaroma", - "31243": "ĠMET", - "31244": "Ġacre", - "31245": "ĠOD", - "31246": "Ġff", - "31247": "Ġbreweries", - "31248": "ĠHilton", - "31249": "undle", - "31250": "ĠKak", - "31251": "ĠThankfully", - "31252": "ĠCanucks", - "31253": "inctions", - "31254": "ĠAppears", - "31255": "Ġcoer", - "31256": "Ġundermined", - "31257": "rovers", - "31258": "Andre", - "31259": "Ġblaze", - "31260": "umers", - "31261": "Ġfamine", - "31262": "amphetamine", - "31263": "ulkan", - "31264": "Amount", - "31265": "Ġdesperation", - "31266": "wikipedia", - "31267": "development", - "31268": "ĠCorinth", - "31269": "ussia", - "31270": "Jackson", - "31271": "LI", - "31272": "Native", - "31273": "Rs", - "31274": "Ohio", - "31275": "ĠKathleen", - "31276": "Fortunately", - "31277": "Ġattendant", - "31278": "ĠPreferred", - "31279": "ĠDidn", - "31280": "ĠVs", - "31281": "Mis", - "31282": "Ġrespondent", - "31283": "Ġboun", - "31284": "stable", - "31285": "Ġpaved", - "31286": "Ġunexpl", - "31287": "ĠCheney", - "31288": "LM", - "31289": "ĠCull", - "31290": "blown", - "31291": "Ġconfronting", - "31292": "ocese", - "31293": "serving", - "31294": "Wi", - "31295": "ĠLithuania", - "31296": "anni", - "31297": "Ġstalk", - "31298": "hd", - "31299": "Ġvener", - "31300": "APH", - "31301": "ynchronous", - "31302": "URR", - "31303": "umably", - "31304": "historic", - "31305": "Half", - "31306": "Hay", - "31307": "Ġresilience", - "31308": "spection", - "31309": "Ġabandoning", - "31310": "Obs", - "31311": "ĠDebbie", - "31312": "Ġgradient", - "31313": "ĠPlaint", - "31314": "ĠCanal", - "31315": "ARCH", - "31316": "Ġexpansive", - "31317": "Ġfung", - "31318": "Ġbounced", - "31319": "Und", - "31320": "Ġprecautions", - "31321": "Ġclarification", - "31322": "Ġdagger", - "31323": "Ġgrips", - "31324": "Ġµ", - "31325": "ĠRivera", - "31326": "ĠUndead", - "31327": "isites", - "31328": "ĠFIRST", - "31329": "ño", - "31330": "audi", - "31331": "Ġhostages", - "31332": "Ġcompliant", - "31333": "Ġalumni", - "31334": "Seven", - "31335": "Ġcybersecurity", - "31336": "either", - "31337": "Collect", - "31338": "Ġinvariably", - "31339": "ĠSoci", - "31340": "Ġlawmaker", - "31341": "Ġale", - "31342": "ĠPersonally", - "31343": "Nazi", - "31344": "Ġcustomization", - "31345": "ĠProc", - "31346": "ĠSaskatchewan", - "31347": "eaturing", - "31348": "Ġspared", - "31349": "Ġdiscontinued", - "31350": "Ġcomputational", - "31351": "ĠMotorola", - "31352": "Ġsupremacist", - "31353": "governmental", - "31354": "Ġparadise", - "31355": "ĠDowning", - "31356": "ĠNikon", - "31357": "Ġcatalyst", - "31358": "berra", - "31359": "Toronto", - "31361": "beta", - "31362": "ĠMacron", - "31363": "Ġunrealistic", - "31364": "vector", - "31365": "ĠVehicles", - "31366": "itiveness", - "31367": "ĠRV", - "31368": "ĠColbert", - "31369": "sin", - "31370": "oji", - "31371": "entin", - "31372": "ĠKrish", - "31373": "hello", - "31374": "ffield", - "31375": "oky", - "31376": "ĠTate", - "31377": "Ġmaple", - "31378": "Ġaids", - "31379": "chemical", - "31381": "nuts", - "31382": "ĠWarp", - "31383": "Ġxx", - "31384": "ĠRobb", - "31385": "umerous", - "31386": "_-_", - "31387": "ftime", - "31388": "ĠVW", - "31389": "Ġwinger", - "31390": "ĠDome", - "31391": "tools", - "31392": "ĠPV", - "31393": "ĠGeorgetown", - "31394": "Ġgeared", - "31395": "Ġjihadists", - "31396": "Ġcp", - "31397": "Ġsteroids", - "31398": "Mother", - "31399": "clerosis", - "31400": "ĠDRM", - "31401": "nesia", - "31402": "Ġlinger", - "31403": "Ġimmersive", - "31404": "ĠCOUN", - "31405": "Ġoutweigh", - "31406": "ensual", - "31407": "Band", - "31408": "Ġtransforms", - "31409": "matched", - "31410": "psons", - "31411": "ĠJudicial", - "31412": "factor", - "31413": "Ġreferral", - "31414": "Ġoddly", - "31415": "ĠWenger", - "31416": "Bring", - "31417": "ĠBows", - "31419": "ICLE", - "31420": "Ġlions", - "31421": "ĠAcademic", - "31422": "ĠThorn", - "31423": "ĠRaider", - "31424": "kefeller", - "31425": "Storage", - "31426": "Lower", - "31427": "ĠOrt", - "31428": "ĠEquality", - "31429": "ALT", - "31430": "ĠSOC", - "31431": "Types", - "31432": "Ġlyn", - "31433": "ĠAsset", - "31434": "coat", - "31435": "TPP", - "31436": "CVE", - "31437": "ĠPioneer", - "31438": "application", - "31439": "Modern", - "31440": "ĠHK", - "31441": "Environment", - "31442": "Alright", - "31443": "Rain", - "31444": "IPP", - "31445": "ĠShiite", - "31446": "Ġmound", - "31447": "ĠAbilities", - "31448": "condition", - "31449": "Staff", - "31450": "Ġcompetence", - "31451": "ĠMoor", - "31452": "ĠDiablo", - "31453": "Ġwithheld", - "31454": "Ġostensibly", - "31455": "ĠBrom", - "31456": "Ġmsg", - "31457": "Ġdenomin", - "31458": "ĠReferences", - "31459": "ĠFP", - "31460": "Ġplunged", - "31461": "Ġpamph", - "31462": "moving", - "31463": "central", - "31464": "Ġdownright", - "31465": "Ġfading", - "31466": "Tal", - "31467": "Typ", - "31468": "ĠThy", - "31469": "ukes", - "31470": "ithe", - "31471": "Ġove", - "31472": "Ġbattled", - "31473": "Ġseafood", - "31474": "Ġfigur", - "31475": "ĠRD", - "31476": "crop", - "31477": "Ġsquads", - "31478": "{\\", - "31479": "à¹", - "31480": "ĠEh", - "31481": "Ġinterviewing", - "31482": "ĠQin", - "31483": "Ġaspiring", - "31484": "PLIC", - "31485": "Ġclauses", - "31486": "ĠGast", - "31487": "ĠNir", - "31488": "Ġluggage", - "31489": "Ġhose", - "31490": "Ġsystemd", - "31491": "Ġdescending", - "31492": "ĠRevised", - "31493": "ĠRails", - "31494": "align", - "31497": "Ġfug", - "31498": "charging", - "31499": "tags", - "31500": "Ġuter", - "31501": "kish", - "31502": "WARNING", - "31504": "profits", - "31505": "Ġvoyage", - "31506": "Ġace", - "31507": "ĠVanguard", - "31508": "ĠTanks", - "31509": "ĠMuk", - "31510": "Ġ226", - "31511": "Safe", - "31512": "Armor", - "31513": "Ġvolcanic", - "31514": "Ġwomb", - "31515": "ĠMIL", - "31516": "Ġbeginner", - "31517": "ĠRecogn", - "31518": "ĠAAP", - "31519": "PLAY", - "31520": ")!", - "31521": "Ġdetecting", - "31522": "cn", - "31523": "Ġbreaches", - "31524": "Basically", - "31525": "ĠPag", - "31526": "ĠMunicipal", - "31527": "ĠIndie", - "31528": "ĠLaf", - "31529": "ĠDisable", - "31530": "ĠOlson", - "31531": "Ġrestrained", - "31532": "Ġrulings", - "31533": "Ġhumane", - "31534": "events", - "31535": "ĠCinema", - "31536": "displayText", - "31537": "ĠHatch", - "31538": "actionDate", - "31539": "onnaissance", - "31540": "Ġassaulting", - "31541": "ĠLug", - "31542": "CHAT", - "31543": "Ġvigorous", - "31544": "ĠPerse", - "31545": "Ġintolerance", - "31546": "ĠSnapchat", - "31547": "ĠSharks", - "31548": "Ġdummy", - "31549": "ĠDiagn", - "31550": "ĠGuitar", - "31551": "imeters", - "31553": "REG", - "31554": "Ax", - "31555": "Ġseparates", - "31556": "ĠMahm", - "31557": "Ġtv", - "31558": "jah", - "31559": "OOL", - "31560": "Circ", - "31561": "ĠWindsor", - "31562": "ussian", - "31563": "Ġintuition", - "31564": "Ġdisdain", - "31565": "ĠDonovan", - "31566": "Ġ221", - "31567": "Emb", - "31568": "Ġcondemning", - "31569": "Ġgenerosity", - "31570": "zzy", - "31571": "Ġpanties", - "31572": "ĠPrevent", - "31573": "ActionCode", - "31574": "ANA", - "31576": "externalActionCode", - "31577": "Ġspecifying", - "31578": "Ġcrystall", - "31579": "Jere", - "31580": "Ġrupt", - "31581": "ĠApprentice", - "31582": "Ġprofiling", - "31583": "к", - "31584": "Strike", - "31585": "Ġsideline", - "31586": "Ġobligated", - "31587": "Ġoccult", - "31588": "Ġbureaucratic", - "31589": "antically", - "31590": "rupted", - "31591": "negative", - "31592": "ĠEthiopia", - "31593": "ĠCivic", - "31594": "Ġinsiders", - "31595": "eligible", - "31596": "ĠTVs", - "31597": "ĠBAR", - "31598": "ĠTI", - "31599": "iologist", - "31600": "ĠAIR", - "31601": "Ġsubstituted", - "31602": "Arab", - "31603": "ĠSaul", - "31604": "ĠYog", - "31605": "prem", - "31606": "Ġbuilders", - "31607": "Ġstationary", - "31608": "Ġdoubtful", - "31609": "Ġvigorously", - "31610": "Ġthrilling", - "31611": "Physical", - "31612": "ĠCarey", - "31613": "ĠHydra", - "31614": "geoning", - "31615": "ĠSly", - "31616": "yton", - "31617": "Ġborrowers", - "31618": "ĠParkinson", - "31619": "Ġë", - "31620": "ĠJamaica", - "31621": "Ġsatir", - "31622": "Ġinsurgents", - "31623": "ĠFirm", - "31624": "Ġisot", - "31625": "ĠKarn", - "31626": "ourning", - "31627": "akens", - "31628": "docs", - "31629": "little", - "31630": "ĠMonaco", - "31631": "CLASS", - "31632": "Turkey", - "31633": "Ly", - "31634": "ĠConan", - "31635": "assic", - "31636": "Ġstarred", - "31637": "ĠPacers", - "31638": "eties", - "31639": "Ġtipping", - "31640": "Moon", - "31641": "ĠRw", - "31642": "same", - "31643": "Ġcavity", - "31644": "Ġgoof", - "31645": "ĠZo", - "31646": "Shock", - "31647": "ummer", - "31648": "Ġemphasizes", - "31649": "Ġregrett", - "31650": "Ġnovelty", - "31651": "Ġenvy", - "31652": "ĠPassive", - "31653": "rw", - "31655": "Ġindifferent", - "31656": "ĠRica", - "31657": "ĠHimself", - "31658": "ĠFreddie", - "31659": "Ġadip", - "31660": "ä¸Ģ", - "31661": "Ġbreakout", - "31662": "Ġhurried", - "31663": "ĠHuang", - "31664": "ĠDisk", - "31665": "Ġroaming", - "31666": "?????-?????-", - "31667": "UV", - "31668": "ĠRicky", - "31669": "ĠSigma", - "31670": "Ġmarginalized", - "31671": "Ġedits", - "31672": "Ġ304", - "31673": "memory", - "31674": "Ġspecimen", - "31676": "ãģ¯", - "31677": "Ġvertically", - "31678": "Ġaudition", - "31679": "ĠHeck", - "31680": "Ġcaster", - "31681": "ĠHoldings", - "31682": "adal", - "31683": "ĠCron", - "31684": "ĠLiam", - "31685": "Ġdeflect", - "31686": "Pick", - "31687": "ĠDebug", - "31688": "REF", - "31689": "Ġversatility", - "31690": "othes", - "31691": "classified", - "31692": "ĠMahar", - "31693": "ĠHort", - "31694": "Counter", - "31695": "stasy", - "31696": "noticed", - "31698": "ĠShim", - "31699": "fuck", - "31700": "ĠBie", - "31701": "Ġairing", - "31702": "ĠProtein", - "31703": "ĠHolding", - "31704": "Ġspectators", - "31705": "iliated", - "31706": "ĠThatcher", - "31707": "nosis", - "31708": "ãĥ¼ãĥ³", - "31709": "Tele", - "31710": "Boston", - "31711": "ĠTempl", - "31712": "stay", - "31713": "Ġdeclarations", - "31715": "Volume", - "31716": "ĠDesigner", - "31717": "ĠOverwatch", - "31718": "idae", - "31719": "Ġonwards", - "31720": "Ġnets", - "31721": "ĠManila", - "31722": "particularly", - "31723": "Ġpolitic", - "31724": "oother", - "31725": "Ġportraits", - "31726": "Ġpavement", - "31727": "cffff", - "31728": "Ġsaints", - "31729": "Ġbeginners", - "31730": "ESPN", - "31731": "Ġshortcomings", - "31732": "âķIJâķIJ", - "31733": "Ġcomet", - "31734": "ĠOrganic", - "31735": "quel", - "31736": "Ġhospitalized", - "31737": "Break", - "31738": "Ġpeel", - "31739": "dylib", - "31740": "aspx", - "31741": "urances", - "31742": "ĠTIM", - "31743": "Pg", - "31744": "Ġreadable", - "31745": "ĠMalik", - "31746": "Ġmuzzle", - "31747": "Ġbenchmarks", - "31748": "dal", - "31749": "ĠVacc", - "31750": "ĠHicks", - "31752": "ĠBiblical", - "31753": "heng", - "31754": "Ġoverload", - "31755": "ĠCivilization", - "31756": "Ġimmoral", - "31757": "Ġfries", - "31758": "ãĤĴ", - "31759": "Ġreproduced", - "31760": "Ġformulation", - "31761": "jug", - "31762": "irez", - "31763": "gear", - "31764": "Ġcoached", - "31765": "MpServer", - "31766": "ĠSJ", - "31767": "ĠKw", - "31768": "Init", - "31769": "deal", - "31770": "ĠOro", - "31771": "ĠLoki", - "31772": "ĠSongs", - "31773": "Ġ232", - "31774": "ĠLouise", - "31775": "asionally", - "31776": "Ġuncond", - "31777": "ollywood", - "31778": "Ġprogressives", - "31779": "ĠEnough", - "31780": "ĠDoe", - "31781": "Ġwreckage", - "31782": "Ġbrushed", - "31783": "ĠBaseType", - "31784": "Ġzoning", - "31785": "ishable", - "31786": "hetically", - "31787": "ĠCaucus", - "31788": "ĠHue", - "31789": "Ġkarma", - "31790": "ĠSporting", - "31791": "Ġtrader", - "31792": "Ġseeming", - "31793": "ĠCapture", - "31795": "bish", - "31796": "Ġtunes", - "31797": "Ġindoors", - "31798": "ĠSphere", - "31799": "ĠDancing", - "31800": "TERN", - "31801": "Ġnob", - "31802": "ĠGST", - "31803": "maps", - "31804": "Ġpeppers", - "31805": "Fit", - "31806": "Ġoversees", - "31807": "ĠRabbi", - "31808": "ĠRuler", - "31809": "vertising", - "31810": "office", - "31811": "xxx", - "31812": "Ġraft", - "31813": "Changed", - "31814": "Ġtextbooks", - "31815": "Links", - "31816": "ĠOmn", - "31817": "ãĢij", - "31818": "Ġinconvenience", - "31819": "ĠDonetsk", - "31820": "=~", - "31821": "Ġimplicitly", - "31822": "Ġboosts", - "31823": "ĠBones", - "31824": "ĠBoom", - "31825": "Courtesy", - "31826": "Ġsensational", - "31827": "ANY", - "31828": "Ġgreedy", - "31829": "eden", - "31830": "Ġinexper", - "31831": "ĠLer", - "31832": "ĠVale", - "31833": "Ġtighten", - "31834": "ĠEAR", - "31835": "ĠNum", - "31836": "Ġancestor", - "31837": "Sent", - "31838": "ĠHorde", - "31839": "urgical", - "31840": "allah", - "31841": "Ġsap", - "31842": "amba", - "31843": "ĠSpread", - "31844": "twitch", - "31845": "Ġgrandson", - "31846": "Ġfracture", - "31847": "Ġmoderator", - "31848": "ĠSeventh", - "31849": "ĠReverse", - "31850": "Ġestimation", - "31851": "Choose", - "31852": "Ġparach", - "31853": "Ġbarric", - "31854": "ãĢIJ", - "31855": "Ġcompass", - "31856": "Ġallergic", - "31857": "âĢķ", - "31858": "OTHER", - "31859": "errilla", - "31860": "Ġwagon", - "31861": "Ġzinc", - "31862": "Ġrubbed", - "31863": "ĠFuller", - "31864": "ĠLuxembourg", - "31865": "ĠHoover", - "31866": "Ġliar", - "31867": "ĠEvening", - "31868": "ĠCobb", - "31869": "esteem", - "31870": "Ġselector", - "31871": "ĠBrawl", - "31872": "isance", - "31873": "ĠEk", - "31874": "Ġtroop", - "31875": "Ġguts", - "31876": "ĠAppeal", - "31877": "ĠTibetan", - "31878": "Ġroutines", - "31879": "ĠMent", - "31880": "Ġsummarized", - "31881": "steamapps", - "31882": "Ġtranqu", - "31883": "Ġ1929", - "31884": "oran", - "31885": "ĠAuthent", - "31886": "Ġgmaxwell", - "31887": "Ġapprehens", - "31888": "Ġpoems", - "31889": "Ġsausage", - "31890": "ĠWebster", - "31891": "urus", - "31892": "Ġthemed", - "31893": "Ġlounge", - "31894": "Ġcharger", - "31895": "Spoiler", - "31896": "Ġspilled", - "31897": "hog", - "31898": "ĠSunder", - "31899": "ĠAin", - "31900": "ĠAngry", - "31901": "Ġdisqual", - "31902": "ĠFrequency", - "31903": "ĠEthernet", - "31904": "Ġhelper", - "31905": "Percent", - "31906": "Ġhorrifying", - "31907": "Ġail", - "31908": "ĠAllan", - "31909": "EEE", - "31910": "ĠCrossing", - "31912": "Ġholog", - "31913": "ĠPuzzles", - "31914": "ĠGoes", - "31915": "erenn", - "31917": "ãģı", - "31918": "ĠRafael", - "31919": "Ġatten", - "31920": "ĠEmanuel", - "31921": "Ġupro", - "31922": "ĠSusp", - "31923": "Psych", - "31924": "ĠTrainer", - "31925": "ĠNES", - "31926": "ĠHunts", - "31927": "becue", - "31928": "Ġcounselor", - "31929": "Rule", - "31930": "Ġtoxins", - "31931": "Ġbanners", - "31932": "rifice", - "31933": "Ġgreeting", - "31934": "Ġfrenzy", - "31935": "Ġallocate", - "31936": "Ġ*)", - "31937": "expr", - "31939": "ĠChick", - "31940": "ĠTorn", - "31941": "Ġconsolidation", - "31942": "ĠFletcher", - "31943": "switch", - "31944": "frac", - "31945": "clips", - "31946": "ĠMcKin", - "31947": "ĠLunar", - "31948": "Month", - "31949": "ITCH", - "31950": "Ġscholarly", - "31951": "raped", - "31953": "Ġ1910", - "31954": "Ġegreg", - "31955": "Ġinsecure", - "31956": "Ġvictorious", - "31957": "cffffcc", - "31958": "Ġsingled", - "31959": "Ġelves", - "31960": "ĠWond", - "31961": "burst", - "31962": "Ġcamoufl", - "31963": "ĠBLACK", - "31964": "Ġconditioned", - "31965": "çī", - "31966": "answered", - "31967": "Ġcompulsory", - "31968": "ascist", - "31969": "Ġpodcasts", - "31970": "ĠFrankfurt", - "31971": "bnb", - "31972": "Ġneoliberal", - "31973": "ĠKeyboard", - "31974": "ĠBelle", - "31975": "warm", - "31976": "Ġtrusts", - "31977": "Ġinsured", - "31978": "ĠBucc", - "31979": "usable", - "31981": "ĠPlains", - "31982": "Ġ1890", - "31983": "Ġsabotage", - "31984": "Ġlodged", - "31985": "felt", - "31986": "Ġga", - "31987": "ĠNarc", - "31988": "ĠSalem", - "31989": "Ġseventy", - "31990": "ĠBlank", - "31991": "pocket", - "31992": "Ġwhisper", - "31993": "Ġmating", - "31994": "omics", - "31995": "ĠSalman", - "31996": "ĠKad", - "31997": "Ġangered", - "31998": "Ġcollisions", - "31999": "Ġextraordinarily", - "32000": "Ġcoercion", - "32001": "Ghost", - "32002": "birds", - "32003": "èĢ", - "32004": "kok", - "32005": "Ġpermissible", - "32006": "avorable", - "32007": "Ġpointers", - "32008": "Ġdissip", - "32009": "aci", - "32010": "Ġtheatrical", - "32011": "ĠCosmic", - "32012": "Ġforgetting", - "32013": "Ġfinalized", - "32014": "大", - "32015": "yout", - "32016": "library", - "32017": "Ġbooming", - "32018": "ĠBelieve", - "32019": "ĠTeacher", - "32020": "ĠLiv", - "32021": "ĠGOODMAN", - "32022": "ĠDominican", - "32023": "ORED", - "32024": "ĠParties", - "32025": "Ġprecipitation", - "32026": "ĠSlot", - "32027": "Roy", - "32028": "ĠCombined", - "32029": "Ġintegrating", - "32030": "Ġchrome", - "32031": "Ġintestinal", - "32032": "ĠRebell", - "32033": "Ġmatchups", - "32034": "Ġblockbuster", - "32035": "ĠLoren", - "32036": "ĠLevy", - "32037": "Ġpreaching", - "32038": "ĠSending", - "32039": "ĠPurpose", - "32040": "rax", - "32041": "fif", - "32042": "Ġauthoritative", - "32043": "ĠPET", - "32044": "astical", - "32045": "Ġdishon", - "32046": "Ġchatting", - "32047": "Ġ\"$:/", - "32048": "Connection", - "32049": "Ġrecreate", - "32050": "Ġdelinqu", - "32051": "Ġbroth", - "32052": "ĠDirty", - "32053": "ĠAdmin", - "32054": "zman", - "32055": "Ġscholarships", - "32056": "Ġ253", - "32057": "contact", - "32058": "alsa", - "32060": "creen", - "32061": "abbage", - "32062": "Ġ1915", - "32063": "Ġblended", - "32064": "Ġalarmed", - "32065": "Language", - "32067": "Ġblends", - "32068": "ĠChanged", - "32069": "Wolf", - "32070": "Ġhepat", - "32071": "Creating", - "32072": "Ġpersecut", - "32073": "Ġsweetness", - "32074": "arte", - "32075": "Ġforfeiture", - "32076": "ĠRoberto", - "32077": "impro", - "32078": "NFL", - "32079": "ĠMagnet", - "32080": "Detailed", - "32081": "Ġinsignificant", - "32082": "ĠPOLIT", - "32083": "ĠBBQ", - "32084": "ĠCPS", - "32085": "Ġseaw", - "32086": "aminer", - "32087": "mL", - "32088": "endif", - "32089": "finals", - "32090": "Ġ265", - "32091": "uish", - "32092": "Ġ})", - "32093": "ĠProblems", - "32094": "Ġemblem", - "32095": "Ġseriousness", - "32096": "Ġparsing", - "32097": "Ġsubstitution", - "32098": "Ġpressured", - "32099": "Ġrecycled", - "32100": "aleb", - "32101": "Ruby", - "32102": "Ġproficiency", - "32103": "Driver", - "32104": "ĠWester", - "32105": ":'", - "32106": "AFTA", - "32107": "Ġmantle", - "32108": "ĠClayton", - "32109": "flag", - "32110": "Ġpractitioner", - "32111": "covered", - "32112": "ĠStruct", - "32113": "addafi", - "32115": "ĠTownship", - "32116": "ĠHydro", - "32117": "Louis", - "32119": "Ġcondo", - "32120": "ĠTao", - "32121": "Ġutilization", - "32122": "Ġnausea", - "32123": "ĠDems", - "32124": "ridges", - "32125": "pause", - "32126": "Ġformulas", - "32127": "Ġchallenger", - "32129": "Ġdefective", - "32130": "ĠRailway", - "32131": "ĠPubMed", - "32132": "Ġyogurt", - "32133": "lbs", - "32134": "ĠNorfolk", - "32135": "OPE", - "32136": "ĠMoody", - "32137": "Ġdistributor", - "32138": "Ġscrolls", - "32139": "Ġextracts", - "32140": "Stan", - "32141": "Ġviability", - "32142": "Ġexposes", - "32143": "Ġstarvation", - "32144": "ĠSteps", - "32145": "ĠDodd", - "32146": "few", - "32147": "STD", - "32149": "Ġclosures", - "32150": "Ġcomplementary", - "32151": "ĠSasha", - "32152": "umpy", - "32153": "Ġmonet", - "32154": "Ġarticulate", - "32155": "ĠDoct", - "32156": "killer", - "32157": "Ġscrim", - "32158": "Ġ264", - "32159": "Ġprostitutes", - "32160": "Ġsevered", - "32161": "Ġattachments", - "32162": "Ġcooled", - "32163": "Lev", - "32164": "ĠFalk", - "32165": "fail", - "32166": "Ġpoliceman", - "32167": "ĠDag", - "32168": "Ġprayed", - "32169": "ĠKernel", - "32170": "Ġclut", - "32171": "Ġcath", - "32172": "Ġanomaly", - "32173": "Storm", - "32174": "emaker", - "32175": "ĠBreakfast", - "32176": "uli", - "32177": "oire", - "32178": "JJ", - "32179": "hz", - "32180": "Operation", - "32181": "ĠSick", - "32183": "ĠGuatemala", - "32184": "Rate", - "32185": "Ġexposures", - "32186": "faces", - "32187": "ĠArchae", - "32188": "raf", - "32189": "ĠMia", - "32190": "Ġ2025", - "32191": "Ġopaque", - "32192": "Ġdisguised", - "32193": "ĠHeadquarters", - "32194": "Sah", - "32195": "Ġpots", - "32197": "ĠMalf", - "32198": "Ġfrowned", - "32199": "Ġpoisonous", - "32200": "ĠConvers", - "32201": "eeks", - "32202": "Ġcrab", - "32203": ".\"\"", - "32204": "Ġtreason", - "32205": "Ġranc", - "32206": "Ġescalating", - "32207": "Ġwarr", - "32208": "Ġmobs", - "32209": "Ġlamps", - "32210": "ĠSunshine", - "32211": "ĠBrunswick", - "32212": "Phones", - "32213": "Ġspelled", - "32214": "ĠSkip", - "32215": "Ġ2050", - "32216": "Ġ1911", - "32217": "ĠPluto", - "32218": "ĠAmend", - "32219": "Ġmeats", - "32221": "Ġstomp", - "32222": "ĠZhou", - "32223": "ĠLeviathan", - "32224": "ĠHazard", - "32225": "adv", - "32226": "ĠOrwell", - "32227": "Ġaloud", - "32228": "Ġbumper", - "32229": "ĠAnarch", - "32230": "ubuntu", - "32231": "ĠSerious", - "32232": "fitting", - "32233": "ĠOptional", - "32234": "ĠCecil", - "32235": "REAM", - "32236": "Ġserotonin", - "32237": "Ġcultivate", - "32238": "agogue", - "32239": "}\\", - "32240": "Ġmosques", - "32241": "ĠSunny", - "32242": "Ġreactive", - "32243": "revolution", - "32244": "ĠLup", - "32245": "ĠFedora", - "32246": "Ġdefenseman", - "32247": "ĠVID", - "32248": "istine", - "32249": "Ġdrowning", - "32250": "ĠBroadcasting", - "32251": "Ġthriller", - "32252": "ĠScy", - "32253": "Ġaccelerating", - "32254": "Ġdirects", - "32255": "odied", - "32256": "bike", - "32257": "duration", - "32258": "Ġpainfully", - "32259": "Redd", - "32260": "Ġproductions", - "32261": "Ġgag", - "32262": "Ġwhist", - "32263": "Ġsock", - "32264": "Ġinfinitely", - "32265": "ĠConcern", - "32266": "ĠCitadel", - "32267": "Ġlieu", - "32268": "Ġcandles", - "32269": "ogeneous", - "32270": "arger", - "32271": "Ġheavenly", - "32272": "inflammatory", - "32273": "Performance", - "32274": "Cs", - "32275": "ructose", - "32276": "azaki", - "32277": "Ġpessim", - "32278": "Ġinference", - "32279": "Ġpowd", - "32280": "ĠZoe", - "32281": "Ġpaints", - "32282": "Ġdazz", - "32283": "pta", - "32284": "-----------", - "32285": "Ġinspir", - "32286": "ĠExperimental", - "32287": "ĠKnife", - "32288": "regor", - "32289": "bors", - "32290": "Ġshowers", - "32291": "romeda", - "32292": "Ġsaint", - "32293": "Ġbenign", - "32294": "ĠJiang", - "32295": "Ġenvisioned", - "32296": "Ġshroud", - "32297": "IFT", - "32298": "HO", - "32299": "Ġshuff", - "32300": "ĠICC", - "32301": "Ġsegreg", - "32302": "Ġrevisit", - "32303": "ighthouse", - "32304": "Li", - "32305": "Ġsubstrate", - "32306": "ĠSeas", - "32307": "ĠReward", - "32308": "ĠHep", - "32309": "ĠBrass", - "32310": "sbm", - "32311": "Ġeliminates", - "32312": "Ġstamina", - "32313": "ĠVAT", - "32314": "ĠLoan", - "32315": "Ġconstraint", - "32316": "Ġappropriated", - "32317": "Ġpes", - "32318": "ĠALE", - "32319": "ranging", - "32320": "Ġ404", - "32322": "Ġintellectuals", - "32323": "achu", - "32324": "Ġrestructuring", - "32325": "ĠLevin", - "32326": "Ġrunes", - "32327": "Ġdelightful", - "32328": "Ġcarbohydrates", - "32329": "ĠModels", - "32330": "ĠExpo", - "32331": "Ġtransporting", - "32332": "alloc", - "32333": "Ġringing", - "32334": "Samsung", - "32335": "Ġscarcely", - "32336": "ĠURLs", - "32337": "ĠMAS", - "32338": "Ġprototypes", - "32339": "Ġnarrator", - "32340": "ĠCPUs", - "32341": "cdn", - "32342": "ĠBarton", - "32343": "Ġdecidedly", - "32344": "ĠShu", - "32345": "ixir", - "32346": "ocious", - "32347": "ĠMyst", - "32348": "Nintendo", - "32349": "Ġreuse", - "32350": "Ġforgiven", - "32351": "Few", - "32352": "inical", - "32353": "nat", - "32354": "Ġseamless", - "32355": "ĠEva", - "32356": "ĠEVE", - "32357": "ĠJO", - "32358": "landers", - "32359": "Ġsofter", - "32360": "negie", - "32361": "Ġtransient", - "32362": "Ġorbital", - "32363": "Ġfulfil", - "32364": "ĠKom", - "32365": "Hopefully", - "32366": "Ġdynamically", - "32367": "ĠHunger", - "32368": "åĽ", - "32369": "ĠArmenia", - "32370": "elman", - "32371": "berto", - "32372": "Ġpige", - "32373": "ĠIDs", - "32374": "limit", - "32375": "Ġveins", - "32376": "Ġsoaring", - "32377": "packs", - "32378": "Golden", - "32379": "ĠCrab", - "32380": "istor", - "32381": "ĠRPM", - "32382": "Ġ$$", - "32383": "gression", - "32384": "Ġjihadist", - "32385": "Ġgamble", - "32386": "Ġcareg", - "32387": "Ġinflated", - "32388": "Face", - "32389": "ĠFirearms", - "32390": "ĠEmmanuel", - "32391": "âĿ", - "32392": "Ġshocks", - "32393": "grab", - "32394": "Ġsplend", - "32395": "ĠHPV", - "32396": "abortion", - "32397": "Above", - "32398": "Entity", - "32399": "players", - "32400": "Ġcommenced", - "32401": "ulence", - "32402": "Ġfulfillment", - "32403": "Ġembodiments", - "32404": "ĠWelfare", - "32405": "Ġhail", - "32406": "Ġ<@", - "32407": "tten", - "32408": "Ġcatcher", - "32409": "ĠJazeera", - "32410": "Ġvolcano", - "32411": "Ġstabilize", - "32412": "ĠHandler", - "32413": "Ġintensified", - "32414": "ĠAbrams", - "32415": "Ġhumiliation", - "32416": "paced", - "32418": "ĠCentOS", - "32419": "Specific", - "32420": "Ġheed", - "32421": "ĠCAM", - "32422": "ĠGalile", - "32423": "Die", - "32424": "Ġabolished", - "32425": "ĠThomson", - "32426": "ĠTeachers", - "32427": "ĠWass", - "32428": "jong", - "32429": "ĠISBN", - "32430": "ĠAllies", - "32431": "shake", - "32432": "å·", - "32433": "vict", - "32434": "Howard", - "32435": "Ġdeem", - "32436": "Ġexceedingly", - "32437": "ĠSmartstocks", - "32438": "ibe", - "32439": "Ġdoorway", - "32440": "Ġcompeted", - "32441": "igmat", - "32442": "Ġnationalists", - "32443": "Ġgroom", - "32444": "ĠKeen", - "32445": "Ġdisposable", - "32446": "decl", - "32447": "ĠTolkien", - "32448": "ĠScheme", - "32449": "Ġbiod", - "32450": "Ġavid", - "32451": "ĠElon", - "32452": "agar", - "32453": "ĠTSA", - "32454": "Roman", - "32455": "Ġartificially", - "32456": "Ġadvisors", - "32457": "XL", - "32458": "ĠInferno", - "32460": "Ġtedious", - "32461": "ĠPhotography", - "32462": "ĠCarrie", - "32463": "Ġtrope", - "32464": "ĠSandra", - "32465": "Ġdecimal", - "32466": "Queen", - "32467": "ĠGundam", - "32468": "ĠOM", - "32469": "otech", - "32470": "NBA", - "32471": "Ġ1932", - "32472": "Ġentrenched", - "32473": "ĠMarion", - "32474": "Ġfraternity", - "32475": "Labour", - "32476": "Henry", - "32477": "Ġlatitude", - "32478": "Either", - "32479": "Ġenhances", - "32480": "ĠPotential", - "32481": "Ġshines", - "32482": "idad", - "32483": "Ġbreadth", - "32484": "Ġcapacities", - "32485": "ĠðŁĻĤ", - "32486": "ĠBronx", - "32487": "Ġsexes", - "32488": "Ġdifferentiation", - "32489": "Ġheavyweight", - "32490": "ĠTaj", - "32491": "dra", - "32492": "Ġmigrate", - "32493": "Ġexhaustion", - "32494": "ĠRUN", - "32495": "elsius", - "32496": "ĠCuomo", - "32497": "Ġguitars", - "32498": "Ġclones", - "32499": "ĠSomew", - "32500": "ĠPry", - "32501": "-------------", - "32502": "Ġwarranted", - "32503": "cycles", - "32504": "Ġsalvage", - "32505": "Ġdisks", - "32506": "RANT", - "32507": "ĠNGOs", - "32508": "ĠMartian", - "32509": "\":[{\"", - "32510": "Ġaddicts", - "32511": "ojure", - "32512": "illet", - "32513": "Ġamazingly", - "32514": "artments", - "32515": "pixel", - "32516": "ĠGPUs", - "32517": "Layout", - "32518": "è£", - "32519": "ĠTamil", - "32520": "ĠBasil", - "32521": "Ġimpartial", - "32522": "ĠStructure", - "32523": "fork", - "32524": "bryce", - "32525": "Ġridge", - "32526": "ĠHamburg", - "32527": "rious", - "32528": "Ġblitz", - "32529": "cigarettes", - "32530": "Ġcanned", - "32532": "Ġironically", - "32533": "Ġcompassionate", - "32534": "ĠHawkins", - "32535": ".#", - "32536": "ĠCathedral", - "32537": "Ġrallied", - "32538": "internal", - "32539": "Ġquota", - "32540": "stakes", - "32541": "TEXT", - "32542": "mom", - "32543": "Ġcompletes", - "32544": "Ġ238", - "32545": "Ġshrug", - "32546": "ãĥij", - "32547": "ĠNinth", - "32548": "Ġrevise", - "32549": "ĠProvider", - "32550": "Ġtreacher", - "32551": "Ġquasi", - "32552": "ĠPRES", - "32553": "Ġdeposition", - "32554": "Ġconfidentiality", - "32555": "issors", - "32556": "Ġimbalance", - "32557": "Ġspanning", - "32558": "Ġangular", - "32559": "ĠCul", - "32560": "communication", - "32561": "ĠNora", - "32562": "ĠGenius", - "32563": "opter", - "32564": "Ġsacked", - "32565": "Spot", - "32566": "Ġfinely", - "32567": "ĠCHR", - "32569": "waves", - "32570": "Palest", - "32571": "ĠRohing", - "32572": "NL", - "32573": "è¿", - "32574": "Ġshitty", - "32575": "ĠScalia", - "32577": "Progress", - "32578": "Ġreferencing", - "32579": "Ġclassrooms", - "32580": "abee", - "32581": "Ġsod", - "32582": "hesion", - "32584": "ĠZuckerberg", - "32585": "ĠFinish", - "32586": "ĠScotia", - "32587": "ĠSavior", - "32588": "ĠInstallation", - "32589": "antha", - "32590": "(-", - "32591": "Ġ302", - "32592": "ĠPunk", - "32593": "Ġcrater", - "32594": "youtu", - "32595": "Ġroast", - "32596": "Ġinfluencing", - "32597": "Ġdup", - "32598": "ĠJR", - "32599": "ĠGrav", - "32600": "Ġstature", - "32601": "Ġbathrooms", - "32602": "Aside", - "32603": "Wiki", - "32604": "mean", - "32605": "ĠZak", - "32606": "ĠOnes", - "32607": "ĠNath", - "32608": "Ġhypert", - "32609": "Ġcommencement", - "32610": "Civil", - "32611": "Ġmoderately", - "32612": "Ġdistributors", - "32613": "Ġbreastfeeding", - "32614": "Ġ980", - "32615": "ĠSik", - "32616": "ĠCig", - "32617": "ĠAMER", - "32618": "RIP", - "32619": "ĠCareer", - "32620": "usting", - "32621": "Ġmessed", - "32622": "Ġeh", - "32623": "ĠJensen", - "32624": "/$", - "32625": "Ġblackmail", - "32626": "Ġconversions", - "32627": "Ġscientifically", - "32628": "Ġmantra", - "32629": "paying", - "32630": "Ġivory", - "32631": "ĠCourts", - "32632": "OUGH", - "32633": "auntlet", - "32634": "Serial", - "32635": "Brow", - "32636": "ĠHundreds", - "32638": "Ġpee", - "32639": "Ġlinux", - "32640": "Ġsubmer", - "32641": "ĠPrincipal", - "32643": "ĠDSL", - "32644": "ĠCousins", - "32645": "Ġdoctrines", - "32646": "ĠAthletics", - "32647": "Ġ315", - "32648": "ĠKarma", - "32649": "Ġattent", - "32650": "urger", - "32651": "Ġprescribe", - "32652": "Ġencaps", - "32653": "ĠCame", - "32654": "Ġsecretive", - "32655": "ĠCrimes", - "32656": "dn", - "32657": "Clean", - "32658": "ĠEgyptians", - "32659": "ĠCarpenter", - "32660": "Ġll", - "32661": "Hum", - "32662": "ĠMilo", - "32663": "Ġcapitalists", - "32664": "Ġbriefed", - "32665": "Twe", - "32666": "ĠBasin", - "32667": "elvet", - "32668": "Mos", - "32669": "Ġplunge", - "32670": "ĠKaiser", - "32671": "ĠFuj", - "32672": "illin", - "32673": "Ġsafeguards", - "32674": "Ġoste", - "32675": "ĠOpportunity", - "32676": "ĠMafia", - "32677": "ĠCalling", - "32678": "apa", - "32679": "urban", - "32680": "brush", - "32681": "illard", - "32682": "cé", - "32683": "intelligence", - "32684": "ĠLob", - "32685": "ĠDruid", - "32686": "Ġsmoother", - "32687": "Ġfooting", - "32688": "Ġmotorists", - "32689": "arcity", - "32690": "Ġmasculinity", - "32691": "Ġmism", - "32692": "Ġabdominal", - "32693": "ĠTavern", - "32694": "ĠRoh", - "32695": "Ġescapes", - "32696": "signed", - "32697": "Anthony", - "32698": "Ġsacrificing", - "32699": "Ġintimacy", - "32700": "Ġanterior", - "32701": "ĠKod", - "32702": "Ġmotif", - "32703": "Ġgraz", - "32704": "Ġvisualization", - "32705": "Ġguitarist", - "32706": "ĠTrotsky", - "32707": "magic", - "32708": "Dar", - "32709": "ĠMori", - "32710": "Ġwards", - "32711": "Ġtoilets", - "32712": "lest", - "32713": "Ġteleport", - "32714": "ĠSundays", - "32715": "ĠPlat", - "32716": "ETS", - "32717": "ĠeSports", - "32718": "Patrick", - "32719": "ĠKatherine", - "32720": "enko", - "32721": "Ġhassle", - "32722": "ĠMick", - "32723": "ggles", - "32724": "Ġhob", - "32725": "aintain", - "32726": "Ġairborne", - "32727": "Ġspans", - "32728": "Ġchili", - "32729": "Ġaperture", - "32730": "Ġvolunteered", - "32731": "ĠIncident", - "32732": "ĠFres", - "32733": "ĠVeteran", - "32734": "aughtered", - "32735": "ingo", - "32736": "Ġuninsured", - "32737": "CLOSE", - "32738": "Ġfuse", - "32739": "Ġerotic", - "32740": "Ġadvertise", - "32741": "raising", - "32742": "Texture", - "32743": "Ġattends", - "32744": "ĠREAL", - "32745": "uddled", - "32746": "Ġsmoot", - "32747": "Ġ305", - "32748": "ĠWillis", - "32749": "Ġblond", - "32750": "Analysis", - "32751": "ĠVT", - "32752": "onica", - "32753": "Ġstronghold", - "32754": "RF", - "32755": "NM", - "32756": ".>>", - "32757": "Ġprosperous", - "32758": "Ġboasted", - "32760": "ĠManufacturing", - "32761": "PRESS", - "32762": "gren", - "32763": "Ġpharmacy", - "32764": "ĠRockefeller", - "32765": "kai", - "32766": "Ġthumbs", - "32767": "ĠHut", - "32768": "Ġmotherboard", - "32769": "Ġguardians", - "32770": "ĠAlter", - "32771": "llular", - "32772": "Ġshack", - "32773": "Ġwisely", - "32774": "Ġbackbone", - "32775": "erva", - "32776": "Ġsuicides", - "32777": "ĠMcGregor", - "32778": "ijah", - "32779": "Emer", - "32780": "ĠBrav", - "32781": "Ġdesignate", - "32782": "POST", - "32783": "produced", - "32784": "Ġcleansing", - "32785": "irlwind", - "32786": "existent", - "32787": "ĠHumph", - "32788": "ĠPayne", - "32789": "Ġvested", - "32790": "Å¡", - "32791": "Ġstringent", - "32792": "iona", - "32793": "Ġunsub", - "32794": "Ġsummed", - "32795": "ĠHercules", - "32796": "subject", - "32797": "ĠRagnar", - "32798": "ĠNos", - "32799": "Ġcharacterization", - "32800": "Ġsavvy", - "32801": "ĠDawson", - "32802": "ĠCasino", - "32803": "Ġfri", - "32804": "ĠBarrier", - "32805": "Ġmisinformation", - "32806": "Ġinsulation", - "32807": "Ġcorridors", - "32808": "Ġairplanes", - "32809": "ĠNoct", - "32810": "ahi", - "32811": "Ġ1916", - "32812": "kb", - "32813": "armac", - "32814": "Ġshun", - "32815": "Ġschema", - "32816": "Ġhorrified", - "32817": "Ġ239", - "32818": "aunders", - "32819": "NB", - "32820": "iates", - "32821": "erity", - "32822": "ĠShard", - "32823": "Ġrarity", - "32824": "Ġgrouped", - "32825": "ĠGhana", - "32826": "against", - "32827": "ĠBiological", - "32828": "ĠAware", - "32829": "owell", - "32830": "ÏĦ", - "32831": "ĠBeau", - "32832": "shaw", - "32833": "Hack", - "32834": "ĠJulius", - "32835": "USS", - "32836": "olson", - "32837": "auna", - "32838": "cru", - "32839": "ĠMaurice", - "32840": "ĠIk", - "32841": "Ġsequencing", - "32842": "Ġradicals", - "32843": "Ġ(?,", - "32844": "virtual", - "32845": "Ġanyways", - "32846": "Ġreperc", - "32847": "Ġhandlers", - "32848": "Ġhesitant", - "32849": "éĥ", - "32850": "ĠMF", - "32851": "plementation", - "32852": "associated", - "32853": "Ġcampaigned", - "32854": "ĠYue", - "32855": "utations", - "32856": "ĠYoga", - "32857": "Ġsimmer", - "32858": "Ġrods", - "32859": "Ġmelody", - "32860": "Ġconvoy", - "32861": "videos", - "32862": "Ġscreened", - "32863": "Neg", - "32864": "ochemical", - "32865": "Ġ())", - "32866": "Ġultras", - "32867": "Ġantip", - "32868": "ĠIslanders", - "32870": "Ġfetish", - "32871": "Ġridiculously", - "32872": "ĠKart", - "32873": "Ġmitochondrial", - "32874": "Ġinterfering", - "32875": "Builder", - "32876": "Ġoverfl", - "32877": "Ġacne", - "32878": "ĠMud", - "32879": "ĠKerr", - "32880": "flex", - "32881": "ĠPostal", - "32882": "ĠBaltic", - "32884": "ĠPersons", - "32885": "ourage", - "32886": "HB", - "32887": "ĠMuse", - "32888": "ĠImmortal", - "32889": "ĠDriving", - "32890": "Ġpetitions", - "32891": "Ġsubscript", - "32892": "Ġsorce", - "32893": "ĠProcessor", - "32894": "uton", - "32895": "Sony", - "32896": "Ġphon", - "32897": "Ġraced", - "32898": "ĠAnthrop", - "32899": "Ġdaytime", - "32900": "ĠExercise", - "32901": "Adding", - "32902": "Ġengages", - "32903": "ĠQualcomm", - "32904": "Ġmiracles", - "32905": "Ġmemes", - "32906": "ĠDrink", - "32907": "ĠOrioles", - "32908": "Ġhairs", - "32909": "ĠPolar", - "32910": "athom", - "32911": "Ġslippery", - "32912": "ĠRemy", - "32913": "Ġcaramel", - "32914": "ĠYEAR", - "32915": "Ġalk", - "32916": "Ign", - "32917": "aution", - "32918": "ĠMerlin", - "32919": "ĠCran", - "32920": "Ġapologies", - "32921": "Ġ410", - "32922": "Ġouting", - "32923": "ĠMemories", - "32924": "appointed", - "32925": "Ġcountered", - "32926": "uld", - "32927": "posing", - "32928": "Ġfirewall", - "32929": "ĠWast", - "32930": "ĠWet", - "32931": "worked", - "32932": "seller", - "32933": "Ġrepealed", - "32934": "ereo", - "32935": "assuming", - "32936": "BLIC", - "32937": "mite", - "32938": "ĠCEOs", - "32939": "ĠChapel", - "32940": "elligent", - "32941": "________________________", - "32942": "Dog", - "32943": "Ġwart", - "32944": "Ġsubscriber", - "32945": "sports", - "32946": "Ġbegged", - "32947": "ĠMV", - "32948": "Ġsemif", - "32949": "ethical", - "32950": "Ġpreach", - "32951": "Ġrevital", - "32952": "Ġpunitive", - "32953": "Ġshortcuts", - "32954": "Ġinstituted", - "32955": "ĠWarsaw", - "32956": "Ġabdomen", - "32957": "ĠKING", - "32958": "Ġsuperintendent", - "32959": "Ġfry", - "32960": "ĠGeo", - "32961": "TOR", - "32962": "Ġcontradictions", - "32963": "aptic", - "32964": "Ġlandscapes", - "32965": "bugs", - "32966": "Ġclust", - "32967": "Ġvolley", - "32968": "cribed", - "32969": "Ġtandem", - "32970": "Ġrobes", - "32971": "WHAT", - "32972": "Ġpromoter", - "32973": "Ġeloqu", - "32974": "reviewed", - "32975": "ĠDK", - "32976": "ĠPlato", - "32977": "Ġfps", - "32978": "Tank", - "32979": "ĠDerrick", - "32980": "Ġprioritize", - "32981": "asper", - "32982": "ĠHonduras", - "32983": "ĠCompleted", - "32984": "nec", - "32985": "Ġmog", - "32986": "nir", - "32987": "ĠMayo", - "32988": "DEF", - "32989": "stall", - "32990": "inness", - "32991": "ĠVolkswagen", - "32992": "Ġprecaution", - "32993": "ĠMell", - "32994": "iak", - "32995": "istries", - "32996": "Ġ248", - "32997": "Ġoverlapping", - "32998": "Senate", - "32999": "ĠEnhance", - "33000": "resy", - "33001": "racial", - "33002": "ORTS", - "33003": "ĠMormons", - "33004": "Strong", - "33005": "ĠCoch", - "33006": "Mexico", - "33007": "ĠMaduro", - "33008": "Ġjars", - "33009": "Ġcane", - "33010": "Wik", - "33011": "olla", - "33012": "ifference", - "33013": "Ġphysicist", - "33014": "ĠMaggie", - "33015": "Ġ285", - "33016": "Ġdepiction", - "33017": "ĠMcLaren", - "33018": "Ju", - "33019": "Ġslows", - "33020": "Ġcommissioners", - "33021": "ĠWillow", - "33022": "ĠExplos", - "33023": "hovah", - "33024": "Ġtechnician", - "33025": "Ġhomicides", - "33026": "ĠFlav", - "33027": "ĠTruman", - "33028": "Ġ10000", - "33029": "uctor", - "33030": "Ġshader", - "33031": "Newsletter", - "33033": "Ġrever", - "33034": "Ġhardened", - "33035": "Ġwhereabouts", - "33036": "Ġredevelop", - "33037": "Ġcarbs", - "33038": "Ġtravers", - "33039": "Ġsquirrel", - "33040": "Ġfollower", - "33041": "Ġsings", - "33043": "Ġrabbits", - "33044": "emonium", - "33045": "Ġdocumenting", - "33046": "Ġmisunderstood", - "33047": ")'", - "33048": "Rick", - "33049": "ggies", - "33050": "Ġpremie", - "33051": "Ġskating", - "33052": "Ġpassports", - "33053": "Ġfists", - "33054": "ageddon", - "33055": "Haw", - "33056": "ACP", - "33057": "080", - "33058": "ĠThoughts", - "33059": "ĠCarlson", - "33060": "Ġpriesthood", - "33061": "hua", - "33062": "Ġdungeons", - "33063": "ĠLoans", - "33064": "Ġantis", - "33065": "Ġfamiliarity", - "33066": "ĠSabb", - "33067": "opal", - "33068": "ĠInk", - "33069": "strike", - "33070": "Ġcram", - "33071": "Ġlegalized", - "33072": "Ġcuisine", - "33073": "Ġfibre", - "33074": "Travel", - "33075": "ĠMonument", - "33076": "ODY", - "33077": "ethy", - "33078": "Ġinterstate", - "33079": "ĠPUR", - "33080": "emporary", - "33081": "ĠArabian", - "33082": "developed", - "33083": "Ġsaddle", - "33084": "Ġgithub", - "33085": "ĠOffer", - "33086": "ĠISP", - "33087": "rolet", - "33088": "ĠSUPER", - "33089": "ĠDenis", - "33090": "Ġmultiplier", - "33091": "Ġstirred", - "33092": "Interestingly", - "33093": "Ġcustomary", - "33094": "Ġbilled", - "33095": "hex", - "33096": "Ġmultiplied", - "33097": "Ġflipping", - "33098": "ĠCrosby", - "33099": "Ġfundamentals", - "33100": "iae", - "33101": "ĠPlayed", - "33102": "ĠAtom", - "33103": "amazon", - "33104": "ĠFlam", - "33105": "eez", - "33106": "activated", - "33107": "Ġtablespoon", - "33108": "Ġliberalism", - "33109": "ĠPalin", - "33110": "ĠPatel", - "33111": "Num", - "33112": "ĠTAM", - "33113": "Ġsurn", - "33114": "ĠReloaded", - "33115": "Ġcoined", - "33116": "\"],", - "33117": "ĠClash", - "33118": "ĠAgu", - "33119": "Ġpragmatic", - "33120": "ĠActivate", - "33121": "Ġ802", - "33122": "Ġtrailers", - "33123": "Ġsilhou", - "33124": "Ġprobes", - "33125": "Ġcircus", - "33126": "ĠBain", - "33127": "ĠLindsay", - "33128": "ĠAbbey", - "33129": "Delivery", - "33130": "Ġconcession", - "33131": "Ġgastro", - "33132": "ĠSprite", - "33133": "ÄŁ", - "33134": "andel", - "33135": "Ġgimm", - "33136": "Ġautobi", - "33137": "ĠTurtle", - "33138": "Ġwonderfully", - "33139": "ĠHaram", - "33140": "ĠWorldwide", - "33141": "ĠHandle", - "33142": "Ġtheorists", - "33143": "Ġsleek", - "33144": "ĠZhu", - "33145": "ographically", - "33146": "EGA", - "33147": "ĠOwners", - "33148": "aths", - "33149": "ĠAntarctic", - "33150": "natal", - "33151": "=\"\"", - "33152": "flags", - "33153": "````", - "33154": "Ġsul", - "33155": "Kh", - "33156": "Ġpotassium", - "33157": "Ġlineman", - "33158": "Ġcereal", - "33159": "ĠSeasons", - "33160": "Ġ2022", - "33161": "Ġmathematic", - "33162": "Ġastronomers", - "33163": "professional", - "33164": "Ġfares", - "33165": "cknowled", - "33166": "Ġchi", - "33167": "Ġyoungsters", - "33168": "Ġmistakenly", - "33169": "Ġhemisphere", - "33170": "ĠDivinity", - "33171": "rone", - "33172": "Ġ\",", - "33173": "rings", - "33174": "Ġattracts", - "33175": "vana", - "33176": "å¹", - "33177": "CAP", - "33178": "Ġplaylist", - "33179": "Ġporch", - "33180": "ãģ£", - "33181": "Ġincorporates", - "33182": "Ġsoak", - "33183": "Ġasserting", - "33184": "ĠTerrorism", - "33185": "ĠPablo", - "33186": "Ja", - "33187": "cester", - "33188": "Ġfearing", - "33189": "ĠPrayer", - "33190": "Ġescalated", - "33191": "GW", - "33192": "Ġrobe", - "33193": "ĠBrighton", - "33194": "acists", - "33195": "ĠSymphony", - "33196": "ĠDwarf", - "33197": "ĠParade", - "33198": "ĠLego", - "33199": "Ġinexpl", - "33200": "Ġlords", - "33201": "leaf", - "33202": "RAG", - "33203": "liber", - "33204": "Ġcigars", - "33205": "ĠJehovah", - "33207": "WINDOWS", - "33208": "ĠLiberia", - "33209": "ebus", - "33210": "Heavy", - "33211": "Ġlubric", - "33212": "ĠRW", - "33213": "anguages", - "33214": "Ġnarrowed", - "33215": "computer", - "33216": "ĠEmber", - "33217": "Ġmurdering", - "33218": "Ġdownstream", - "33219": "ĠTuls", - "33220": "ĠTables", - "33221": "Topic", - "33222": "ĠAccuracy", - "33223": "=/", - "33224": "lost", - "33225": "ĠRei", - "33226": "Ġprogresses", - "33227": "bear", - "33228": "Ġestablishments", - "33229": "Justin", - "33230": "ĠPeach", - "33231": "ĠGomez", - "33232": "å¿", - "33233": "ĠTriangle", - "33234": "Ident", - "33235": "ĠHive", - "33236": "Resources", - "33237": "Ġmixes", - "33238": "ĠAssuming", - "33239": "Mu", - "33240": "Ġhypoc", - "33241": "Ġsane", - "33242": "ĠWan", - "33243": "idious", - "33244": "Success", - "33245": "Ġio", - "33246": "Angel", - "33247": "Ġdangerously", - "33248": "ĠCreature", - "33249": "WORK", - "33250": ":[", - "33251": "ĠKatrina", - "33252": "Listener", - "33253": "Miller", - "33254": "ĠIdlib", - "33255": "hang", - "33256": "Ġcircumvent", - "33257": "href", - "33258": "Ġcelestial", - "33259": "ĠWeeks", - "33260": "ĠPug", - "33261": "ĠDalton", - "33262": "Ġsubpoena", - "33263": "uku", - "33264": "Ġpersisted", - "33265": "pei", - "33266": "olding", - "33267": "ĠDocuments", - "33268": "ĠHast", - "33269": "ĠCENT", - "33270": "Ġprimer", - "33271": "Ġsynonymous", - "33272": "Ġnib", - "33273": "ombs", - "33274": "Ġnotation", - "33275": "ĠDish", - "33276": "ĠAtmosp", - "33277": "Ġforbid", - "33278": "ĠANG", - "33279": "pattern", - "33280": "los", - "33281": "Ġprojectiles", - "33282": "brown", - "33283": ".\",", - "33284": "ĠVenom", - "33285": "Ġfiercely", - "33286": "ublished", - "33287": "ĠUran", - "33288": "ĠNicarag", - "33290": "ĠCAL", - "33291": "OTOS", - "33292": "ĠMiracle", - "33293": "ĠEnchant", - "33294": "Ġguarding", - "33295": "append", - "33296": "Attach", - "33297": "Ġleveled", - "33298": "Ġcondoms", - "33299": "ihilation", - "33301": "Ġnightmares", - "33302": "ĠTHEY", - "33303": "ĠSTART", - "33304": "ĠKinn", - "33305": "Ġroommate", - "33306": "Ġhygiene", - "33307": "opping", - "33308": "Job", - "33309": "Ġlvl", - "33310": "ĠVER", - "33311": "ĠKeeping", - "33312": "abetic", - "33313": "Ġformatting", - "33314": "erala", - "33315": "Ġrevisions", - "33316": "Ġresurg", - "33317": "Tel", - "33318": "ĠGoodman", - "33320": "pod", - "33321": "Ġindisp", - "33322": "ĠTranslation", - "33323": "Ġgown", - "33324": "ĠMund", - "33325": "Ġcis", - "33326": "Ġbystand", - "33327": "collect", - "33328": "ĠPunjab", - "33329": "actively", - "33330": "ĠGamb", - "33331": "tell", - "33332": "Ġimporting", - "33333": "gencies", - "33334": "Ġlocom", - "33335": "ĠBrill", - "33336": "Holy", - "33337": "ĠBerger", - "33338": "Ġshowdown", - "33339": "Ġresponders", - "33340": "ILY", - "33341": "Ġtakedown", - "33342": "leted", - "33343": "Ġmattered", - "33344": "Ġpredictive", - "33345": "Ġoverlay", - "33346": "GPU", - "33347": "ĠVick", - "33348": "Ġconveyed", - "33349": "Tab", - "33350": "peer", - "33351": "Scan", - "33352": "Ġdefensively", - "33353": "vae", - "33354": "Ġapproving", - "33355": "Ġtiers", - "33356": "ĠVia", - "33357": "querade", - "33358": "ĠSaudis", - "33359": "Ġdemolished", - "33360": "ĠProphe", - "33361": "Ġmono", - "33362": "Ġhospitality", - "33363": "HAM", - "33364": "ĠAriel", - "33365": "MOD", - "33366": "ĠTorah", - "33367": "Ġblah", - "33368": "ĠBelarus", - "33369": "erential", - "33370": "ĠTuc", - "33371": "Ġbanker", - "33373": "Ġmosquit", - "33374": "ĠScientist", - "33375": "ĠMusical", - "33376": "Ġhust", - "33377": "Shift", - "33378": "Ġtorment", - "33379": "Ġstandoff", - "33380": "Educ", - "33381": "ĠFog", - "33382": "Ġamplifier", - "33383": "Shape", - "33384": "Instance", - "33385": "ĠCritics", - "33386": "Ġdaemon", - "33387": "Houston", - "33388": "Ġmattress", - "33389": "ĠIDF", - "33390": "Ġobscene", - "33391": "ĠAmer", - "33392": "hetti", - "33393": "Ġcompiling", - "33395": "verett", - "33396": "ĠReduction", - "33397": "istration", - "33398": "ĠBlessed", - "33399": "ĠBachelor", - "33401": "Ġprank", - "33402": "ĠVulcan", - "33403": "dding", - "33404": "Ġmourning", - "33405": "ĠQuint", - "33406": "ĠBlaster", - "33407": "testing", - "33408": "Ġsediment", - "33409": ">>>", - "33410": "ĠEternity", - "33411": "ĠWHERE", - "33412": "ĠMaze", - "33413": "Ġreacting", - "33414": "ĠAlv", - "33415": "omsday", - "33416": "ĠCRA", - "33417": "Ġtranslator", - "33418": "Ġbogus", - "33419": "atu", - "33420": "Website", - "33421": "olls", - "33422": "Ġbaptism", - "33423": "Ġsibling", - "33424": "ĠAutumn", - "33425": "vez", - "33426": "ãģ®é", - "33427": "guards", - "33428": "Georg", - "33429": "assadors", - "33430": "ĠFreud", - "33431": "Ġcontinents", - "33432": "ĠRegistry", - "33433": "Bernie", - "33434": "ĸļ士", - "33435": "Ġtolerant", - "33436": "ĠUW", - "33437": "Ġhorribly", - "33439": "ĠMIDI", - "33440": "Ġimpatient", - "33441": "ocado", - "33442": "eri", - "33443": "ĠWorst", - "33444": "ĠNorris", - "33445": "ĠTalking", - "33446": "Ġdefends", - "33447": "ensable", - "33448": "Ġ2021", - "33449": "Ġanatomy", - "33450": "Lew", - "33451": "Ġdrawer", - "33452": "ĠCanberra", - "33453": "Ġpatriotic", - "33454": "é¾įåĸļ士", - "33455": "ĠAvg", - "33456": "ARM", - "33457": "Ġundisclosed", - "33458": "Ġfarewell", - "33460": "bable", - "33461": "ĠAllison", - "33462": "OLOG", - "33463": "Ġconco", - "33464": "tight", - "33465": "ĠACPI", - "33466": "ĠMines", - "33467": "lich", - "33468": "ĠâĶľ", - "33469": "represented", - "33471": "Ġenthusiast", - "33472": "OTS", - "33473": "bil", - "33474": "ĠIngredients", - "33475": "Ġinventor", - "33476": "ĠMySQL", - "33477": "³³³", - "33478": "ĠABOUT", - "33479": "within", - "33480": "Ġmk", - "33481": "Bul", - "33482": "ĠFake", - "33483": "Ġdraconian", - "33484": "Wa", - "33485": "helm", - "33486": "ĠTerran", - "33487": "erville", - "33488": "Ġcommonplace", - "33489": "SIZE", - "33490": "Ġ\"<", - "33491": "replace", - "33492": "ographs", - "33493": "ĠSELECT", - "33494": "incible", - "33495": "ĠMostly", - "33496": "ĠSheffield", - "33497": "ĠIDE", - "33498": "uggle", - "33499": "Ġcitations", - "33500": "hurst", - "33501": "ĠUnix", - "33502": "Ġunleash", - "33503": "ĠPiper", - "33504": "ĠNano", - "33505": "Ġsuccumb", - "33506": "Ġreluctance", - "33507": "Ġ2500", - "33508": "ĠMerchant", - "33509": "Ġwiret", - "33510": "Ġcombos", - "33511": "ĠBirthday", - "33512": "Ġcharcoal", - "33513": "ĠUPS", - "33514": "ĠFairfax", - "33515": "Ġdriveway", - "33516": "ĠTek", - "33517": "ĠPitch", - "33518": "overe", - "33519": "Ġtechnicians", - "33520": "ĠActual", - "33521": "flation", - "33522": "ĠFiscal", - "33523": "ĠEmpty", - "33524": "anamo", - "33525": "Ġmagnesium", - "33526": "Ġslut", - "33527": "Ġgrowers", - "33528": "Investigators", - "33529": "():", - "33530": "ĠSatellite", - "33531": "ĠKeynes", - "33532": "missive", - "33533": "lane", - "33534": "Ġborough", - "33536": "ĠTEAM", - "33537": "ĠBethesda", - "33538": "CV", - "33539": "hower", - "33540": "ĠRAD", - "33541": "Ġchant", - "33542": "ĠRiy", - "33543": "Ġcompositions", - "33544": "Ġmildly", - "33545": "Ġmeddling", - "33546": "Ġagility", - "33547": "aneers", - "33549": "Ġsynth", - "33550": "linger", - "33552": "Ġexclaimed", - "33553": "Party", - "33554": "Ġcontamin", - "33555": "ĠManor", - "33556": "ĠRespond", - "33557": "Ġpraising", - "33558": "Ġmanners", - "33559": "fleet", - "33560": "Summer", - "33561": "ĠLynd", - "33562": "ĠDefinitely", - "33563": "grim", - "33564": "Ġbowling", - "33565": "stri", - "33566": "çĽ", - "33567": "ynt", - "33568": "Ġmandates", - "33569": "DIV", - "33570": "Ġreconcile", - "33571": "views", - "33572": "ĠDamon", - "33573": "vette", - "33574": "Flo", - "33575": "ĠGreatest", - "33576": "ilon", - "33577": "icia", - "33578": "Ġportrayal", - "33579": "Ġcushion", - "33582": "ossal", - "33583": "Applic", - "33584": "scription", - "33585": "Ġmitigation", - "33586": "ATS", - "33587": "pac", - "33588": "Ġerased", - "33589": "Ġdeficiencies", - "33590": "ĠHollande", - "33591": "ĠXu", - "33592": "Ġbred", - "33593": "Ġpregnancies", - "33594": "femin", - "33595": "Ġemph", - "33596": "Ġplanners", - "33597": "Ġoutper", - "33598": "uttering", - "33599": "Ġperpetrator", - "33600": "Ġmotto", - "33601": "ĠEllison", - "33602": "ĠNEVER", - "33603": "Ġadmittedly", - "33604": "ARI", - "33605": "ĠAzerbaijan", - "33606": "Ġmillisec", - "33607": "Ġcombustion", - "33608": "ĠBottle", - "33609": "ĠLund", - "33610": "ĠPs", - "33611": "ĠDress", - "33612": "Ġfabricated", - "33613": "Ġbattered", - "33614": "Ġsidel", - "33615": "ĠNotting", - "33616": "Foreign", - "33617": "ĠJerome", - "33618": "020", - "33619": "ĠArbit", - "33620": "Ġknots", - "33621": "ĠRIGHT", - "33622": "Moving", - "33623": "ãģĻ", - "33624": "Ġsurgeries", - "33625": "Ġcourthouse", - "33626": "Ġmastered", - "33627": "Ġhovering", - "33628": "ĠBran", - "33629": "ĠAlison", - "33630": "Ġsafest", - "33631": "military", - "33632": "Ġbullied", - "33633": "Ġbarrage", - "33634": "Reader", - "33635": "ESE", - "33636": "ĠGeographic", - "33637": "Tools", - "33639": "ĠGeek", - "33640": "roth", - "33641": "glers", - "33642": "ĠFIN", - "33643": "Ïģ", - "33644": "ĠAston", - "33645": "altern", - "33647": "Ġveterin", - "33648": "Gamer", - "33649": "Ġintel", - "33650": "renches", - "33651": "Shield", - "33652": "Ġamnesty", - "33653": "ĠBhar", - "33654": "Ġpiled", - "33655": "Ġhonorable", - "33656": "ĠInstitutes", - "33657": "Ġsoaked", - "33658": "Ġcoma", - "33659": "ĠEFF", - "33661": "bytes", - "33662": "ĠGmail", - "33663": "lein", - "33664": "ĠCanadiens", - "33665": "material", - "33666": "Il", - "33667": "Ġinstructors", - "33668": "ĠKY", - "33669": "Ġconceive", - "33670": "ubb", - "33671": "ĠPossible", - "33672": "Ġeasing", - "33673": "ĠChristina", - "33674": "Ġcaric", - "33675": "ĠHDR", - "33676": "ROM", - "33677": "Ġshovel", - "33678": "delete", - "33679": "Ġpuff", - "33680": "ĠChanging", - "33681": "Ġseamlessly", - "33682": "Attribute", - "33683": "Ġacquisitions", - "33684": "akery", - "33685": "ĠEF", - "33686": "Ġautistic", - "33687": "ĠTakes", - "33688": "ĠPowder", - "33689": "ĠStir", - "33691": "ĠBubble", - "33692": "settings", - "33693": "ĠFowler", - "33694": "Ġmustard", - "33695": "Ġmoreover", - "33696": "Ġcopyrighted", - "33697": "ĠLEDs", - "33699": "æī", - "33700": "ĠHIS", - "33701": "enf", - "33702": "Ġcustod", - "33703": "ĠHuck", - "33704": "Gi", - "33705": "Ġimg", - "33706": "Answer", - "33707": "Ct", - "33708": "jay", - "33709": "ĠInfrastructure", - "33710": "Ġfederally", - "33711": "Loc", - "33712": "Ġmicrobes", - "33713": "Ġoverrun", - "33714": "dds", - "33715": "otent", - "33716": "adiator", - "33717": ">>>>>>>>", - "33718": "Ġtornado", - "33719": "Ġadjud", - "33720": "Ġintrigued", - "33721": "Ġsi", - "33722": "ĠRevelation", - "33723": "progress", - "33724": "Ġburglary", - "33725": "ĠSaiyan", - "33726": "ĠKathy", - "33727": "Ġserpent", - "33728": "ĠAndreas", - "33729": "Ġcompel", - "33730": "essler", - "33731": "ĠPlastic", - "33732": "ĠAdvent", - "33733": "ĠPositive", - "33734": "ĠQt", - "33735": "ĠHindus", - "33736": "registered", - "33737": "ularity", - "33738": "Ġrighteousness", - "33739": "Ġdemonic", - "33740": "uitive", - "33741": "ĠBDS", - "33742": "ĠGregg", - "33743": "cia", - "33744": "ĠCrusade", - "33745": "ĠSinai", - "33746": "WARE", - "33747": "+(", - "33748": "Ġmell", - "33749": "Ġderail", - "33750": "yards", - "33751": "Ast", - "33752": "Ġnoticeably", - "33753": "ĠOber", - "33754": "Ram", - "33755": "Ġunnoticed", - "33756": "Ġseq", - "33757": "avage", - "33758": "Ts", - "33759": "Ġ640", - "33760": "Ġconcede", - "33761": "Ġ])", - "33762": "Fill", - "33763": "Ġcaptivity", - "33764": "ĠImprovement", - "33765": "ĠCrusader", - "33766": "araoh", - "33767": "MAP", - "33768": "æĹ", - "33769": "Ġstride", - "33770": "always", - "33771": "Fly", - "33772": "Nit", - "33773": "Ġalgae", - "33774": "ĠCooking", - "33775": "ĠDoors", - "33776": "Malley", - "33777": "Ġpolicemen", - "33778": "ãģį", - "33779": "Ġastronaut", - "33780": "accessible", - "33782": "ĠRAW", - "33783": "cliffe", - "33784": "udicrous", - "33785": "Ġdepended", - "33786": "alach", - "33787": "Ġventures", - "33788": "rake", - "33789": "Ġtits", - "33790": "ĠHou", - "33791": "Ġcondom", - "33792": "ormonal", - "33793": "Ġindent", - "33794": "Ġuploading", - "33795": "Footnote", - "33796": "Important", - "33797": "Ġ271", - "33798": "Ġmindful", - "33799": "Ġcontends", - "33800": "Cra", - "33801": "Ġcalibr", - "33802": "ĠOECD", - "33803": "plugin", - "33804": "Fat", - "33805": "ĠISS", - "33806": "ĠDynamics", - "33807": "ansen", - "33809": "'),", - "33810": "Ġsprite", - "33811": "Ġhandheld", - "33812": "ĠHipp", - "33813": "=~=~", - "33814": "Trust", - "33815": "Ġsemantics", - "33816": "ĠBundes", - "33817": "ĠReno", - "33818": "ĠLiterature", - "33819": "sense", - "33820": "Gary", - "33821": "ĠAeg", - "33822": "ĠTrin", - "33823": "EEK", - "33824": "Ġcleric", - "33825": "ĠSSH", - "33826": "Ġchrist", - "33827": "Ġinvading", - "33828": "ibu", - "33829": "Ġenum", - "33830": "aura", - "33831": "Ġallege", - "33832": "ĠIncredible", - "33833": "BBC", - "33834": "Ġthru", - "33835": "Ġsailed", - "33836": "Ġemulate", - "33837": "Ġinsecurity", - "33838": "Ġcrou", - "33839": "Ġaccommodations", - "33840": "Ġincompetent", - "33841": "Ġslips", - "33842": "ĠEarthqu", - "33843": "sama", - "33844": "ILLE", - "33845": "ĠiPhones", - "33846": "asaki", - "33847": "Ġbye", - "33848": "Ġard", - "33849": "Ġextras", - "33850": "Ġslaughtered", - "33851": "Ġcrowdfunding", - "33852": "resso", - "33853": "Ġfilib", - "33854": "ĠERROR", - "33855": "ĠTLS", - "33856": "egg", - "33857": "ĠItal", - "33858": "Ġenlist", - "33859": "ĠCatalonia", - "33860": "ĠScots", - "33861": "Ġsergeant", - "33862": "Ġdissolve", - "33863": "NH", - "33864": "Ġstandings", - "33865": "rique", - "33866": "IQ", - "33867": "Ġbeneficiary", - "33868": "Ġaquarium", - "33869": "YouTube", - "33870": "ĠPowerShell", - "33871": "Ġbrightest", - "33872": "ĠWarrant", - "33873": "Sold", - "33874": "Writing", - "33875": "Ġbeginnings", - "33876": "ĠReserved", - "33877": "ĠLatinos", - "33878": "heading", - "33879": "Ġ440", - "33880": "Ġrooftop", - "33881": "ATING", - "33882": "Ġ390", - "33883": "VPN", - "33884": "Gs", - "33885": "kernel", - "33886": "turned", - "33887": "Ġpreferable", - "33888": "Ġturnovers", - "33889": "ĠHels", - "33890": "Sa", - "33891": "ĠShinji", - "33892": "veh", - "33893": "ĠMODULE", - "33894": "Viol", - "33895": "Ġexiting", - "33896": "Ġjab", - "33897": "ĠVanilla", - "33898": "Ġacron", - "33899": "ĠGap", - "33900": "bern", - "33901": "Ak", - "33902": "ĠMcGu", - "33903": "Ġendlessly", - "33904": "ĠFarage", - "33905": "ĠNoel", - "33906": "Va", - "33907": "MK", - "33908": "Ġbrute", - "33909": "ĠKru", - "33910": "ĠESV", - "33911": "ĠOlivia", - "33912": "âĢł", - "33913": "ĠKaf", - "33914": "Ġtrusting", - "33915": "Ġhots", - "33917": "Ġmalaria", - "33918": "Ġjson", - "33919": "Ġpounding", - "33920": "ortment", - "33921": "Country", - "33922": "Ġpostponed", - "33923": "Ġunequiv", - "33924": "?),", - "33925": "ĠRooney", - "33926": "udding", - "33927": "ĠLeap", - "33928": "urrence", - "33929": "shapeshifter", - "33930": "ĠHAS", - "33931": "osate", - "33932": "Ġcavern", - "33933": "Ġconservatism", - "33934": "ĠBAD", - "33935": "Ġmileage", - "33936": "Ġarresting", - "33937": "Vaults", - "33938": "Ġmixer", - "33939": "Democratic", - "33940": "ĠBenson", - "33941": "Ġauthored", - "33943": "Ġproactive", - "33944": "ĠSpiritual", - "33945": "tre", - "33946": "Ġincarcerated", - "33947": "ĠSort", - "33948": "Ġpeaked", - "33949": "Ġwielding", - "33950": "reciation", - "33951": "×Ļ×", - "33952": "Patch", - "33953": "ĠEmmy", - "33954": "Ġexqu", - "33955": "tto", - "33956": "ĠRatio", - "33957": "ĠPicks", - "33958": "ĠGry", - "33959": "phant", - "33960": "Ġfret", - "33961": "Ġethn", - "33962": "Ġarchived", - "33963": "%-", - "33964": "cases", - "33965": "ĠBlaze", - "33966": "Ġimb", - "33967": "cv", - "33968": "yss", - "33969": "imony", - "33970": "Ġcountdown", - "33971": "Ġawakening", - "33972": "ĠTunisia", - "33973": "ĠRefer", - "33974": "ĠMJ", - "33975": "Ġunnatural", - "33976": "ĠCarnegie", - "33977": "izen", - "33978": "ĠNuggets", - "33979": "hess", - "33980": "Ġevils", - "33982": "Ġintroductory", - "33983": "loving", - "33984": "ĠMcMahon", - "33985": "Ġambiguity", - "33986": "Label", - "33987": "ĠAlmighty", - "33988": "Ġcoloring", - "33989": "ĠClaus", - "33990": "setting", - "33991": "NULL", - "33992": "ĠFavorite", - "33993": "ĠSIG", - "33994": ">(", - "33995": "ĠShiva", - "33996": "ĠMayer", - "33997": "Ġstormed", - "33998": "ĠCoverage", - "33999": "weapons", - "34000": "igham", - "34001": "Ġunanswered", - "34002": "Ġleve", - "34003": "Ġcoy", - "34004": "cas", - "34005": "bags", - "34006": "asured", - "34007": "Seattle", - "34008": "ĠSantorum", - "34009": "serious", - "34010": "Ġcourageous", - "34011": "ĠSoup", - "34012": "Ġconfiscated", - "34013": "Ġ///", - "34014": "Ġunconventional", - "34015": "Ġmoms", - "34016": "ĠRohingya", - "34017": "ĠOrchestra", - "34018": "ĠPotion", - "34019": "Ġdiscredit", - "34020": "ĠFIL", - "34021": "fixed", - "34022": "ĠDeer", - "34023": "doi", - "34024": "ĠDimension", - "34025": "Ġbureaucrats", - "34026": "eteen", - "34027": "ĠactionGroup", - "34028": "ohm", - "34029": "Ġbumps", - "34030": "ĠUtility", - "34031": "Ġsubmarines", - "34032": "renheit", - "34033": "research", - "34034": "ĠShapiro", - "34035": "Ġsketches", - "34036": "Ġdeceptive", - "34037": "ĠVil", - "34038": "esame", - "34039": "ĠEssentially", - "34040": "Ġrampage", - "34041": "isky", - "34042": "Ġmuttered", - "34043": "thritis", - "34044": "Ġ236", - "34045": "fet", - "34046": "bars", - "34047": "Ġpupil", - "34048": "ĠThou", - "34049": "oS", - "34050": "song", - "34051": "Ġfractured", - "34052": "Ġrevert", - "34053": "picture", - "34054": "Ġcriterion", - "34055": "usher", - "34056": "Ġrepercussions", - "34057": "ĠVintage", - "34058": "ĠSuperintendent", - "34059": "Officers", - "34060": "Ġflagged", - "34061": "Ġblames", - "34062": "Ġinverse", - "34063": "ographers", - "34064": "Ġmakeshift", - "34065": "Ġdevoid", - "34066": "Ġfossils", - "34067": "ĠAristotle", - "34068": "ĠFunds", - "34069": "Ġdepleted", - "34070": "ĠFlu", - "34071": "ĠYuan", - "34072": "Ġwoes", - "34073": "Ġlipid", - "34074": "Ġsitu", - "34075": "requisites", - "34076": "Ġfurnish", - "34077": "ĠSamar", - "34078": "Ġshameful", - "34079": "Ġadversely", - "34080": "Ġadept", - "34081": "Ġremorse", - "34082": "Ġmurderous", - "34083": "uckles", - "34084": "ĠESL", - "34085": "Ġ314", - "34086": "sent", - "34087": "Ġredef", - "34088": "ĠCache", - "34089": "ĠPurs", - "34090": "igans", - "34091": "Ġ460", - "34092": "Ġprescriptions", - "34093": "Ġfres", - "34094": "Fuck", - "34095": "ocrates", - "34096": "Twenty", - "34097": "ĠWeird", - "34098": "ĠToggle", - "34099": "ĠCalled", - "34100": "itizens", - "34101": "Ġpoultry", - "34102": "Ġharvesting", - "34103": "ãĤ¦ãĤ¹", - "34104": "Bottom", - "34105": "Ġcautioned", - "34106": "tn", - "34108": "ĠNikki", - "34109": "Ġevaluations", - "34110": "Ġharassing", - "34111": "Ġbindings", - "34112": "ĠMonetary", - "34113": "Ġhitters", - "34114": "Ġadversary", - "34115": "unts", - "34116": "Ġsetback", - "34117": "Ġencrypt", - "34118": "ĠCait", - "34119": "Ġlows", - "34120": "enges", - "34121": "ĠNorn", - "34122": "Ġbulbs", - "34123": "Ġbottled", - "34124": "ĠVoyager", - "34126": "Ġspheres", - "34127": "politics", - "34128": "Ġsubtract", - "34129": "Ġsensations", - "34130": "Ġappalling", - "34131": "Ġ316", - "34132": "Ġenvironmentally", - "34133": "ĠSTEM", - "34134": "Ġpublishes", - "34136": "Ġdiligence", - "34138": "Ġadvises", - "34139": "Ġpetrol", - "34140": "Ġimagining", - "34141": "Ġpatrols", - "34142": "ĠInteger", - "34143": "ĠAshes", - "34144": "actus", - "34145": "ĠRadiant", - "34146": "ĠLT", - "34147": "itability", - "34148": "htaking", - "34149": "Setting", - "34150": "Ġnuanced", - "34151": "ĠReef", - "34152": "ĠDevelopers", - "34153": "Ni", - "34154": "pieces", - "34156": "License", - "34157": "Ġlowers", - "34158": "ĠOttoman", - "34160": "ooo", - "34161": "Ġquitting", - "34162": "markets", - "34163": "Behind", - "34164": "Ġbasin", - "34165": "Ġdocs", - "34166": "anie", - "34167": "flash", - "34168": "ctl", - "34169": "Ġcivilized", - "34170": "ĠFukushima", - "34171": "\"],\"", - "34172": "ĠKS", - "34173": "ĠHonestly", - "34174": "arat", - "34175": "Ġconstructs", - "34176": "ĠLans", - "34177": "ĠDire", - "34178": "ĠLIKE", - "34179": "ĠTrouble", - "34180": "Ġwithholding", - "34181": "ĠOblivion", - "34182": "Ġsanity", - "34183": "anya", - "34184": "Const", - "34185": "Ġgrocer", - "34186": "ĠCelsius", - "34187": "Ġrecounted", - "34188": "ĠWife", - "34189": "Border", - "34190": "atered", - "34191": "happy", - "34192": "Ġspoiler", - "34193": "Ġlogically", - "34194": "Hall", - "34195": "Ġsucceeding", - "34196": "Ġpolymorph", - "34197": "Ġaxes", - "34198": "ĠShotgun", - "34199": "ĠSlim", - "34200": "ĠPrinciples", - "34201": "ĠLeth", - "34202": "arta", - "34203": "Ġscor", - "34204": "Screenshot", - "34205": "Ġrelaxation", - "34206": "#$#$", - "34207": "Ġdeterrent", - "34208": "iddy", - "34209": "Ġpowerless", - "34210": "Ġlesbians", - "34211": "Ġchords", - "34212": "ĠEdited", - "34213": "selected", - "34214": "Ġseparatists", - "34215": "0002", - "34216": "Ġairspace", - "34217": "Ġturnaround", - "34218": "Ġcunning", - "34219": "PATH", - "34220": "Poly", - "34221": "Ġbombed", - "34222": "Ġtion", - "34223": "xs", - "34224": "Ġwithhold", - "34225": "Ġwaged", - "34226": "ĠLiberties", - "34227": "Flag", - "34228": "Ġcomforting", - "34230": "ĠIris", - "34231": "arers", - "34232": "Ġrag", - "34233": "Ġrelocated", - "34234": "ĠGuarant", - "34235": "Ġstrategically", - "34236": "Ġgamma", - "34237": "uberty", - "34238": "ĠLockheed", - "34239": "gres", - "34240": "Ġgrilled", - "34241": "ĠLowe", - "34242": "stats", - "34243": "ĠRocks", - "34244": "Ġsensing", - "34245": "Ġrenting", - "34246": "ĠGeological", - "34247": "اØ", - "34248": "otrop", - "34249": "Ġsew", - "34250": "Ġimproperly", - "34252": "Ġâĸł", - "34253": "Ġstarving", - "34254": "ĠBj", - "34255": "Discussion", - "34257": "ĠCombo", - "34258": "ĠFixes", - "34259": "NAT", - "34260": "Ġstriving", - "34261": "thora", - "34262": "Ġharvested", - "34263": "ĠPing", - "34264": "Ġplayful", - "34265": "Ġavenues", - "34266": "Ġoccupational", - "34267": "Ġwakes", - "34268": "ĠCourier", - "34269": "Ġdrummer", - "34270": "ĠBrowser", - "34271": "ĠHouth", - "34272": "itu", - "34273": "Ġapparel", - "34274": "paste", - "34275": "Ġhunted", - "34276": "ĠSecondly", - "34277": "lain", - "34278": "XY", - "34279": "ĠPIN", - "34280": "icons", - "34281": "Ġcocktails", - "34282": "Ġsizable", - "34283": "Ġhurdles", - "34284": "estinal", - "34285": "ĠRecreation", - "34286": "Ġeco", - "34288": "ĠDied", - "34289": "mint", - "34290": "Ġfingerprints", - "34291": "Ġdispose", - "34292": "ĠBosnia", - "34293": "tsy", - "34295": "Ġinspected", - "34296": "ĠFou", - "34297": "Ġfuss", - "34298": "Ġambush", - "34299": "ĠRak", - "34300": "Ġmanifested", - "34301": "Prosecut", - "34302": "Ġsuffice", - "34303": "rences", - "34304": "Ġcompensated", - "34305": "ĠCyrus", - "34306": "Ġgenus", - "34307": "ĠWolverine", - "34308": "ĠTrends", - "34309": "Ġhikes", - "34310": "ĠSeen", - "34311": "Ġenrol", - "34312": "Cold", - "34313": "Ġpolitely", - "34314": "ĠSlav", - "34315": "ĠRupert", - "34316": "Ġeyewitness", - "34317": "ĠAlto", - "34318": "Ġuncomp", - "34319": "Ġposterior", - "34320": "Must", - "34321": "ĠHerz", - "34322": "Ġprogressively", - "34323": "Ġ234", - "34324": "Ġindifference", - "34325": "ĠCunningham", - "34326": "Ġacademia", - "34327": "Ġsewer", - "34328": "Ġastounding", - "34329": "ĠAES", - "34330": "rather", - "34331": "Ġeldest", - "34332": "Ġclimbs", - "34333": "ĠAdds", - "34334": "Ġoutcry", - "34335": "Ġcontag", - "34336": "ĠHouses", - "34337": "Ġpept", - "34338": "ĠMelania", - "34339": "interested", - "34340": "ĠUCH", - "34341": "ĠRoots", - "34342": "ĠHubbard", - "34343": "ĠTBD", - "34344": "ĠRomanian", - "34345": "filename", - "34346": "Stone", - "34347": "ĠImpl", - "34348": "Ġchromosome", - "34349": "Cle", - "34350": "dx", - "34351": "Ġscrambled", - "34352": "ĠPt", - "34353": "Ġ242", - "34354": "OPLE", - "34355": "Ġtremendously", - "34356": "Street", - "34357": "Ġcraving", - "34358": "Ġbundled", - "34359": "ĠRG", - "34360": "pipe", - "34361": "Ġinjuring", - "34362": "Ġarcane", - "34363": "Particip", - "34364": "ĠHeroic", - "34365": "sty", - "34366": "Ġtopping", - "34367": "ĠTempest", - "34368": "rentices", - "34369": "bh", - "34370": "Ġparanoia", - "34371": "ĠUnicode", - "34372": "Ġegregious", - "34373": "Ġ\\'", - "34374": "ĠOswald", - "34375": "Ġgravel", - "34376": "ĠSimpsons", - "34377": "Ġbland", - "34378": "ĠGuantanamo", - "34379": "Writer", - "34380": "liners", - "34381": "ĠDice", - "34382": "JC", - "34383": "Ġparity", - "34384": "Ġsided", - "34385": "Ġ237", - "34386": "ĠPyrrha", - "34387": "atters", - "34388": "dk", - "34389": "Fine", - "34390": "compan", - "34391": "Ġformulated", - "34392": "ĠIdol", - "34393": "ilers", - "34394": "hemoth", - "34395": "ĠFav", - "34396": "Ġintrusion", - "34397": "Ġcarrots", - "34398": "ĠLayer", - "34399": "ĠHacker", - "34400": "Ġ----------------", - "34401": "Ġmoderation", - "34402": "éģ", - "34403": "ococ", - "34404": "Ġcharacterize", - "34405": "ĠTeresa", - "34406": "Ġsocioeconomic", - "34407": "Ġperk", - "34408": "ĠParticipation", - "34409": "training", - "34410": "ĠPaulo", - "34411": "phys", - "34412": "Ġtrustworthy", - "34413": "Ġembodied", - "34414": "ĠMerch", - "34415": "currency", - "34416": "ĠPriority", - "34417": "Ġteasing", - "34418": "Ġabsorbing", - "34419": "Ġunfinished", - "34420": "ĠComparison", - "34421": "Ġdisple", - "34422": "writers", - "34423": "Ġprofessions", - "34424": "ĠPenguin", - "34425": "Ġangrily", - "34426": "ĠLINK", - "34428": "ĠCorrespond", - "34429": "Ġprevailed", - "34430": "Ġcartel", - "34431": "lp", - "34432": "asms", - "34433": "ĠRedemption", - "34434": "ĠIslamists", - "34435": "effects", - "34436": "dose", - "34437": "ĠLatter", - "34438": "ĠHalifax", - "34439": "Ġvas", - "34440": "ĠTopics", - "34441": "ĠNamed", - "34442": "advertising", - "34443": "zza", - "34444": "ICES", - "34445": "Ġretarded", - "34446": "achable", - "34447": "ĠPuppet", - "34448": "ĠItemLevel", - "34449": "Ġretract", - "34450": "Ġidentifiable", - "34451": "Aaron", - "34452": "ĠBuster", - "34453": "sol", - "34454": "helle", - "34455": "assemb", - "34456": "Hope", - "34457": "ranged", - "34458": "Ba", - "34459": "ĠPurch", - "34460": "éĢ", - "34461": "ĠSiri", - "34462": "Ġarrivals", - "34463": "Ġ1912", - "34464": "Ġshortened", - "34465": "Ġ312", - "34466": "Ġdiscrepancy", - "34467": "ĠTemperature", - "34468": "ĠWalton", - "34469": "Ġkinderg", - "34470": "polit", - "34471": "Ġremix", - "34472": "Ġconnectors", - "34473": "ãĥĺãĥ©", - "34474": "ĠKazakhstan", - "34475": "dominated", - "34476": "Ġsugars", - "34477": "imble", - "34478": "ĠPanic", - "34479": "ĠDemand", - "34480": "ĠColony", - "34481": "onen", - "34482": "ĠMER", - "34484": "uria", - "34485": "azaar", - "34486": "ĠDegree", - "34487": "Pri", - "34488": "Ġsunshine", - "34489": "Ġ251", - "34490": "Ġpsychedelic", - "34491": "Ġdigitally", - "34492": "ĠBraun", - "34493": "Ġshimmer", - "34494": "Ġshave", - "34495": "ĠTelesc", - "34496": "ĠAstral", - "34497": "ĠVenezuelan", - "34498": "ĠOG", - "34499": "Ġcrawling", - "34500": "Integ", - "34501": "ĠFeather", - "34502": "Ġunfolding", - "34503": "Ġappropriation", - "34504": "Ġè£ıè", - "34505": "ĠMobility", - "34506": "ĠNey", - "34507": "-.", - "34508": "bilt", - "34509": "LIN", - "34510": "ĠTube", - "34511": "ĠConversely", - "34512": "Ġkeyboards", - "34513": "ĠCao", - "34514": "Ġoverth", - "34515": "Ġlaure", - "34516": ">>\\", - "34517": "ĠViper", - "34518": "acha", - "34519": "Offset", - "34520": "ĠRaleigh", - "34521": "ĠJae", - "34522": "Jordan", - "34523": "jp", - "34524": "Ġtotalitarian", - "34525": "Connector", - "34526": "Ġobserves", - "34527": "ĠSpartan", - "34528": "ĠImmediately", - "34529": "ĠScal", - "34530": "Cool", - "34531": "Ġtaps", - "34532": "Ġroar", - "34533": "Past", - "34534": "Ġchars", - "34535": "ĠBender", - "34536": "ĠSheldon", - "34537": "Ġpainter", - "34538": "Ġbeacon", - "34539": "ĠCreatures", - "34540": "Ġdownturn", - "34541": "Ġhinder", - "34542": "ĠAndromeda", - "34543": "ÃĽ", - "34544": "ccoli", - "34545": "ĠFitness", - "34546": "etrical", - "34547": "Ġutilizes", - "34548": "Ġsenate", - "34549": "Ġensemble", - "34550": "Ġcheers", - "34551": "TW", - "34552": "Ġaffluent", - "34553": "kil", - "34554": "rylic", - "34555": "ordering", - "34556": "Computer", - "34557": "Ġgruesome", - "34558": "ostics", - "34559": "ĠUbisoft", - "34560": "ĠKelley", - "34561": "Ġwrench", - "34562": "Ġbourgeoisie", - "34563": "IBLE", - "34564": "ĠPreston", - "34565": "worn", - "34566": "arist", - "34567": "reating", - "34568": "Ġstained", - "34569": "arine", - "34570": "Ġslime", - "34571": "ENN", - "34572": "Ġchests", - "34573": "Ġgroundwater", - "34574": "annot", - "34575": "ĠTray", - "34576": "ĠLocke", - "34577": "ĠCTR", - "34578": "Ġdudes", - "34579": "ĠExternal", - "34580": "ĠDecoder", - "34581": "Ġparamed", - "34582": "ĠMedline", - "34584": "ĠDinner", - "34585": "rupal", - "34586": "gz", - "34587": "ĠGum", - "34588": "ĠDemo", - "34589": "jee", - "34590": "Ġdh", - "34591": "berman", - "34592": "archs", - "34593": "Ġenqu", - "34594": "ĠEpstein", - "34595": "Ġdevastation", - "34596": "Ġfriendships", - "34597": "ĠArd", - "34598": "Ġ231", - "34599": "ĠRubin", - "34600": "ĠDistance", - "34601": "Ġspurred", - "34602": "Ġdossier", - "34603": "Ġoverlooking", - "34604": "\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", - "34605": "Forest", - "34606": "ĠComes", - "34607": "\\\",", - "34608": "ĠIranians", - "34609": "Ġfixtures", - "34610": "Laughs", - "34611": "Ġcurry", - "34612": "ĠKingston", - "34613": "Ġsquash", - "34614": "Ġcatalogue", - "34615": "Ġabnormalities", - "34616": "Ġdigestive", - "34617": ".........", - "34618": "Ġsubordinate", - "34619": "ogly", - "34620": "Ġ249", - "34621": "Middle", - "34622": "Ġmassac", - "34623": "Ġburgers", - "34624": "Ġdownstairs", - "34625": "Ġ1931", - "34627": "ĠVG", - "34628": "Ġlasers", - "34629": "ĠSikh", - "34630": "ĠAlexa", - "34631": "derived", - "34632": "Ġcyclist", - "34633": "ãģ®éŃĶ", - "34634": "oneliness", - "34635": "!!!!!!!!", - "34636": "Ġbuffs", - "34637": "legate", - "34638": "Ġraping", - "34639": "Ġrecommending", - "34640": "rored", - "34641": "Ġmulticultural", - "34642": "unique", - "34643": "Ġbusinessmen", - "34644": "Ġuneasy", - "34645": "ĠMAP", - "34646": "Ġdispersed", - "34647": "cipline", - "34648": "Jess", - "34649": "ĠKerala", - "34650": "å§", - "34651": "Ġabstraction", - "34652": "Surv", - "34653": "Uh", - "34654": "Ġprinters", - "34655": "ija", - "34656": "owder", - "34657": "Ġanalogous", - "34658": "ĠASP", - "34659": "afer", - "34660": "Ġunfolded", - "34661": "Ġleveling", - "34662": "Ġbreached", - "34663": "ĠHearing", - "34664": "Ġnat", - "34665": "Ġtranslating", - "34666": "critical", - "34667": "Ġantagonist", - "34668": "ĠYesterday", - "34669": "Ġfuzzy", - "34670": "wash", - "34671": "mere", - "34672": "Ġbewild", - "34673": "ĠMae", - "34674": "Virgin", - "34675": "phrase", - "34676": "Ġsignaled", - "34677": "ĠHIGH", - "34678": "Ġprotester", - "34679": "Ġgarner", - "34680": "unknown", - "34681": "Ġkay", - "34682": "Ġabducted", - "34683": "Ġstalking", - "34684": "amn", - "34685": "Ġdeserving", - "34686": "ĠRiv", - "34687": "ĠJorge", - "34688": "Ġscratching", - "34689": "ĠSaving", - "34690": "iping", - "34691": "Ġtease", - "34692": "Ġmissionary", - "34693": "ĠMorrow", - "34694": "TIME", - "34695": "Present", - "34696": "Ġchemotherapy", - "34697": "terness", - "34698": "ĠHomes", - "34699": "ĠPurdue", - "34700": "Ġstaunch", - "34701": "ĠWhitney", - "34702": "ĠTHERE", - "34703": "μ", - "34704": "iatus", - "34705": "ĠErnest", - "34706": "ĠDeploy", - "34707": "Ġcoveted", - "34708": "FML", - "34709": "ĠDialogue", - "34710": "Ġexited", - "34711": "fruit", - "34712": "Ġnerd", - "34713": "\":\"\",\"", - "34714": "Ġvivo", - "34715": "ruly", - "34717": "ĠAmen", - "34718": "rehensible", - "34719": "Ġâĺ", - "34720": "DIR", - "34721": "Ġadherence", - "34722": "Ġchew", - "34723": "ĠCoke", - "34724": "ĠSergei", - "34725": "digital", - "34726": "ĠNeck", - "34727": "gently", - "34728": "enthal", - "34729": "/)", - "34730": "Ġweary", - "34731": "Ġguise", - "34732": "ĠConcord", - "34733": "ĠOnion", - "34734": "atcher", - "34735": "Ġbinge", - "34736": "ĠDirective", - "34737": "Ġmanned", - "34738": "ansk", - "34739": "Ġillusions", - "34740": "Ġbillionaires", - "34742": "olyn", - "34743": "odynamic", - "34744": "ĠWheat", - "34745": "ĠAlic", - "34746": "Ġcoloured", - "34747": "ĠNAFTA", - "34748": "abo", - "34749": "Ġmacros", - "34750": "independent", - "34751": "sweet", - "34752": "Ġspac", - "34753": "ĠKabul", - "34754": "ĠÄ", - "34755": "eme", - "34756": "Ġdictated", - "34757": "Ġshouts", - "34758": "={", - "34759": "Ġripping", - "34760": "ĠShay", - "34761": "ĠCricket", - "34762": "directed", - "34763": "Ġanalysed", - "34764": "ĠWARRANT", - "34765": "agons", - "34766": "ĠBlazers", - "34767": "Ġcheered", - "34768": "Ġarithmetic", - "34769": "ĠTanz", - "34771": "ĠFlags", - "34772": "Ġ295", - "34773": "Ġwitches", - "34774": "ĠIncluded", - "34775": "ĠGained", - "34776": "ĠBlades", - "34777": "Gam", - "34778": "ĠSamantha", - "34779": "ĠAtlantis", - "34780": "ĠPratt", - "34781": "Ġspoiled", - "34782": "ĠIB", - "34783": "ĠRamirez", - "34784": "Probably", - "34785": "rero", - "34786": "ĠNg", - "34787": "ĠWarlock", - "34788": "tp", - "34789": "Ġoverhe", - "34790": "Ġadministrations", - "34791": "Ġtint", - "34792": "Ġregiment", - "34793": "Ġpistols", - "34794": "Ġblankets", - "34795": "Ġepist", - "34796": "Ġbowls", - "34797": "Ġhydraulic", - "34798": "Ġdean", - "34799": "Ġjung", - "34800": "Ġascend", - "34802": "ĠSantiago", - "34803": "î", - "34804": "Ġunavoid", - "34805": "ĠShaman", - "34806": "reb", - "34807": "Ġstemming", - "34809": "ĠMG", - "34810": "sticks", - "34811": "esthesia", - "34812": "ERO", - "34813": "Ġmorbid", - "34814": "ĠGrill", - "34815": "ĠPoe", - "34816": "anyl", - "34817": "Ġdeleting", - "34818": "ĠSurveillance", - "34819": "Ġdirectives", - "34820": "Ġiterations", - "34821": "ĠRox", - "34822": "ĠMilky", - "34823": "Father", - "34824": "Ġpatented", - "34826": "Ġprecursor", - "34827": "Ġmaiden", - "34828": "ĠPhen", - "34829": "ĠVegan", - "34830": "ĠPatent", - "34831": "Kelly", - "34832": "Redditor", - "34833": "Ġnods", - "34834": "Ġventilation", - "34835": "ĠSchwarz", - "34836": "Ġwizards", - "34837": "Ġominous", - "34838": "ĠHeads", - "34839": "ĠBG", - "34840": "Ġlumber", - "34841": "ĠSpiel", - "34842": "ĠisEnabled", - "34843": "Ġancestral", - "34844": "ĠShips", - "34845": "Ġwrestler", - "34846": "phi", - "34847": "Ġyuan", - "34848": "ĠRebellion", - "34849": "Ġiceberg", - "34850": "Ġmagically", - "34851": "Ġdiversion", - "34852": "arro", - "34853": "ythm", - "34854": "ĠRiders", - "34855": "ĠRobbie", - "34856": "ĠKara", - "34857": "ĠMaintenance", - "34858": "ĠHerb", - "34859": "Ġharms", - "34860": "packed", - "34861": "ĠFeinstein", - "34862": "Ġmarrying", - "34863": "Ġblending", - "34864": "ĠRates", - "34865": "Ġ1880", - "34866": "Ġwrink", - "34867": "ĠUnch", - "34868": "ĠTorch", - "34869": "described", - "34870": "Ġhumanoid", - "34871": "ilitating", - "34872": "ĠConv", - "34873": "ĠFeld", - "34874": "IGHTS", - "34875": "Ġwhistleblower", - "34876": "ortmund", - "34877": "etsy", - "34878": "arrett", - "34879": "ĠMono", - "34880": "ĠIke", - "34881": "ĠCNBC", - "34882": "ĠWAY", - "34883": "ĠMDMA", - "34884": "ĠIndividuals", - "34885": "Ġsupplemental", - "34886": "Ġpowerhouse", - "34887": "ĠStru", - "34888": "Focus", - "34889": "aphael", - "34890": "ĠColleg", - "34891": "atti", - "34892": "ZA", - "34893": "Ġperenn", - "34894": "ĠSignature", - "34895": "ĠRodney", - "34896": "Ġcubes", - "34897": "iddled", - "34898": "ĠDante", - "34899": "ĠINV", - "34900": "ilingual", - "34901": "ĠCth", - "34902": "Ġsofa", - "34903": "Ġintimidate", - "34904": "ĠRoe", - "34905": "ĠDiplom", - "34906": "ĠCountries", - "34907": "ayson", - "34908": "Ġextradition", - "34909": "Ġdisabling", - "34910": "ĠCardiff", - "34911": "Ġmemorandum", - "34912": "ĠTrace", - "34913": "Ġ???", - "34914": "sector", - "34915": "ĠRouhani", - "34916": "ĠYates", - "34917": "ĠFreeze", - "34918": "Ġbladder", - "34919": "Motor", - "34920": "ĠPromise", - "34921": "antasy", - "34922": "Ġforeseeable", - "34923": "ĠCologne", - "34924": "container", - "34925": "ĠTrees", - "34926": "ĠGors", - "34927": "ĠSinclair", - "34928": "Ġbarring", - "34929": "keye", - "34930": "Ġslashed", - "34931": "ĠStatistical", - "34932": "éĩ", - "34933": "Ġâĸº", - "34934": "Allows", - "34935": "Ġhumility", - "34936": "Ġdrilled", - "34937": "ĠFurn", - "34939": "Ġsewage", - "34940": "Ġhomepage", - "34941": "Ġcourtyard", - "34942": "Ġvile", - "34943": "Ġsubsidiaries", - "34944": "ajo", - "34945": "directory", - "34946": "Ġammon", - "34947": "Vers", - "34948": "charges", - "34949": "Ġ}}", - "34950": "ĠChains", - "34951": "Ġ246", - "34952": "nob", - "34953": "Ġpercept", - "34954": "Ġgrit", - "34955": "Ġfishermen", - "34956": "ĠIraqis", - "34957": "ĠDISTR", - "34958": "ĠFULL", - "34959": "ĠEvaluation", - "34960": "graph", - "34961": "atial", - "34962": "Ġcooperating", - "34963": "Ġmelan", - "34964": "Ġenlightened", - "34965": "Ġali", - "34966": "tailed", - "34967": "Ġsalute", - "34968": "Ġweakest", - "34969": "ĠBulldogs", - "34970": "UA", - "34971": "ĠAlloy", - "34972": "Ġsemen", - "34973": "ocene", - "34974": "ĠWilliamson", - "34975": "spr", - "34976": ",âĢĶ", - "34977": "ĠGF", - "34978": "ittens", - "34979": "Beat", - "34980": "ĠJunk", - "34981": "iphate", - "34982": "ĠFarmers", - "34983": "ĠBitcoins", - "34984": "igers", - "34985": "dh", - "34986": "ĠLoyal", - "34987": "payer", - "34988": "Ġentertained", - "34989": "Ġpenned", - "34990": "Ġcoupon", - "34991": "Queue", - "34992": "Ġweakening", - "34993": "carry", - "34994": "Ġunderestimate", - "34995": "Ġshootout", - "34996": "Ġcharismatic", - "34997": "ĠProcedure", - "34998": "Ġprudent", - "34999": "inances", - "35000": "Ġriches", - "35001": "Ġcortical", - "35002": "Ġstrides", - "35003": "Ġdrib", - "35004": "ĠOilers", - "35006": "ĠPerform", - "35007": "ĠBangkok", - "35008": "Ġeuth", - "35009": "SER", - "35010": "Ġsimplistic", - "35011": "tops", - "35012": "campaign", - "35013": "Quality", - "35014": "Ġimpoverished", - "35015": "ĠEisenhower", - "35016": "Ġaugment", - "35017": "ĠHarden", - "35018": "Ġintervened", - "35019": "Ġlistens", - "35020": "ĠKok", - "35021": "Ġsage", - "35022": "Ġrubbish", - "35023": "ĠDed", - "35024": "Ġmull", - "35025": "pelling", - "35026": "Ġvideot", - "35027": "Production", - "35028": "DJ", - "35029": "miah", - "35030": "Ġadaptations", - "35031": "Ġmedically", - "35032": "Ġboarded", - "35033": "Ġarrogance", - "35034": "Ġscrapped", - "35035": "Ġoppress", - "35036": "FORMATION", - "35037": "Ġjunction", - "35039": "EEEE", - "35040": "Skill", - "35041": "Ġsubdu", - "35042": "ĠSuggest", - "35043": "ĠPett", - "35044": "Ġlett", - "35045": "ĠManip", - "35046": "ĠCaf", - "35047": "ĠCooperation", - "35048": "Ther", - "35049": "Ġregained", - "35050": "¶æ", - "35051": "reflect", - "35052": "Ġthugs", - "35053": "ĠShelby", - "35054": "Ġdictates", - "35055": "ĠWeiner", - "35056": "ĠHale", - "35057": "Ġbattleground", - "35058": "schild", - "35059": "Ġcondol", - "35060": "hunt", - "35061": "ositories", - "35062": "Ġaccuses", - "35063": "Filename", - "35064": "Ġshri", - "35065": "Ġmotivate", - "35066": "Ġreflections", - "35067": "Null", - "35068": "ĠLobby", - "35069": "¥µ", - "35070": "ĠSATA", - "35071": "ĠBackup", - "35072": "Ñĥ", - "35073": "nin", - "35074": "ĠCorrection", - "35075": "Ġjuicy", - "35076": "utra", - "35077": "ĠPric", - "35078": "Ġrestraining", - "35079": "ĠAirbnb", - "35080": "ĠArrest", - "35081": "Ġappropriations", - "35082": "Ġslopes", - "35083": "Ġmanslaughter", - "35084": "Ġworkings", - "35085": "ĠHuss", - "35086": "ĠFrey", - "35087": "Leave", - "35088": "ĠHarmony", - "35089": "ĠFeder", - "35090": "Ġ430", - "35091": "Ġtrench", - "35092": "Ġgladly", - "35093": "Ġbullpen", - "35094": "ĠGau", - "35095": "bones", - "35096": "Ġgroove", - "35097": "Ġpretext", - "35098": "ãħĭ", - "35099": "Ġtransmitter", - "35100": "ĠComponent", - "35101": "Ġunderage", - "35102": "ĠEmpires", - "35103": "Tile", - "35104": "Ġoy", - "35105": "ĠMarvin", - "35106": "ĠCAS", - "35107": "Ġbloss", - "35108": "Ġreplicated", - "35109": "ĠMariners", - "35110": "Marcus", - "35111": "ĠBlocks", - "35112": "Ġliberated", - "35113": "Ġbutterfly", - "35114": "Feel", - "35115": "Ġfermentation", - "35116": "Ġyoutube", - "35117": "Ġoffend", - "35118": "ĠTerm", - "35119": "resist", - "35120": "Ġcessation", - "35121": "Ġinsurgency", - "35122": "Ġbir", - "35123": "ĠRaise", - "35125": "Ġhypotheses", - "35127": "Ġplaque", - "35128": "ocrat", - "35129": "Ġjackets", - "35130": "ĠHuffPost", - "35131": "among", - "35132": "Ġconfer", - "35134": "ĠLilly", - "35135": "Ġadapting", - "35136": "ĠFay", - "35137": "Ġshoved", - "35138": "vec", - "35139": "Ġrefine", - "35140": "Ġgon", - "35141": "Ġgunmen", - "35142": "zai", - "35143": "ĠShuttle", - "35144": "ĠIzan", - "35145": "Ġ1913", - "35146": "Ġplethora", - "35147": "··", - "35148": "Ġ510", - "35149": "Ġpuberty", - "35150": "Ġ241", - "35151": "ĠWealth", - "35152": "ĠAlma", - "35153": "ĠMEM", - "35154": "ĠAdults", - "35155": "Cas", - "35156": "prison", - "35157": "Race", - "35158": "Ġwaterproof", - "35159": "Ġathleticism", - "35160": "Ġcapitalize", - "35161": "ĠJuice", - "35162": "Ġilluminated", - "35163": "ĠPascal", - "35164": "Ġirritation", - "35165": "ĠWitnesses", - "35166": "adle", - "35167": "ĠAstro", - "35168": "Ġfax", - "35169": "ĠElvis", - "35170": "Primary", - "35171": "ĠLich", - "35172": "ĠElves", - "35173": "Ġresiding", - "35174": "Ġstumble", - "35176": "ĠPKK", - "35177": "Ġadversaries", - "35178": "DOS", - "35179": "ĠRitual", - "35180": "Ġsmear", - "35181": "Ġarson", - "35182": "idental", - "35183": "Ġscant", - "35184": "Ġmonarchy", - "35185": "Ġhalftime", - "35186": "Ġresidue", - "35187": "Ġindign", - "35188": "ĠShaun", - "35189": "ĠElm", - "35190": "auri", - "35191": "Aff", - "35192": "WATCH", - "35193": "ĠLyon", - "35194": "helps", - "35196": "Ġlobbyist", - "35197": "Ġdiminishing", - "35198": "Ġoutbreaks", - "35199": "Ġgoats", - "35200": "favorite", - "35201": "ĠNah", - "35202": "sonian", - "35203": "ĠBooster", - "35204": "Ġsandbox", - "35205": "ĠFare", - "35206": "ĠMalta", - "35207": "ĠattRot", - "35208": "ĠMOR", - "35209": "lde", - "35210": "Ġnavigating", - "35211": "Touch", - "35212": "Ġuntrue", - "35213": "ĠDisaster", - "35214": "Ġludicrous", - "35215": "Password", - "35216": "ĠJFK", - "35217": "blogspot", - "35219": "ĠUNDER", - "35220": "ernal", - "35221": "Ġdelaying", - "35222": "TOP", - "35223": "Ġimplants", - "35224": "ĠAVG", - "35225": "ĠHuge", - "35226": "attr", - "35227": "Ġjournalistic", - "35228": "ĠPeyton", - "35229": "ĠIA", - "35230": "Rap", - "35231": "goal", - "35232": "ĠProgramme", - "35233": "Ġsmashing", - "35234": "wives", - "35235": "println", - "35236": "ĠPlague", - "35237": "inus", - "35238": "EEP", - "35239": "Ġcruiser", - "35240": "ĠParish", - "35241": "uminium", - "35242": "Ġoccupants", - "35243": "ĠJihad", - "35244": "mop", - "35245": "Ġpint", - "35246": "Ġhect", - "35247": "ĠMecca", - "35248": "director", - "35249": "ĠFunding", - "35250": "ĠMixed", - "35251": "Ġstag", - "35252": "Tier", - "35253": "Ġgust", - "35254": "Ġbrightly", - "35255": "orsi", - "35256": "Ġuphill", - "35257": "RD", - "35258": "Ġlesions", - "35259": "ĠBundy", - "35260": "livious", - "35261": "Ġbiologist", - "35262": "ĠFaculty", - "35263": "ĠAuthorization", - "35264": "Ġ244", - "35265": "Allow", - "35266": "ï¸", - "35267": "ĠGiul", - "35268": "Ġpertinent", - "35269": "otaur", - "35270": "esse", - "35271": "ĠRoof", - "35272": "Ġunmanned", - "35274": "ĠShak", - "35275": "ĠOrient", - "35276": "Ġendanger", - "35277": "Dir", - "35278": "Ġreplen", - "35279": "edient", - "35280": "Ġtailor", - "35281": "Ġgadgets", - "35282": "Ġaudible", - "35283": "âĺĨ", - "35284": "Nice", - "35285": "Ġbombard", - "35286": "ĠRape", - "35287": "Ġdefiance", - "35288": "ĠTWO", - "35289": "ĠFilipino", - "35290": "Ġunaffected", - "35291": "ervatives", - "35292": "Ġsoared", - "35293": "ĠBolton", - "35294": "Ġcompromising", - "35295": "ĠBrewers", - "35296": "RAL", - "35297": "ĠAHL", - "35298": "icycle", - "35299": "Ġvampires", - "35300": "Ġdipped", - "35301": "oyer", - "35302": "ĠXIII", - "35303": "Ġsideways", - "35304": "ĠWaste", - "35305": "ĠDiss", - "35306": "ĠâĶľâĶĢâĶĢ", - "35307": "$.", - "35308": "Ġhabitats", - "35309": "ĠBeef", - "35310": "truth", - "35311": "trained", - "35312": "split", - "35313": "Rus", - "35314": "Andy", - "35315": "ĠBram", - "35316": "REP", - "35317": "pid", - "35318": "è£ħ", - "35319": "ĠMutant", - "35320": "Anim", - "35321": "ĠMarina", - "35322": "Ġfutile", - "35323": "highest", - "35324": "frequency", - "35325": "Ġepilepsy", - "35326": "Ġcoping", - "35327": "Ġconcise", - "35328": "Ġtracing", - "35329": "ĠSUN", - "35330": "panel", - "35331": "ĠSophie", - "35332": "ĠCrowley", - "35333": "ĠAdolf", - "35334": "ĠShooter", - "35335": "Ġshaky", - "35336": "ĠIG", - "35337": "ĠLies", - "35338": "ĠBarber", - "35339": "pkg", - "35340": "Ġuptake", - "35341": "Ġpredatory", - "35342": "ULTS", - "35343": "/**", - "35344": "Ġintoxicated", - "35345": "ĠWestbrook", - "35346": "odder", - "35347": "hement", - "35348": "Ġbaseman", - "35349": "APD", - "35350": "storage", - "35351": "ĠFifty", - "35352": "editor", - "35353": "GEN", - "35354": "UTION", - "35355": "irting", - "35356": "Ġsewing", - "35357": "rift", - "35358": "Ġagony", - "35359": "ĠSands", - "35360": "Ġ254", - "35361": "Cash", - "35362": "Ġlodge", - "35363": "Ġpunt", - "35364": "Natural", - "35365": "ĠIdeas", - "35366": "Ġerroneous", - "35367": "ĠSensor", - "35368": "ĠHannity", - "35369": "Ġ1921", - "35370": "Ġmould", - "35371": "ĠGon", - "35372": "kaya", - "35373": "Ġanonymously", - "35374": "ĠKEY", - "35375": "Ġsimulator", - "35376": "Winter", - "35377": "Ġstreamed", - "35379": "?\",", - "35380": "Ġteased", - "35381": "Ġcoefficient", - "35382": "Ġwartime", - "35383": "ĠTHR", - "35384": "''.", - "35385": "ĠBanking", - "35386": "mpire", - "35387": "Ġfandom", - "35388": "Ġlia", - "35389": "Ga", - "35390": "Ġdownhill", - "35391": "Ġinterpreting", - "35392": "Individual", - "35393": "Norm", - "35394": "Ġjealousy", - "35395": "bitcoin", - "35396": "Ġpleasures", - "35397": "ĠToys", - "35398": "ĠChevrolet", - "35399": "ĠAdvisor", - "35400": "IZE", - "35401": "Ġreceptions", - "35403": "Cro", - "35404": "Ġ262", - "35405": "Ġcitrus", - "35406": "iru", - "35407": "Reviewer", - "35408": "jected", - "35409": "UES", - "35410": "anz", - "35412": "ĠWorker", - "35413": "Ġcomplied", - "35414": "orescent", - "35415": "continental", - "35416": "Ton", - "35417": "ĠPrism", - "35418": "ĠSheep", - "35419": "Ġ288", - "35420": "nox", - "35421": "ĠVog", - "35422": "Ord", - "35423": "Ġrealms", - "35424": "tek", - "35425": "Ġirrigation", - "35426": "Ġbicycles", - "35427": "Ġelectronically", - "35428": "poly", - "35429": "tall", - "35430": "());", - "35431": "Ġaesthetics", - "35432": "ĠIntegrated", - "35433": "Explore", - "35434": "Ġdunk", - "35436": "pain", - "35437": "ĠJacques", - "35438": "ĠDmit", - "35439": "Frames", - "35440": "Ġreunited", - "35441": "Ġhumid", - "35442": "Dro", - "35443": "Political", - "35444": "Ġyouthful", - "35445": "Ġentails", - "35446": "Ġmosquito", - "35448": "species", - "35449": "Ġcoordinating", - "35450": "ĠMayhem", - "35451": "ĠMagnus", - "35452": "Mount", - "35453": "Improved", - "35454": "ĠSTATE", - "35455": "ATTLE", - "35456": "Ġflowed", - "35457": "Ġtackled", - "35458": "Ġfashioned", - "35459": "Ġreorgan", - "35460": "ivari", - "35461": "finger", - "35462": "Ġreluctantly", - "35463": "etting", - "35464": "ĠVand", - "35465": "young", - "35466": "ĠGarland", - "35467": "Ġpresumption", - "35468": "Ġamenities", - "35469": "ĠPleasant", - "35470": "onential", - "35471": "ĠOxy", - "35472": "Ġmorals", - "35473": "ĠYah", - "35474": "Ready", - "35475": "Simon", - "35476": "Enh", - "35477": "Demon", - "35478": "Ġclich", - "35479": "Monitor", - "35480": "ĠDU", - "35481": "Ġwelcomes", - "35482": "Ġstandout", - "35483": "Ġdreadful", - "35484": "Ġbananas", - "35485": "Ġballoons", - "35486": "hooting", - "35487": "basic", - "35488": "Ġsuffix", - "35489": "Ġduly", - "35490": "cano", - "35491": "Chain", - "35492": "atos", - "35493": "Ġgeopolitical", - "35494": "Ġ(&", - "35495": "ĠGemini", - "35496": "ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ", - "35497": "Ġacquitted", - "35498": "Luck", - "35499": "protect", - "35501": "Ġscarcity", - "35502": "Ġmindfulness", - "35503": "ecided", - "35504": "DN", - "35505": "prime", - "35506": "ĠPresidents", - "35507": "ĠVIDEO", - "35508": "Ġ(âĪĴ", - "35509": "addock", - "35510": "NOR", - "35511": "ĠPru", - "35512": "pun", - "35513": "ĠLOL", - "35514": "))))", - "35515": "ĠLiqu", - "35516": "ĠSAS", - "35517": "Ġstyling", - "35518": "Ġpunishments", - "35519": "Ġnumb", - "35520": "Ġascertain", - "35521": "ĠRockies", - "35522": "flu", - "35523": "Thumbnail", - "35524": "Ġperpetrated", - "35525": "ĠSemi", - "35526": "Ġdisarm", - "35527": "ĠOlder", - "35528": "ĠException", - "35529": "Ġexponentially", - "35530": "ĠCommunities", - "35531": "Ġabolish", - "35532": "ĠPartner", - "35533": "ptoms", - "35534": "Ġ777", - "35535": "ĠFoley", - "35536": "ĠCases", - "35537": "Ġgrease", - "35538": "ĠRebirth", - "35539": "Ground", - "35540": "Ġ;)", - "35541": "ĠDoctrine", - "35542": "ikini", - "35543": "Ye", - "35544": "ĠBlossom", - "35545": "Ġpersists", - "35546": "bill", - "35547": "Ġinfusion", - "35548": "Ġbuddies", - "35550": "ĠPatient", - "35551": "Ġdemos", - "35552": "Ġacquaintance", - "35553": "ĠPaw", - "35554": "atari", - "35555": "Ġxml", - "35556": "Ġfascination", - "35557": "ĠServe", - "35558": "ÏĤ", - "35559": "branded", - "35560": "Ġaz", - "35561": "Returns", - "35562": "Ġovershadow", - "35563": "Ġroam", - "35564": "Ġspeedy", - "35565": "numbered", - "35566": "helial", - "35567": "Ġdisciple", - "35568": "Ġassurances", - "35569": "given", - "35570": "pecting", - "35571": "ĠNatalie", - "35572": "çͰ", - "35573": "Ġmosquitoes", - "35574": "rotein", - "35575": "Ġnumeric", - "35576": "Ġindependents", - "35577": "Ġtransitional", - "35578": "Ġreactionary", - "35579": "ĠMechdragon", - "35580": "doctor", - "35581": "Ġshortest", - "35582": "Ġsequential", - "35583": "ĠBac", - "35584": "ĠAccounts", - "35585": "ãģĮ", - "35586": "achy", - "35587": "ractive", - "35588": "ĠRegiment", - "35589": "Ġbreathtaking", - "35590": "fficiency", - "35591": "ĠBates", - "35592": "Ġ311", - "35593": "Ġwardrobe", - "35594": "fts", - "35595": "ĠBerk", - "35596": "Simply", - "35597": "ĠRiverside", - "35598": "ivering", - "35599": "idential", - "35600": "lucent", - "35601": "Ġenriched", - "35602": "ĠConver", - "35603": "ĠGiving", - "35604": "ãĥĻ", - "35605": "Ġlegalize", - "35606": "ĠFTC", - "35607": "Ġfreaking", - "35608": "Mix", - "35609": "Ġterrestrial", - "35610": "esian", - "35611": "cients", - "35612": "Wing", - "35613": "LOAD", - "35614": "Ġledge", - "35615": "ĠViolent", - "35616": "ĠMetall", - "35617": "Ġ308", - "35618": "Ġsoutheastern", - "35619": "hetto", - "35620": "Meat", - "35621": "Ġslowdown", - "35622": "Ġretreated", - "35623": "Jeremy", - "35624": "endas", - "35625": "*****", - "35626": "eric", - "35627": "Ġreins", - "35628": "oppable", - "35629": "ĠHumanity", - "35630": "earances", - "35631": "rigan", - "35632": "Camera", - "35633": "Ġwaivers", - "35634": "soc", - "35635": "Ġalteration", - "35636": "transform", - "35637": "ĠCemetery", - "35639": "Ġindefinite", - "35640": "Ġstimulating", - "35641": "yg", - "35643": "ĠSop", - "35644": "Ġdescriptive", - "35645": "Phase", - "35646": "ĠEdmund", - "35647": "Ġpneumonia", - "35648": "ventus", - "35649": "Amb", - "35650": "Ġlaboratories", - "35651": "ĠExclusive", - "35652": "ugar", - "35653": "Were", - "35654": "Ġmalfunction", - "35655": "Ġhomosexuals", - "35656": "Ġ-------", - "35657": "uni", - "35658": "Ġturbines", - "35659": "ĠEquity", - "35660": "Du", - "35661": "Ġminded", - "35662": "ĠRH", - "35663": "ĠBlackhawks", - "35664": "Ġfeats", - "35665": "Ġ1700", - "35666": "repl", - "35668": "laden", - "35669": "Ġindispensable", - "35670": "lyss", - "35671": "tti", - "35672": "Ġreel", - "35673": "Ġdiverted", - "35674": "Ġlikeness", - "35675": "Ġsubscriptions", - "35676": "Ġfingert", - "35677": "Ġfilthy", - "35678": "destruct", - "35679": "draft", - "35680": "ĠBernardino", - "35681": "launch", - "35682": "Ġperplex", - "35683": "ĠSUM", - "35684": "carb", - "35685": "Ġsweater", - "35686": "ĠVenture", - "35687": "ĠJag", - "35688": "ĠCeleb", - "35689": "ĠVoters", - "35690": "Ġsteadfast", - "35691": "Ġathletics", - "35692": "ĠHanson", - "35693": "ĠDrac", - "35694": "Tracker", - "35695": "Ġcommend", - "35696": "ĠPresidency", - "35697": "ĠDID", - "35698": "informed", - "35699": "Ġwebpage", - "35700": "Pretty", - "35701": "Ġforcefully", - "35702": "ãĥĥãĤ¯", - "35703": "Ġrelocation", - "35704": "Ġsatire", - "35705": "âī", - "35706": "ĠSunderland", - "35707": "æĦ", - "35708": "Voice", - "35709": "????????", - "35710": "Ġinformant", - "35711": "Ġbowel", - "35712": "ĠUniform", - "35713": "Ġ...\"", - "35714": "Ġpurge", - "35715": "Ġpicnic", - "35716": "ĠUmb", - "35717": "ĠUPDATE", - "35718": "ĠSapphire", - "35719": "ĠStall", - "35720": "learn", - "35721": "Ġobjectively", - "35722": "Ġobliter", - "35723": "Ġloophole", - "35724": "Ġjourneys", - "35725": "Ġomission", - "35726": "Pros", - "35727": "ĠSidney", - "35728": "ploma", - "35729": "Ġsprayed", - "35730": "Ġguru", - "35731": "Ġtraitor", - "35732": "Ġtimet", - "35733": "Ġsnapping", - "35734": "ĠSevent", - "35735": "urnal", - "35736": "ĠUkip", - "35737": "Ġbowed", - "35738": "poral", - "35739": "liberal", - "35740": "Ros", - "35741": "Questions", - "35742": "iOS", - "35743": "Ġsummarize", - "35744": "STAT", - "35745": "Ġ1850", - "35746": "apest", - "35747": "Ġlender", - "35748": "ĠVariable", - "35749": "bringing", - "35750": "ĠLORD", - "35751": ",)", - "35752": "Ġcollapses", - "35753": "xiety", - "35754": "ĠNed", - "35755": "YD", - "35756": "ĠScha", - "35757": "Ġantibody", - "35758": "Ġdisband", - "35759": "yre", - "35760": "illusion", - "35761": "Ġrover", - "35762": "shed", - "35763": "ĠHirosh", - "35764": "cci", - "35765": "Ġcalam", - "35766": "ĠMorton", - "35767": "Pinterest", - "35768": "Ġ1928", - "35769": "ĠEuras", - "35770": "ordes", - "35771": "Ġfences", - "35772": "ĠInventory", - "35773": "ĠValencia", - "35774": "ĠUd", - "35775": "ĠTiff", - "35776": "Ġsque", - "35777": "Ġquotation", - "35778": "Ġtroublesome", - "35779": "erker", - "35780": "QUEST", - "35781": "ĠKingdoms", - "35782": "south", - "35783": "Ġlevy", - "35784": "Prince", - "35785": "ĠSting", - "35786": "Ġnicknamed", - "35787": "Ġappe", - "35788": "Ġphotographic", - "35789": "Ġcorpus", - "35790": "reference", - "35791": "ĠTrog", - "35792": "Unt", - "35793": ")=(", - "35794": "ĠLatvia", - "35795": "Ġactivating", - "35796": "Ġlicensee", - "35797": "Ġdisparities", - "35798": "ĠNewsletter", - "35799": "ãĥĥãĥĪ", - "35800": "Ġfreeing", - "35801": "ĠJeep", - "35802": "ĠPerception", - "35803": "insk", - "35804": "Ġsilicone", - "35805": "ĠHayden", - "35806": "Lean", - "35807": "ĠSuzuki", - "35808": "ibrarian", - "35810": "Ġspor", - "35811": "Ġcorrelations", - "35812": "aghetti", - "35813": "Ġtuber", - "35814": "ĠIPCC", - "35815": "ilus", - "35816": "ĠVu", - "35817": "Ġwealthiest", - "35818": "ĠCarbuncle", - "35819": "anza", - "35820": "Ġfooled", - "35821": "ĠZur", - "35822": "Ġdaddy", - "35823": "rano", - "35824": "ilian", - "35825": "Ġknockout", - "35826": "fman", - "35827": "required", - "35828": "ĠWikileaks", - "35829": "ĠDuffy", - "35830": "ONT", - "35831": "Ġinsol", - "35832": "ĠObjects", - "35833": "Ġbou", - "35834": "ĠNordic", - "35835": "ĠInsert", - "35836": "scan", - "35837": "Ġdancers", - "35838": "Ġidiots", - "35839": "majority", - "35840": "ĠNeville", - "35841": "ĠFreeBSD", - "35842": "Ġtart", - "35843": "panic", - "35845": "Ġcocoa", - "35846": "Ġsampled", - "35847": "Ġlookup", - "35848": "Indust", - "35849": "Ġinjections", - "35850": "genre", - "35851": "Ġau", - "35852": "Ġroadway", - "35853": "Ġgenitals", - "35854": "Kind", - "35855": "ĠExaminer", - "35856": "ĠYaz", - "35857": "Fresh", - "35858": "Ġparalysis", - "35859": "ĠAluminum", - "35860": "Ġreap", - "35861": "oké", - "35862": "Ġsloppy", - "35863": "ĠTunnel", - "35864": "posium", - "35865": "nery", - "35866": "enic", - "35867": "Ġherbal", - "35868": "ĠOuter", - "35869": "ĠBuilder", - "35870": "Ġincur", - "35871": "Ġideologies", - "35872": "Ġbackups", - "35873": "consuming", - "35874": "ĠDetect", - "35875": "deck", - "35876": "ĠKNOW", - "35877": "ĠGret", - "35878": "ĠMIC", - "35879": "Ġtoughness", - "35880": "ĠExhibit", - "35881": "Ġhive", - "35882": "Les", - "35883": "ĠSCHOOL", - "35884": "ĠAtari", - "35885": "alde", - "35886": "ĠNull", - "35887": "andestine", - "35888": "mouse", - "35889": "Ġbrigade", - "35891": "Ġrevol", - "35892": "ĠLawson", - "35893": "ĠWah", - "35894": "opoly", - "35895": "ebted", - "35896": "ĠSaunders", - "35897": "Ġ313", - "35898": "ĠWinc", - "35899": "Ġtaboo", - "35900": "ĠHelmet", - "35901": "Ġwedge", - "35902": "chip", - "35903": "ĠTina", - "35904": "bg", - "35905": "Ġinfuri", - "35906": "rn", - "35907": "Ġanomalies", - "35908": "ĠSync", - "35909": "ĠExam", - "35910": "ĠCommit", - "35911": "ĠDiary", - "35912": "ĠALSO", - "35913": "ĠDebor", - "35914": "omedical", - "35915": "Ġcomprehension", - "35917": "Ġempowering", - "35918": "Ġire", - "35919": "Ġjuices", - "35920": "ĠETH", - "35921": "ĠBoxing", - "35922": "=\"/", - "35923": "Ġfacilitated", - "35924": "poke", - "35925": "ĠParsons", - "35926": "ĠModer", - "35927": "travel", - "35928": "Ġcivilizations", - "35929": "Ġlibertarians", - "35930": "Ġrune", - "35931": "ĠClarks", - "35932": "athed", - "35933": "Ġcampaigners", - "35934": "ĠDispatch", - "35935": "ĠFahrenheit", - "35936": "ĠCapcom", - "35937": "----------", - "35938": "Ġlace", - "35939": "Ġdraining", - "35940": "Ġliner", - "35941": "ĠArtificial", - "35942": "én", - "35943": "task", - "35944": "]).", - "35945": "ĠGMO", - "35946": "ĠOperator", - "35947": "ordinary", - "35948": "ĠInfluence", - "35949": "ĠUps", - "35950": "Ġpotency", - "35951": "ussen", - "35952": "ospons", - "35953": "ĠSwim", - "35954": "ĠDeadline", - "35955": "Unity", - "35956": "Ġculinary", - "35957": "Ġenlightenment", - "35958": "Ġwearer", - "35959": "Ġmined", - "35960": "Ġply", - "35961": "Ġincest", - "35962": "ĠDVDs", - "35963": "Walk", - "35964": "BTC", - "35965": "Trade", - "35966": "Ġdeval", - "35967": "iband", - "35968": "ĠOversight", - "35969": "Palestinian", - "35970": "Ġdart", - "35971": "Ġmul", - "35972": "LR", - "35973": "Ġremovable", - "35974": "ĠRealms", - "35975": "ìĿ", - "35976": "Ġmiscar", - "35977": "ĠVulkan", - "35979": "ère", - "35980": "ĠSap", - "35981": "Ġmerging", - "35982": "ĠCarly", - "35983": "chester", - "35984": "Ġbrisk", - "35985": "Ġluxurious", - "35986": "ĠGenerator", - "35987": "Ġbitterness", - "35988": "Ġedible", - "35989": "Ġ243", - "35990": "TG", - "35991": "Ġrectangle", - "35992": "WithNo", - "35993": "below", - "35994": "Jenn", - "35995": "Ġdarkest", - "35996": "Ġhitch", - "35997": "Ġdosage", - "35998": "Ġscaven", - "35999": "ĠKeller", - "36000": "ĠIllustrated", - "36001": "Certainly", - "36002": "ĠMavericks", - "36003": "Marginal", - "36004": "Ġdiarrhea", - "36005": "Ġenormously", - "36006": "Ġ999", - "36007": "shr", - "36008": "quart", - "36009": "Ġadamant", - "36010": "ĠMew", - "36011": "Ġrenovation", - "36012": "Ġcervical", - "36013": "ĠPercentage", - "36014": "eners", - "36015": "ĠKimber", - "36016": "Ġfloats", - "36017": "Ġdex", - "36018": "ĠWitcher", - "36019": "ĠSwansea", - "36020": "dm", - "36021": "Ġsalty", - "36022": "yellow", - "36023": "Ġcape", - "36024": "ĠDrain", - "36025": "ĠPaula", - "36026": "ĠToledo", - "36027": "lesi", - "36028": "Magazine", - "36029": "ĠWick", - "36030": "ĠMn", - "36031": "ĠAck", - "36032": "ĠRiding", - "36033": "ASON", - "36034": "Ġhomophobic", - "36035": "ARP", - "36036": "Ġwandered", - "36037": "CPU", - "36038": "oodoo", - "36039": "ĠPipe", - "36040": "Ġtightening", - "36041": "ĠButt", - "36043": "Ġdeserted", - "36044": "Session", - "36045": "Ġfacilitating", - "36046": "Jump", - "36047": "Ġemergencies", - "36048": "OWER", - "36049": "Ġexhaustive", - "36050": "ĠAFTER", - "36051": "Ġheartbeat", - "36052": "ĠLabel", - "36053": "acky", - "36054": "ĠCertified", - "36055": "iltration", - "36056": "Ze", - "36057": "ĠUtt", - "36058": "Ġ1300", - "36059": "Ġpresume", - "36060": "ĠDisp", - "36061": "Ġsurged", - "36062": "Ġdolls", - "36063": "Columb", - "36064": "Ġchimpan", - "36065": "ĠRazor", - "36066": "Ġticks", - "36067": "Ġcouncillor", - "36068": "Ġpilgrimage", - "36069": "ĠRebels", - "36070": "ĠQC", - "36071": "ĠAuction", - "36072": "xia", - "36073": "ikk", - "36074": "bred", - "36075": "Ġinsertion", - "36076": "Ġcoarse", - "36077": "dB", - "36078": "SEE", - "36079": "ĠZap", - "36080": "ĠFoo", - "36081": "Ġcontempor", - "36082": "ĠQuarterly", - "36083": "otions", - "36084": "ĠAlchemist", - "36085": "ĠTrey", - "36086": "ĠDuo", - "36087": "Sweet", - "36089": "ĠGiov", - "36090": "Ġfunn", - "36091": "Nin", - "36092": "hoff", - "36093": "Ġramifications", - "36094": "Ġ1922", - "36095": "ĠExperts", - "36096": "azes", - "36097": "Ġgarments", - "36098": "arial", - "36099": "ĠNab", - "36100": "Ġ257", - "36101": "ĠVed", - "36102": "Ġhumorous", - "36103": "ĠPompe", - "36104": "Ġnylon", - "36105": "Ġlurking", - "36106": "ĠSergey", - "36107": "ĠMattis", - "36108": "Ġmisogyny", - "36109": "ĠComponents", - "36110": "ĠWatching", - "36111": "ĠFolk", - "36112": "ractical", - "36113": "Bush", - "36114": "Ġtaped", - "36115": "Ġgrouping", - "36116": "Ġbeads", - "36117": "Ġ2048", - "36118": "Ġcondu", - "36119": "querque", - "36120": "Reading", - "36121": "Ġgrievances", - "36122": "Ultra", - "36123": "Ġendpoint", - "36124": "Hig", - "36125": "ĠStatic", - "36126": "ĠScarborough", - "36127": "Lua", - "36128": "ĠMessi", - "36129": "aqu", - "36130": "ĠPsyNet", - "36131": "ĠRudd", - "36132": "Ġavenue", - "36133": "vp", - "36134": "Jer", - "36135": "Ġshady", - "36136": "ĠResist", - "36137": "ĠArtemis", - "36138": "Ġcareless", - "36139": "Ġbrokers", - "36140": "Ġtemperament", - "36141": "Ġ520", - "36142": "Tags", - "36143": "ĠTurning", - "36144": "Ġuttered", - "36145": "Ġpedd", - "36146": "Ġimprovised", - "36147": "Ġ:(", - "36148": "Ġtabl", - "36149": "Ġplains", - "36151": "pressure", - "36152": "ĠEssence", - "36153": "margin", - "36154": "friends", - "36155": "ĠRestoration", - "36156": "Ġpollut", - "36157": "ĠPoker", - "36158": "ĠAugustine", - "36159": "ĠCIS", - "36160": "ĠSEAL", - "36161": "orama", - "36162": "Ġthwart", - "36163": "seek", - "36164": "Ġpagan", - "36165": "º", - "36166": "cpu", - "36167": "Ġgarn", - "36168": "Ġassortment", - "36169": "ĠILCS", - "36170": "tower", - "36171": "Recommended", - "36172": "Ġunborn", - "36173": "ĠRandomRedditor", - "36174": "ĠRandomRedditorWithNo", - "36175": "Ġparalyzed", - "36176": "Ġeruption", - "36177": "Ġintersect", - "36178": "ĠStoke", - "36179": "ĠSco", - "36180": "Bind", - "36181": "å¾", - "36182": "ĠPNG", - "36183": "ĠNegative", - "36184": "ĠNOAA", - "36185": "Leon", - "36186": "Ġalloy", - "36187": "ĠLama", - "36188": "ĠDiversity", - "36190": "Ġunderestimated", - "36191": "ĠScor", - "36192": "Ġmural", - "36193": "Ġbusted", - "36194": "soon", - "36195": "lif", - "36196": "Ġnonex", - "36197": "Ġallergy", - "36198": "ĠUnderworld", - "36199": "ĠRays", - "36200": "ĠBlasio", - "36201": "Ġhrs", - "36202": "ĠDir", - "36203": "Ġ327", - "36204": "byter", - "36205": "Ġreplacements", - "36206": "Ġactivates", - "36207": "rived", - "36208": "MH", - "36209": "Ġpans", - "36210": "ĠHI", - "36211": "Ġlongitudinal", - "36212": "Ġnuisance", - "36213": "aler", - "36214": "Ġswell", - "36215": "ĠSigned", - "36216": "sci", - "36217": "ĠIsles", - "36218": "ĠAGA", - "36219": "Ġdefiant", - "36220": "Ġsonic", - "36221": "ocon", - "36222": "KC", - "36223": "ĠAim", - "36224": "tie", - "36225": "ahah", - "36226": "ĠmL", - "36227": "DX", - "36228": "Ġbisc", - "36229": "ĠBillboard", - "36230": "ĠSYSTEM", - "36231": "NEY", - "36232": "gaard", - "36233": "Ġdistressed", - "36234": "formerly", - "36235": "Alan", - "36236": "Ġchefs", - "36237": "Ġoptics", - "36238": "ĠComet", - "36239": "ĠAMC", - "36240": "Ġredesigned", - "36241": "irmation", - "36242": "Ġsightings", - "36245": "ĠWB", - "36246": "Ġcontraction", - "36247": "ĠTOTAL", - "36248": "Dual", - "36249": "Ġstartled", - "36250": "Ġunderstandably", - "36251": "Ġsunglasses", - "36252": "ETHOD", - "36253": "Ġdocker", - "36254": "Ġsurfing", - "36255": "ĠHEL", - "36256": "ĠSlack", - "36257": "tones", - "36258": "Ġshalt", - "36259": "Visual", - "36261": "Department", - "36262": "cussion", - "36263": "Ġunrestricted", - "36264": "Ġtad", - "36265": "Ġrename", - "36266": "employed", - "36267": "Ġeducating", - "36268": "Ġgrinned", - "36269": "bedroom", - "36270": "ĠActivities", - "36271": "ĠVelvet", - "36272": "ĠSWAT", - "36273": "Ġshuffle", - "36274": "igor", - "36275": "Ġsaturation", - "36276": "Finding", - "36277": "cream", - "36278": "icter", - "36279": "Ġvodka", - "36280": "tracking", - "36281": "tec", - "36282": "Ġforeground", - "36283": "iesta", - "36284": "Ġvehement", - "36285": "ĠECB", - "36286": "ĠTie", - "36287": "Ey", - "36288": "Ġturtles", - "36289": "ĠRailroad", - "36290": "ĠKatz", - "36291": "ĠFrames", - "36292": "Ġmenace", - "36293": "ĠFellowship", - "36294": "ĠEssential", - "36295": "uggish", - "36296": "Ġdrip", - "36297": "chwitz", - "36298": "ĠKyoto", - "36299": "sb", - "36300": "ĠNina", - "36301": "Parameter", - "36302": "Ġalarms", - "36303": "ĠClaud", - "36304": "Ġpioneering", - "36305": "Ġchiefly", - "36306": "ĠScream", - "36307": "Collection", - "36308": "Ġthankfully", - "36309": "ĠRonaldo", - "36310": "åŃIJ", - "36311": "strip", - "36312": "ĠDisneyland", - "36313": "commercial", - "36314": "Seeing", - "36315": "Soul", - "36316": "Ġevacuate", - "36317": "Ġciv", - "36318": "ĠAshe", - "36319": "Ġdivides", - "36320": "ĠDagger", - "36321": "rehensive", - "36322": "Ġberries", - "36323": "ĠDF", - "36324": "Ġsushi", - "36325": "Ġplurality", - "36326": "WI", - "36327": "Ġdisadvantaged", - "36328": "Ġbattalion", - "36329": "obiles", - "36331": "Ġcling", - "36332": "Ġundeniable", - "36333": "ĠLounge", - "36334": "Ġhaunt", - "36335": "phe", - "36336": "Ġquantify", - "36337": "Ġdiffered", - "36338": "Ġ[*]", - "36339": "ĠViz", - "36340": "cum", - "36341": "slave", - "36342": "Ġvideog", - "36343": "Ġquar", - "36344": "Ġbundles", - "36345": "ĠAlonso", - "36346": "tackle", - "36347": "Ġneuronal", - "36348": "Ġlandslide", - "36349": "confirmed", - "36350": "ĠDepth", - "36351": "Ġrenewables", - "36352": "Bear", - "36353": "ĠMacedonia", - "36354": "Ġjerseys", - "36355": "Ġbunk", - "36356": "ĠSpawn", - "36357": "ĠControls", - "36358": "ĠBuchanan", - "36359": "Ġrobotics", - "36360": "Ġemphasizing", - "36361": "ĠTutorial", - "36362": "hyp", - "36363": "iston", - "36364": "Ġmonumental", - "36365": "æ°", - "36366": "ĠCarry", - "36367": "Ġtbsp", - "36368": "enance", - "36369": "Hill", - "36370": "arthed", - "36371": "Ġrotten", - "36372": "Dean", - "36373": "Ġtwisting", - "36374": "Ġgoodwill", - "36375": "Ġimmersion", - "36376": "Living", - "36377": "Ġbrushes", - "36378": "ĠCGI", - "36379": "ĠAtk", - "36380": "traditional", - "36381": "Ġphantom", - "36382": "ĠStamina", - "36383": "Ġexpansions", - "36384": "ĠMarin", - "36385": "Ġembarked", - "36386": "ĠEg", - "36387": "intestinal", - "36388": "ĠPEOPLE", - "36389": "ĠBooth", - "36390": "ĠAppalach", - "36391": "Ġrelegated", - "36392": "VT", - "36393": "MIT", - "36394": "Ġmuster", - "36395": "Ġwithdrawing", - "36396": "Ġmicroscope", - "36397": "ĠGathering", - "36398": "ĠCrescent", - "36399": "ĠArgentine", - "36400": "ĠDecre", - "36401": "ĠDominic", - "36402": "Ġbuds", - "36403": "antage", - "36404": "ĠIon", - "36405": "Ġwidened", - "36406": "ONSORED", - "36407": "ĠGloves", - "36408": "iannopoulos", - "36409": "razen", - "36410": "feel", - "36411": "Ġrepayment", - "36412": "Ġhindsight", - "36413": "ĠREALLY", - "36414": "ĠPistol", - "36415": "ĠBrah", - "36416": "Ġwatts", - "36417": "Ġsurvives", - "36418": "Ġflurry", - "36419": "issy", - "36420": "Alert", - "36421": "ĠUruguay", - "36422": "Phoenix", - "36423": "Slow", - "36424": "ĠGrave", - "36425": "ĠFir", - "36426": "Ġmanageable", - "36427": "Ġtariff", - "36428": "ĠUDP", - "36429": "ĠPistons", - "36430": "ĠNigerian", - "36431": "Ġstrikeouts", - "36432": "Ġcosmetics", - "36433": "whelming", - "36434": "fab", - "36435": "cape", - "36436": "proxy", - "36437": "Ġrethink", - "36438": "Ġovercoming", - "36439": "simple", - "36440": "Ġwoo", - "36441": "Ġdistracting", - "36442": "ĠStanton", - "36443": "ĠTulsa", - "36444": "ĠDock", - "36446": "Ġdiscord", - "36447": "ĠEmacs", - "36448": "ĠVes", - "36449": "ĠROB", - "36450": "Ġreassuring", - "36451": "Ġconsortium", - "36452": "Muslims", - "36454": "Ġprompts", - "36455": "sei", - "36456": "ĠHitch", - "36457": "imposed", - "36458": "ĠFool", - "36459": "Ġindiscrim", - "36460": "wrong", - "36461": "buquerque", - "36462": "Davis", - "36463": "!]", - "36464": "Ġtimeless", - "36465": "ĠNEED", - "36466": "Ġpesticide", - "36467": "Ġrallying", - "36468": "ĠCalder", - "36469": "Ġå¤", - "36470": "Ġxp", - "36471": "ĠUnle", - "36472": "ĠExport", - "36473": "luaj", - "36474": "Buff", - "36475": ")[", - "36938": "Ġsqor", - "36939": "Saudi", - "36940": "Ġistg", - "36941": "Ġindulge", - "36942": "proc", - "36943": "Ġdisgusted", - "36944": "Ġcompounded", - "36945": "Ġnem", - "36946": "Ġschooling", - "36947": "ĠCure", - "36948": "processing", - "36949": "Sol", - "36950": "Ġproverb", - "36951": "itized", - "36952": "ĠAlvarez", - "36953": "Ġscarf", - "36954": "Ġrectangular", - "36955": "reve", - "36956": "Ġhormonal", - "36957": "ĠStress", - "36958": "itizen", - "36959": "Ġ425", - "36960": "girls", - "36961": "ĠNoir", - "36962": "ĠRapp", - "36963": "Ġmarches", - "36964": "church", - "36965": "ĠUses", - "36966": "Ġ405", - "36967": "ĠBerm", - "36968": "Ġordinances", - "36969": "ĠJudgment", - "36970": "Charges", - "36971": "ĠZin", - "36972": "Ġdusty", - "36973": "Ġstrawberries", - "36974": "Ġperce", - "36975": "ĠThur", - "36976": "ĠDeborah", - "36977": "netflix", - "36978": "ĠLambert", - "36979": "Ġamused", - "36980": "ĠGuang", - "36981": "YOU", - "36982": "RGB", - "36983": "ĠCCTV", - "36984": "Ġfiat", - "36985": "rang", - "36986": "Ġfederation", - "36987": "ĠMant", - "36988": "ĠBust", - "36989": "ĠMare", - "36990": "respective", - "36991": "ĠMigration", - "36992": "ĠBIT", - "36994": "Ġpatriotism", - "36995": "Ġoutlining", - "36996": "region", - "36997": "ĠJosé", - "36998": "Ġblasting", - "36999": "ĠEzra", - "37000": "Bs", - "37001": "Ġundermines", - "37002": "ĠSmooth", - "37003": "Ġclashed", - "37004": "radio", - "37005": "Ġtransitioning", - "37006": "ĠBuccaneers", - "37007": "ĠOwl", - "37008": "Ġplugs", - "37009": "Ġhiatus", - "37010": "ĠPinball", - "37011": "Ġmig", - "37012": "ĠNutr", - "37013": "ĠWolfe", - "37014": "Ġintegers", - "37015": "Ġorbits", - "37016": "ĠEdwin", - "37017": "ĠDirectX", - "37018": "bite", - "37019": "Ġblazing", - "37020": "vr", - "37021": "Edge", - "37022": "ĠPID", - "37023": "exit", - "37024": "ĠComed", - "37025": "ĠPathfinder", - "37026": "ĠGuid", - "37027": "ĠSigns", - "37028": "ĠZer", - "37029": "ĠAgenda", - "37030": "Ġreimbursement", - "37031": "Mesh", - "37032": "iPhone", - "37033": "ĠMarcos", - "37034": "ĠSites", - "37035": "hate", - "37036": "enburg", - "37037": "Ġsockets", - "37038": "pend", - "37039": "Batman", - "37040": "vir", - "37041": "ĠSHOW", - "37042": "Ġprovisional", - "37043": "conn", - "37044": "ĠDeaths", - "37045": "ATIVE", - "37046": "Profile", - "37047": "sym", - "37048": "JA", - "37049": "Ġninja", - "37050": "installed", - "37051": "idates", - "37052": "ebra", - "37053": "ĠOmaha", - "37054": "Ġseizing", - "37055": "ĠBeasts", - "37056": "Ġsalts", - "37057": "Mission", - "37058": "Generally", - "37059": "ĠTrilogy", - "37060": "heon", - "37061": "legates", - "37062": "Ġdime", - "37063": "Ġfaire", - "37064": "parable", - "37065": "Graph", - "37066": "Ġtotaling", - "37067": "Ġdiagrams", - "37068": "ĠYanuk", - "37069": "plet", - "37070": "ĠMeh", - "37071": "Ġmythical", - "37072": "ĠStephens", - "37073": "autical", - "37074": "ochemistry", - "37075": "Ġkilograms", - "37076": "Ġelbows", - "37077": "ancock", - "37078": "ĠBCE", - "37079": "ĠPrague", - "37080": "Ġimprov", - "37081": "ĠDevin", - "37082": "Ġ\"\\", - "37083": "paralle", - "37084": "Ġsupremacists", - "37085": "ĠBillion", - "37086": "Ġregimen", - "37087": "innacle", - "37088": "Ġrequisite", - "37089": "angan", - "37090": "ĠBurlington", - "37091": "ainment", - "37092": "ĠObjective", - "37093": "omsky", - "37094": "GV", - "37095": "Ġunilateral", - "37096": "Ġtc", - "37097": "Ġhires", - "37098": "mental", - "37099": "Ġinvoluntary", - "37100": "Ġtranspl", - "37101": "ĠASCII", - "37102": "¨", - "37103": "Events", - "37104": "Ġdoubted", - "37105": "ĠKaplan", - "37106": "ĠCourage", - "37107": "igon", - "37108": "ĠManaging", - "37109": "ĠTart", - "37110": "Ġfalsehood", - "37111": "ĠViolet", - "37112": "Ġairs", - "37113": "Ġfertilizer", - "37114": "Britain", - "37115": "Ġaquatic", - "37116": "ouf", - "37117": "Words", - "37118": "ĠHartford", - "37119": "Ġevenings", - "37120": "ĠVengeance", - "37121": "quite", - "37122": "Gall", - "37123": "ĠPret", - "37124": "Ġpdf", - "37125": "ĠLM", - "37126": "ĠSochi", - "37127": "ĠIntercept", - "37129": "Ġprofitability", - "37130": "ĠIdle", - "37131": "ĠMacDonald", - "37132": "ĠEstablishment", - "37133": "umsy", - "37134": "Ġgatherings", - "37135": "ĠNaj", - "37136": "Charlie", - "37137": "Ġascent", - "37138": "ĠProtector", - "37139": "Ġalgebra", - "37140": "Ġbios", - "37141": "forums", - "37142": "ELS", - "37143": "Introduced", - "37144": "Ġ335", - "37145": "Ġastronomy", - "37146": "Contribut", - "37147": "ĠPolic", - "37148": "Platform", - "37149": "Ġcontainment", - "37150": "wrap", - "37151": "Ġcoronary", - "37152": "ĠJelly", - "37153": "manager", - "37154": "Ġheartbreaking", - "37155": "cair", - "37156": "ĠChero", - "37157": "cgi", - "37158": "Medical", - "37159": "ĠAccountability", - "37160": "!!\"", - "37161": "ophile", - "37162": "Ġpsychotic", - "37163": "ĠRestrict", - "37164": "Ġequitable", - "37165": "issues", - "37166": "Ġ1905", - "37167": "ĠNek", - "37168": "cised", - "37169": "ĠTracking", - "37170": "Ġozone", - "37171": "Ġcooker", - "37172": "rosis", - "37173": "Ġreopen", - "37174": "Ġinfinity", - "37175": "ĠPharmaceutical", - "37176": "ensional", - "37177": "Attempt", - "37178": "ĠRory", - "37179": "Marco", - "37180": "Ġawaits", - "37181": "HOW", - "37182": "treated", - "37183": "Ġbolst", - "37184": "Ġrevered", - "37185": "Ġpods", - "37186": "oppers", - "37187": "0010", - "37188": "Ġamplitude", - "37189": "rican", - "37190": "SPONSORED", - "37191": "Ġtrousers", - "37192": "Ġhalves", - "37193": "ĠKaine", - "37194": "ĠCutler", - "37195": "ĠAUTH", - "37196": "Ġsplendid", - "37197": "Ġpreventive", - "37198": "ĠDudley", - "37199": "ifacts", - "37200": "uminati", - "37201": "ĠYin", - "37202": "Ġadmon", - "37203": "ĠVag", - "37204": "Ġinverted", - "37205": "Ġhastily", - "37206": "ĠHague", - "37207": "Lyn", - "37208": "Ġledger", - "37209": "Ġastronomical", - "37210": "getting", - "37211": "Ġcirca", - "37212": "ĠCic", - "37213": "ĠTennis", - "37214": "Limited", - "37215": "Ġdru", - "37216": "ĠBYU", - "37217": "Ġtravellers", - "37218": "Ġpane", - "37219": "ĠIntro", - "37220": "Ġpatiently", - "37221": "Ġaiding", - "37222": "Ġloos", - "37223": "ĠTough", - "37224": "Ġ293", - "37225": "Ġconsumes", - "37226": "SourceFile", - "37227": "Ġ\"\"\"", - "37228": "Ġbonding", - "37229": "Ġtilted", - "37230": "Ġmenstrual", - "37231": "ĠCelestial", - "37232": "ULAR", - "37233": "Plugin", - "37234": "Ġrisking", - "37235": "Naz", - "37236": "ĠRiyadh", - "37237": "Ġaccredited", - "37238": "Ġskirm", - "37239": "éĽ", - "37240": "Ġexaminer", - "37241": "Ġmessing", - "37242": "Ġnearing", - "37243": "ĠChern", - "37244": "ĠBeckham", - "37245": "Ġswapped", - "37246": "Ġgoose", - "37247": "Kay", - "37248": "Ġlofty", - "37249": "ĠWallet", - "37250": "Ġ['", - "37251": "Ġapocalypse", - "37252": "Ġbamboo", - "37253": "ĠSPACE", - "37254": "ĠElena", - "37255": "Ġ306", - "37256": "acons", - "37257": "Ġtightened", - "37258": "Ġadolescence", - "37259": "Ġrainy", - "37260": "Ġvandalism", - "37261": "ĠNewtown", - "37262": "Ġconject", - "37263": "cakes", - "37264": "Ġcheated", - "37265": "Ġmoderators", - "37266": "params", - "37267": "EFF", - "37268": "Ġdeceit", - "37269": "ĠSTL", - "37270": "ĠTanzania", - "37271": "ĠRI", - "37272": "Ġ1923", - "37273": "ĠExile", - "37274": "thel", - "37275": "Ġtheolog", - "37276": "Ġquirky", - "37277": "ĠIrvine", - "37278": "Ġneedy", - "37279": "oris", - "37280": "Um", - "37281": "Ka", - "37282": "Ġmailbox", - "37284": "Ġbos", - "37285": "ĠPetra", - "37286": "KING", - "37287": "Ġenlarged", - "37288": "Often", - "37289": "Ġbadass", - "37290": "Ġ343", - "37291": "ĠPlaces", - "37292": "ĠCAD", - "37293": "Ġpristine", - "37294": "Ġintervening", - "37295": "direction", - "37296": "Ġlaz", - "37297": "ĠDSM", - "37298": "Ġprojecting", - "37299": "ĠFunk", - "37300": "agog", - "37301": "payment", - "37302": "nov", - "37303": "Ġchatter", - "37304": "ARB", - "37305": "Ġexaminations", - "37306": "ĠHousehold", - "37307": "ĠGus", - "37308": "Ford", - "37310": "Boss", - "37311": "Ġmystic", - "37312": "Ġleaps", - "37313": "ĠBav", - "37314": "ulz", - "37315": "budget", - "37316": "Football", - "37317": "Ġsubsidized", - "37318": "Ġfirsthand", - "37319": "Ġcoincide", - "37320": "ocular", - "37321": "Conn", - "37322": "ĠCollabor", - "37323": "Ġfools", - "37324": "amura", - "37325": "ahar", - "37326": "rists", - "37327": "Ġswollen", - "37328": "Ġexpended", - "37329": "ĠPau", - "37330": "sup", - "37331": "Ġspar", - "37332": "Ġkeynote", - "37333": "suff", - "37334": "Ġunequal", - "37335": "Ġprogressing", - "37336": "strings", - "37337": "ĠGamergate", - "37338": "Disney", - "37339": "ĠEleven", - "37340": "omnia", - "37341": "Ġscripted", - "37342": "Ġearners", - "37343": "brother", - "37344": "ĠEnabled", - "37345": "æ³", - "37346": "Ġlarvae", - "37347": "ĠLOC", - "37348": "mess", - "37349": "Wilson", - "37350": "ĠTemplate", - "37351": "successfully", - "37352": "Ġparamount", - "37353": "Ġcamouflage", - "37354": "Ġbinds", - "37355": "ĠQuiet", - "37356": "ĠShutterstock", - "37357": "rush", - "37358": "Ġmascot", - "37359": "fortune", - "37360": "ĠColt", - "37361": "ĠBeyon", - "37362": "habi", - "37363": "Ġhairc", - "37364": "Ġ267", - "37365": "ĠDeus", - "37366": "Ġtwitch", - "37367": "Ġconcentrating", - "37368": "Ġnipples", - "37369": "cible", - "37370": "Ġgir", - "37371": "NZ", - "37372": "Math", - "37373": "nih", - "37374": "Required", - "37375": "Ġponder", - "37376": "ĠSAN", - "37377": "Ġweddings", - "37378": "Ġloneliness", - "37379": "NES", - "37380": "ĠMahjong", - "37382": "addle", - "37383": "ĠGarner", - "37384": "ĠCOUR", - "37385": "Bridge", - "37386": "Ġspree", - "37387": "ĠCaldwell", - "37388": "Ġbribery", - "37389": "Ġ��������", - "37390": "plugins", - "37391": "Ġracket", - "37392": "Ġchampagne", - "37393": "versible", - "37394": "Vote", - "37395": "Ġmodifiers", - "37396": "Mayor", - "37398": "Ġassemblies", - "37399": "ĠSultan", - "37400": "ĠNing", - "37401": "ĠLadies", - "37402": "Ġsulfur", - "37403": "Ġorbs", - "37404": "Ġ-----", - "37405": "_______", - "37406": "ĠJournalism", - "37407": "Ġesports", - "37408": "Ġlush", - "37409": "Ġhue", - "37410": "Ġspectral", - "37411": "Honest", - "37412": "ãĥı", - "37413": "Ġbushes", - "37414": "Ġreinforcement", - "37415": "Ġreopened", - "37416": "ĠWheels", - "37417": "ĠMorg", - "37418": "rieving", - "37419": "Ġauxiliary", - "37420": "ĠjQuery", - "37421": "ĠBAT", - "37422": "tesque", - "37423": "Ġvertex", - "37424": "pure", - "37425": "frey", - "37426": "ãĤº", - "37427": "dos", - "37428": "Ġtyph", - "37429": "Ġcull", - "37430": "Ġeq", - "37431": "Ġdecon", - "37432": "Ġtossing", - "37433": "Ġdisparate", - "37434": "ĠBrigham", - "37435": "printf", - "37436": "ledged", - "37437": "Ġsund", - "37438": "Ġcozy", - "37439": "Ġhepatitis", - "37440": "performing", - "37441": "Ġaval", - "37442": "ĠGG", - "37443": "future", - "37444": "Ġpetertodd", - "37445": "ĠKosovo", - "37446": "Ġmagnets", - "37447": "Already", - "37448": "ĠEdison", - "37449": "ĠCeres", - "37450": "ĠRAID", - "37451": "Ġbrilliance", - "37453": "Ġderives", - "37454": "Ġhypertension", - "37455": "ĠÎĶ", - "37456": "Ġlambda", - "37457": "Ġflair", - "37458": "Ġmissionaries", - "37459": "Ġrapes", - "37460": "ĠStarter", - "37461": "ĠMonths", - "37462": "Ġdefy", - "37463": "Ġseismic", - "37464": "ĠRaphael", - "37465": "Ġeurozone", - "37467": "zsche", - "37468": "Ġscratched", - "37469": "Ġbows", - "37470": "ĠLennon", - "37471": "ĠGaia", - "37472": "Ġdripping", - "37473": "facts", - "37474": "Ale", - "37475": "Ġfrogs", - "37476": "ĠBreast", - "37477": "ogeneity", - "37478": "ĠProsecutor", - "37479": "Ġamplified", - "37480": "ĠHodg", - "37481": "ĠFn", - "37482": "Thousands", - "37483": "ĠNIH", - "37484": "ĠMonitoring", - "37485": "FTWARE", - "37486": "ĠPriebus", - "37487": "ĠGrowing", - "37488": "hunter", - "37489": "Ġdiagnose", - "37490": "ĠMald", - "37491": "ĠLR", - "37492": "Ġcrowned", - "37493": "Ġbursting", - "37494": "Ġdissolution", - "37495": "javascript", - "37496": "Ġusefulness", - "37497": "ĠExecution", - "37498": ":(", - "37499": "ĠIvory", - "37500": "aah", - "37501": "Ġpersecuted", - "37502": "violence", - "37503": "istas", - "37504": "ĠCrate", - "37505": "Ġimpulses", - "37506": "ĠSpani", - "37507": "edes", - "37508": "Handle", - "37509": "ĠZerg", - "37510": "thinkable", - "37511": "Lastly", - "37512": "Ġspontaneously", - "37513": "Ġinconvenient", - "37514": "Ġdismissing", - "37515": "Ġplotted", - "37516": "Ġeighty", - "37517": "Ġ737", - "37518": "rish", - "37519": "ĠThornton", - "37520": "atham", - "37521": "Ġsitcom", - "37522": "Ven", - "37523": "Recipe", - "37524": "tel", - "37525": "lund", - "37526": "Ġclears", - "37527": "ĠSasuke", - "37528": "Ġ258", - "37529": "Ġopting", - "37530": "Ġenraged", - "37531": "esthetic", - "37532": "ĠAe", - "37533": "uchs", - "37534": "Prep", - "37535": "Flow", - "37536": "Ġrunoff", - "37537": "ĠEating", - "37538": "ĠGiles", - "37539": "ĠActing", - "37540": "resources", - "37541": "ibaba", - "37542": "Ġrpm", - "37543": "Ġskewed", - "37544": "ĠBlanc", - "37545": "ĠSakuya", - "37546": "Ġhotter", - "37547": "Ġ1924", - "37548": "opian", - "37549": "cko", - "37550": "Ġcrumbling", - "37551": "Ġcaptains", - "37552": "ĠAppropriations", - "37553": "leaders", - "37554": "dropping", - "37555": "anuts", - "37556": "Ġreversing", - "37557": "ĠPose", - "37558": "ĠSek", - "37559": "Scot", - "37560": "ĠIdea", - "37561": "cise", - "37562": "ĠSlovenia", - "37563": "Ġ317", - "37564": "Doctor", - "37565": "Ġcrocod", - "37566": "aldi", - "37567": "Sea", - "37568": "ĠFarrell", - "37569": "Ġmercenaries", - "37570": "ĠRNC", - "37571": "ĠGuess", - "37572": "Ġpacing", - "37573": "Machine", - "37574": "StreamerBot", - "37575": "ĠCharity", - "37576": "Ġ298", - "37577": "Ġcannons", - "37578": "ĠToby", - "37579": "TPPStreamerBot", - "37580": "ĠPassion", - "37581": "cfg", - "37582": "Thom", - "37583": "Ġbadges", - "37584": "ĠBernstein", - "37585": ".âĢĵ", - "37586": "ĠPOP", - "37587": "ĠConj", - "37588": "Ġinitialization", - "37589": "Ġbiodiversity", - "37590": "Dub", - "37591": "Ġfeudal", - "37592": "Ġdisclaimer", - "37593": "Ġcrow", - "37594": "Ġignition", - "37595": "arf", - "37596": "SHA", - "37597": "ĠkHz", - "37598": "hazard", - "37599": "ĠArtists", - "37600": "oeuv", - "37602": "ĠRudy", - "37603": "Nine", - "37604": "ĠRamadan", - "37605": "å½", - "37606": "itto", - "37607": "Ġadrenaline", - "37608": "Cert", - "37609": "Ġsmelled", - "37610": "Ġimpunity", - "37611": "Ġagendas", - "37612": "ĠReborn", - "37613": "ĠConcent", - "37614": "ĠSeems", - "37615": "Ġomega", - "37616": "ĠDustin", - "37617": "Ġbacker", - "37618": "ĠSauce", - "37619": "ĠBoyle", - "37620": "WIN", - "37621": "Ġspins", - "37622": "Ġpauses", - "37623": "upt", - "37624": "Ġshredded", - "37625": "Ġstrapped", - "37626": "ĠCorruption", - "37627": "Ġscratches", - "37628": "Ġni", - "37629": "Ġattire", - "37630": "ĠSAF", - "37631": "FactoryReloaded", - "37632": "ĠIPS", - "37633": "Ġ(%", - "37634": "Ġseminar", - "37635": "focus", - "37636": "civil", - "37637": "Ġ1860", - "37638": "intosh", - "37639": "Ġcontinual", - "37640": "Ġabbrevi", - "37641": "ĠSok", - "37642": "ocobo", - "37643": "XM", - "37644": "Ġfrantic", - "37645": "Ġunavoidable", - "37646": "Ġartery", - "37647": "Ġannotations", - "37648": "bath", - "37649": "Climate", - "37650": "Ġdors", - "37651": "ĠSlide", - "37652": "coord", - "37653": "ĠReload", - "37654": "ĠLDL", - "37655": "ĠLovecraft", - "37656": "Ġunimagin", - "37657": "Ġresembled", - "37658": "Ġbarracks", - "37659": "np", - "37660": "Ġsurrogate", - "37661": "Ġcategorized", - "37662": "ãĤ©", - "37663": "Ġvaccinated", - "37664": "Ġdrainage", - "37665": "Ġindist", - "37666": "ĠWhatsApp", - "37667": "Ġ1870", - "37668": "olerance", - "37669": "invoke", - "37670": "amorph", - "37671": "Ġreconnect", - "37672": "Ġemanc", - "37673": "Ġblindness", - "37674": "Ġ1280", - "37675": "internet", - "37676": "collar", - "37677": "Ġaltru", - "37678": "Ġabyss", - "37679": "ĠTRI", - "37681": "Ġinfused", - "37682": "HEAD", - "37683": "Ġforestry", - "37684": "ĠWoody", - "37685": "ĠCi", - "37686": "wi", - "37687": "sam", - "37689": "holiday", - "37690": "Ġmogul", - "37691": "ĠFees", - "37692": "ĠDEN", - "37693": "Internal", - "37694": "urbed", - "37695": "fusc", - "37696": "atom", - "37697": "ĠIllusion", - "37698": "Ġpolled", - "37699": "Ġflap", - "37700": "Ġcoax", - "37701": "LGBT", - "37702": "Analy", - "37703": "ĠSections", - "37704": "ĠCaliforn", - "37705": "emn", - "37706": "Ġhither", - "37707": "ĠNIGHT", - "37708": "Ġnailed", - "37709": "ĠPipeline", - "37711": "oof", - "37712": "ĠPrimal", - "37713": "verend", - "37714": "Ġslashing", - "37715": "Ġretri", - "37716": "aviour", - "37717": "Ġdeparting", - "37718": "gil", - "37719": "ISC", - "37720": "Ġmidway", - "37721": "Ġultrasound", - "37722": "Ġbehaving", - "37723": "ĠTara", - "37724": "classes", - "37725": "Virtual", - "37726": "ĠColonial", - "37727": "Ġstripping", - "37728": "Ġorchestrated", - "37729": "ĠGraves", - "37731": "ĠIronically", - "37732": "ĠWriters", - "37733": "Ġlends", - "37734": "ĠManz", - "37735": "Ġraven", - "37736": "Ġoxidative", - "37737": "Ġ266", - "37738": "ELF", - "37739": "actually", - "37740": "ascar", - "37741": "Draft", - "37742": "Ġfavourable", - "37743": "Ġhumiliating", - "37744": "Ġfidelity", - "37745": "ĠHof", - "37746": "ĠXuan", - "37748": "Ġlayered", - "37749": "atis", - "37751": "Ġpaycheck", - "37752": "iton", - "37753": "Kar", - "37754": "ĠVMware", - "37755": "ĠFarmer", - "37756": "Ġservic", - "37757": "glomer", - "37758": "Ġslump", - "37759": "ĠFabric", - "37760": "ĠDOC", - "37761": "esting", - "37762": "Ġreassure", - "37763": "Ġphyl", - "37764": "volt", - "37765": "itory", - "37766": "Rules", - "37767": "Ġoxidation", - "37768": "Ġprized", - "37769": "Ġmistress", - "37770": "ĠDjango", - "37771": "WARN", - "37772": "åij", - "37773": "Ġencode", - "37774": "ĠFeedback", - "37775": "Ġstupidity", - "37776": "Ian", - "37777": "ĠYugoslavia", - "37778": "ר", - "37779": "acl", - "37780": "UTE", - "37782": "Ġqualifies", - "37783": "Ġpulses", - "37784": "pretty", - "37785": "Ġfroze", - "37786": "Ġss", - "37787": "Iterator", - "37788": "Ġurgently", - "37789": "Ġmailed", - "37790": "ĠCham", - "37791": "Ġsustaining", - "37792": "Ġbasil", - "37793": "Ġpuppies", - "37794": "ilant", - "37795": "ĠPLEASE", - "37796": "lap", - "37797": "aceous", - "37798": "Fear", - "37799": "ĠMastery", - "37800": "automatic", - "37801": "ĠTAG", - "37802": "Ġantim", - "37803": "agles", - "37805": "frames", - "37806": "Ġwhispers", - "37807": "ĠWhoever", - "37808": "Ġbravery", - "37809": "ĠUKIP", - "37810": "ractions", - "37811": "\"\"\"", - "37812": "Ġtame", - "37813": "Ġparted", - "37814": "everything", - "37815": "CONT", - "37816": "Ġindebted", - "37817": "Ġaddr", - "37818": "rek", - "37819": "IRED", - "37820": "Ġeminent", - "37821": "clinton", - "37822": "Ġousted", - "37823": "Ġreviewer", - "37824": "Ġmeltdown", - "37825": "Ġrearr", - "37826": "ĠYao", - "37827": "thereal", - "37828": "abyte", - "37829": "Ġstumbling", - "37830": "Ġbatches", - "37831": "Ġ259", - "37832": "Ġcontraceptive", - "37833": "Ġprostitute", - "37834": "ensis", - "37835": "Decl", - "37836": "ĠStrikes", - "37837": "Military", - "37838": "ĠOath", - "37839": "vacc", - "37840": "ppings", - "37841": "052", - "37842": "ĠpartName", - "37843": "amping", - "37844": "Reports", - "37845": "KI", - "37846": "CHR", - "37847": "Ġsubtly", - "37848": "swers", - "37849": "Blake", - "37850": "usual", - "37851": "Ġcontestants", - "37852": "Ġcartridges", - "37853": "ĠGREAT", - "37854": "Ġblush", - "37855": "ĠâĢº", - "37857": "Ġreasoned", - "37858": "ãĥ¤", - "37859": "paralleled", - "37860": "Ġdyn", - "37861": "agate", - "37862": "Ġnightly", - "37863": "åĨ", - "37865": "Ġsemantic", - "37866": "ĠAdvoc", - "37867": "Ġ!!", - "37868": "Ġdisagrees", - "37869": "ĠBW", - "37870": "Veh", - "37871": "Ġharming", - "37872": "Ġembraces", - "37873": "Ġstrives", - "37874": "Ġinland", - "37875": "ĠKard", - "37876": "Ġheats", - "37877": "ĠGinny", - "37878": "utan", - "37879": "ernaut", - "37880": "ylene", - "37881": "ĠElev", - "37882": "JD", - "37883": "Ġhars", - "37884": "ĠStarr", - "37885": "Ġskysc", - "37886": "Ġcollaborators", - "37887": "Usually", - "37888": "Ġrevolutions", - "37889": "ĠSTATS", - "37890": "Ġdismantle", - "37891": "Ġconfidently", - "37892": "Ġkinetic", - "37893": "Ali", - "37894": "Ġpercentile", - "37895": "Ġextracting", - "37896": "illian", - "37897": "estead", - "37898": "Ġphysicists", - "37899": "ĠMarshal", - "37900": "Ġfellowship", - "37901": "Ġdashed", - "37902": "ĠUR", - "37903": "ĠSioux", - "37904": "ĠCompact", - "37905": "amide", - "37906": "Python", - "37907": "ĠLeigh", - "37908": "ĠPharmac", - "37909": "istrates", - "37910": "herical", - "37911": "Ġfue", - "37912": "ĠEmin", - "37913": "Ġ({", - "37914": "ĠNeighborhood", - "37915": "Ġdisrupting", - "37916": "ĠDup", - "37917": "Ġgland", - "37918": "ĠSev", - "37919": "ĠMarian", - "37920": "argon", - "37921": "ĠDund", - "37922": "Ġ", - "46905": "ĠPhilips", - "46906": "ĠKafka", - "46907": "Ġupheaval", - "46908": "Ġsentimental", - "46909": "Ġsax", - "46910": "ĠAkira", - "46911": "serial", - "46912": "Matrix", - "46913": "Ġelecting", - "46914": "Ġcommenter", - "46915": "ĠNebula", - "46916": "plets", - "46917": "ĠNadu", - "46918": "ĠAdren", - "46919": "Ġenshr", - "46920": "ĠRAND", - "46921": "financial", - "46922": "ĠClyde", - "46923": "utherford", - "46924": "Ġsignage", - "46925": "Ġdeline", - "46926": "Ġphosphate", - "46927": "roversial", - "46928": "fascist", - "46929": "ĠVall", - "46930": "ĠBethlehem", - "46931": "Ġfors", - "46932": "Ġenglish", - "46933": "Solid", - "46934": "Nature", - "46935": "Ġva", - "46936": "ĠGuests", - "46937": "Ġtantal", - "46938": "Ġautoimmune", - "46939": ";;;;;;;;;;;;", - "46940": "ĠTotally", - "46941": "ĠOv", - "46942": "Ġdefences", - "46943": "ĠCoconut", - "46944": "Ġtranquil", - "46945": "Ġploy", - "46946": "Ġflavours", - "46947": "ĠFlask", - "46948": "ãĤ¨ãĥ«", - "46949": "ĠWeston", - "46950": "ĠVolvo", - "46952": "Ġmicrophones", - "46953": "verbal", - "46954": "RPG", - "46955": "Ġiii", - "46956": ";}", - "46957": "028", - "46958": "Ġheadlined", - "46959": "Ġprimed", - "46960": "Ġhoard", - "46961": "ĠShad", - "46962": "ĠENTER", - "46963": "Ġtriangular", - "46964": "Ġcapit", - "46965": "lik", - "46966": "ĠAncients", - "46967": "Ġlash", - "46968": "Ġconvol", - "46969": "Ġcolonel", - "46970": "enemy", - "46971": "Gra", - "46972": "Ġpubs", - "46973": "utters", - "46974": "Ġassigns", - "46975": "ĠPenet", - "46976": "ĠMonstrous", - "46977": "ĠBowen", - "46978": "ilver", - "46979": "Haunted", - "46980": "ĠDing", - "46981": "started", - "46982": "plin", - "46983": "Ġcontaminants", - "46984": "ĠDOE", - "46985": "ffen", - "46986": "ĠTechnician", - "46987": "Ry", - "46988": "Ġrobbers", - "46989": "Ġhotline", - "46990": "ĠGuardiola", - "46991": "ĠKaufman", - "46992": "rower", - "46993": "ĠDresden", - "46994": "ĠAlpine", - "46995": "Elf", - "46996": "Ġfmt", - "46997": "ĠSard", - "46998": "urses", - "46999": "gpu", - "47000": "Unix", - "47001": "Ġunequivocally", - "47002": "ĠCitizenship", - "47003": "quad", - "47004": "mire", - "47005": "ĠSweeney", - "47006": "Battery", - "47008": "Ġpancakes", - "47009": "Ġoats", - "47010": "Maps", - "47011": "ĠContrast", - "47012": "mbudsman", - "47013": "ĠEPS", - "47014": "Ġsubcommittee", - "47015": "Ġsourcing", - "47016": "Ġsizing", - "47017": "ĠBuffer", - "47018": "ĠMandatory", - "47019": "Ġmoderates", - "47020": "ĠPatterns", - "47021": "ĠChocobo", - "47022": "ĠZan", - "47023": "ĠSTATES", - "47024": "ĠJudging", - "47025": "ĠInher", - "47026": "*:", - "47027": "Ġbil", - "47028": "ĠYen", - "47029": "Ġexhilar", - "47030": "ollower", - "47031": "zers", - "47032": "Ġsnug", - "47033": "maximum", - "47034": "Ġdespicable", - "47035": "ĠPACK", - "47036": "ĠAnnex", - "47037": "Ġsarcastic", - "47038": "Ġlatex", - "47039": "Ġtamp", - "47040": "ĠSao", - "47041": "bah", - "47042": "ĠReverend", - "47043": "ĠChinatown", - "47044": "ĠAUT", - "47045": "documented", - "47046": "ĠGABA", - "47047": "ĠCanaan", - "47048": "ĠÙħ", - "47049": "Ġgoverns", - "47050": "prev", - "47051": "Esc", - "47052": "ĠEstimates", - "47053": "OSP", - "47054": "Ġendeavour", - "47055": "ĠClosing", - "47056": "ometime", - "47057": "everyone", - "47058": "Ġworsen", - "47059": "Ġscanners", - "47060": "Ġdeviations", - "47061": "ĠRobotics", - "47062": "ĠCompton", - "47063": "Ġsorcerer", - "47064": "Ġendogenous", - "47065": "Ġemulation", - "47066": "ĠPiercing", - "47067": "ĠAph", - "47068": "ĠSocket", - "47069": "Ġbould", - "47070": "ĠOU", - "47071": "ĠBorderlands", - "47072": "Ġ1863", - "47073": "Gordon", - "47074": "ĠWTO", - "47075": "Ġrestricts", - "47076": "Ġmosaic", - "47077": "Ġmelodies", - "47078": "çĦ", - "47079": "Tar", - "47080": "Ġdisson", - "47081": "ĠProvides", - "47082": "Ġ......", - "47083": "bek", - "47084": "FIX", - "47085": "Ġbroom", - "47086": "anship", - "47087": "Doctors", - "47088": "Ġnerds", - "47089": "ĠRegions", - "47090": "naissance", - "47091": "Ġmete", - "47092": "Ġcrept", - "47093": "plings", - "47094": "Ġgirlfriends", - "47095": "knit", - "47096": "igent", - "47097": "owe", - "47098": "Ġushered", - "47099": "ĠBaz", - "47100": "Mobil", - "47102": "ĠPresents", - "47103": "origin", - "47104": "Ġinsomnia", - "47105": "ĠAux", - "47107": "ĠChili", - "47108": "irsch", - "47109": "GAME", - "47110": "Ġgestation", - "47111": "algia", - "47112": "romising", - "47113": "$,", - "47114": "crow", - "47115": "ĠInspection", - "47116": "atomic", - "47117": "Relations", - "47118": "JOHN", - "47119": "roman", - "47120": "ĠClockwork", - "47121": "ĠBakr", - "47122": "mone", - "47123": "MET", - "47124": "Ġthirsty", - "47125": "Ġbc", - "47126": "Ġfaculties", - "47127": "Rum", - "47128": "Ġnuance", - "47129": "ĠDarius", - "47130": "pleting", - "47131": "fters", - "47132": "etchup", - "47133": "Registration", - "47134": "ĠKE", - "47135": "Rah", - "47136": "Ġpreferential", - "47137": "ĠLash", - "47138": "ĠHH", - "47139": "Valid", - "47140": "ĠNAV", - "47141": "Ġstarve", - "47142": "ĠGong", - "47143": "zynski", - "47144": "ĠActress", - "47145": "Ġwik", - "47146": "Ġunaccompanied", - "47147": "lvl", - "47148": "Bride", - "47149": "ADS", - "47150": "ĠCommando", - "47151": "ĠVaughn", - "47152": "Wallet", - "47153": "Ġhopping", - "47154": "ĠVie", - "47155": "Ġcaveats", - "47156": "Ġalas", - "47157": "ifled", - "47158": "abuse", - "47160": "Ġibn", - "47161": "Ġgul", - "47162": "Ġrobbing", - "47163": "til", - "47164": "ILA", - "47165": "Ġmitigating", - "47166": "Ġaptly", - "47167": "Ġtyrant", - "47168": "Ġmidday", - "47169": "ĠGilmore", - "47170": "ĠDecker", - "47171": "Ġ§§", - "47172": "partial", - "47173": "Exactly", - "47174": "Ġphenotype", - "47175": "Ġ[+]", - "47176": "ĠPlex", - "47177": "ĠIps", - "47178": "versions", - "47179": "Ġebook", - "47180": "Ġchic", - "47181": "gross", - "47182": "\":\"\"},{\"", - "47183": "ĠSurprisingly", - "47184": "Morgan", - "47185": "Ġresidues", - "47186": "ĠConfederation", - "47187": "infeld", - "47188": "Ġlyr", - "47189": "moderate", - "47190": "Ġperpendicular", - "47191": "VK", - "47192": "Ġsynchronized", - "47193": "Ġrefreshed", - "47194": "Ġadore", - "47195": "ĠTorment", - "47196": "olina", - "47197": "Ġ2600", - "47198": "ItemTracker", - "47199": "Ġpies", - "47200": "ĠFAT", - "47201": "ĠRHP", - "47202": "048", - "47203": "ĠRESP", - "47204": "ĠBJ", - "47205": "allows", - "47206": "Pand", - "47207": "Ġunwelcome", - "47208": "ĠVoc", - "47209": "ĠBastard", - "47210": "ĠOW", - "47211": "ĠLAR", - "47212": "ĠHealer", - "47213": "Environmental", - "47214": "ĠKenyan", - "47215": "ĠTrance", - "47216": "ĠPats", - "47217": "Ġaliases", - "47218": "ĠGarfield", - "47219": "Ġcampaigner", - "47220": "Ġadvancements", - "47221": "ĠOkinawa", - "47222": "ĠCoh", - "47223": "owsky", - "47224": "Ġstarved", - "47225": "Ġsizeable", - "47226": "Ġ:-)", - "47227": "ĠmRNA", - "47228": "Ġsuspensions", - "47229": "istar", - "47230": "Scotland", - "47231": "Prin", - "47232": "------------------------------------------------", - "47233": "Ġ502", - "47234": "Ġteaspoons", - "47235": "Ġ1050", - "47236": "Ġcoercive", - "47237": "ĠMasonic", - "47238": "edded", - "47239": "ĠPassenger", - "47240": "Ġlatt", - "47241": "Ġbraces", - "47242": "ĠSteal", - "47243": "ĠNYT", - "47244": "ĠKats", - "47245": "ĠCelest", - "47246": "aez", - "47247": "Tu", - "47248": "ĠCoulter", - "47249": "ðŁĺ", - "47250": "Flickr", - "47251": "ĠWilmington", - "47252": "iths", - "47253": "++;", - "47254": "Ġvending", - "47255": "Ġnegro", - "47256": "ĠPhi", - "47257": "ĠYellowstone", - "47258": "Callback", - "47259": "Ġshampoo", - "47260": "ĠShades", - "47261": "wat", - "47262": "Ġsuperhuman", - "47263": "Ġridiculed", - "47264": "Ġholiest", - "47265": "ombo", - "47266": "Ġinterns", - "47267": "Ġhone", - "47268": "ĠParagu", - "47269": "URI", - "47270": "Ġdangling", - "47271": "ãĤ»", - "47272": "sov", - "47273": "ictional", - "47274": "availability", - "47275": "Ġrevocation", - "47276": "Ġdow", - "47277": "inic", - "47278": "ĠTHEIR", - "47279": "Ġiso", - "47280": "Ġoutings", - "47281": "ĠLethal", - "47282": "Ġ)))", - "47283": "Ġinaccur", - "47284": "Ġoutlandish", - "47285": "Ġanus", - "47286": "letico", - "47287": "idon", - "47288": "lol", - "47289": "Ġunregulated", - "47290": "Ġsuccumbed", - "47291": "Ġcuff", - "47292": "ĠWasteland", - "47293": "letal", - "47294": "Ġsubstr", - "47295": "Ġcoffers", - "47296": "Ġautomakers", - "47297": "ovi", - "47298": "ĠXue", - "47299": "ĠDaytona", - "47300": "Ġjarring", - "47301": "Ġfumes", - "47302": "Ġdisbanded", - "47303": "zik", - "47304": "itton", - "47305": "Ġstrikingly", - "47306": "Ġspores", - "47307": "Adapter", - "47308": ".):", - "47309": "ĠLyndon", - "47310": "ivalry", - "47311": "Ġorally", - "47312": "Ġtumultuous", - "47313": "Ġdispleasure", - "47314": "Ġcones", - "47315": "orrect", - "47316": "Ġappease", - "47317": "Ġderby", - "47318": "ĠTripoli", - "47319": "ĠAless", - "47320": "Ġpoked", - "47321": "ĠGuilty", - "47322": "vP", - "47323": "Enough", - "47324": "Ġoriginals", - "47326": "Ġrabbi", - "47327": "Ġproverbial", - "47328": "Ġpostpone", - "47329": "elope", - "47330": "ĠMisty", - "47331": "Ġstaffed", - "47332": "ĠUnemployment", - "47333": "reditary", - "47334": "Ġdiligent", - "47335": "recomm", - "47336": "measures", - "47337": "asin", - "47339": "Ġponds", - "47340": "Ġmmol", - "47341": "ĠSAR", - "47342": "ĠCARE", - "47343": "Ġ371", - "47344": "Ġclenched", - "47345": "ĠCorsair", - "47346": "Ġcaricature", - "47347": "zn", - "47348": "attach", - "47349": "ĠSchro", - "47350": "speak", - "47351": "painted", - "47352": "ĠSuc", - "47353": "ĠENT", - "47354": "Ġcellul", - "47355": "ĠPaid", - "47356": "diagn", - "47357": "WHERE", - "47358": "Ġtexted", - "47359": "Barn", - "47360": "Ġretracted", - "47361": "ĠReferred", - "47362": "Sav", - "47363": "Ġupkeep", - "47364": "Ġworkplaces", - "47365": "ĠTokens", - "47366": "Ġamplify", - "47367": "clinical", - "47368": "Ġmultic", - "47369": "mberg", - "47370": "Ġconvoluted", - "47371": "Region", - "47373": "ĠTopic", - "47374": "Ġsnail", - "47375": "Ġsaline", - "47376": "Ġinsurrection", - "47377": "ĠPetr", - "47378": "forts", - "47379": "BAT", - "47380": "ĠNavajo", - "47381": "Ġrudimentary", - "47382": "ĠLaksh", - "47383": "ONDON", - "47384": "Measure", - "47385": "Ġtransformer", - "47386": "ĠGoddard", - "47387": "Ġcoincides", - "47388": "irin", - "47389": "Rex", - "47390": "ĠBok", - "47391": "quit", - "47392": "Ġshotguns", - "47393": "Ġproletarian", - "47394": "Ġscorp", - "47395": "ĠAda", - "47397": "Ġslander", - "47398": "recorded", - "47399": "Ġembell", - "47400": "risome", - "47401": "Ġapologizing", - "47402": "ĠMulcair", - "47403": "ĠGibraltar", - "47404": "Cla", - "47405": "Ġallot", - "47406": "ĠAttention", - "47407": "Ġ433", - "47408": "leave", - "47409": "Ġwhine", - "47410": "ĠIssa", - "47411": "ĠFaust", - "47412": "ĠBarron", - "47413": "heny", - "47414": "Ġvictimized", - "47415": "Jews", - "47416": "Ġnurturing", - "47417": "ettel", - "47418": "Winged", - "47419": "ĠSubtle", - "47420": "Ġflavorful", - "47421": "ĠReps", - "47422": "enged", - "47423": "callback", - "47424": "Ġdirectional", - "47425": "Ġclasp", - "47426": "ĠDirections", - "47427": "planet", - "47428": "iculture", - "47429": "Helper", - "47430": "icion", - "47431": "acia", - "47432": "Ġç¥ŀ", - "47433": "Ġsurges", - "47434": "Ġcanoe", - "47435": "ĠPremiership", - "47436": "been", - "47437": "Ġdefied", - "47438": "ĠTrooper", - "47439": "Ġtripod", - "47440": "Ġgasp", - "47441": "ĠEuph", - "47442": "ĠAds", - "47443": "vernight", - "47444": "highly", - "47445": "Role", - "47446": "Ġentangled", - "47447": "ĠZeit", - "47449": "ĠRusty", - "47450": "Ġhavens", - "47451": "ĠVaughan", - "47452": "HAEL", - "47453": "ĠSERVICE", - "47454": "/,", - "47455": "Ġstricken", - "47456": "Ġdelusions", - "47457": "Ġbis", - "47458": "ĠHaf", - "47459": "Ġgratification", - "47460": "Ġenticing", - "47461": "UNCH", - "47462": "Adams", - "47463": "ĠOLED", - "47464": "ĠBeetle", - "47465": "Ġ1899", - "47466": "ĠSOFTWARE", - "47467": "ategor", - "47468": "VL", - "47469": "ĠTotem", - "47470": "ĠGators", - "47471": "ATURES", - "47472": "Ġimpedance", - "47473": "Registered", - "47474": "ĠCary", - "47475": "ĠAerial", - "47476": "onne", - "47477": "enium", - "47478": "Ġdred", - "47479": "ĠBeg", - "47480": "Ġconcurrently", - "47481": "Ġsuperpower", - "47482": "ĠXan", - "47483": "jew", - "47484": "imester", - "47485": "ĠDickinson", - "47486": "âĶģ", - "47487": "Fla", - "47488": "Ġpree", - "47489": "ĠRollins", - "47490": "©¶æ", - "47491": "Ġdenomination", - "47492": "ĠLana", - "47494": "Ġinciting", - "47495": "scribed", - "47496": "juries", - "47497": "ĠWonders", - "47498": "approximately", - "47499": "Ġsuspending", - "47500": "Ġmountainous", - "47501": "ĠLaugh", - "47502": "oidal", - "47503": "Ns", - "47504": "Detect", - "47505": ")=", - "47506": "ĠLuthor", - "47507": "ĠSchwarzenegger", - "47508": "ĠMuller", - "47509": "ĠDevi", - "47510": "ecycle", - "47511": "Jar", - "47513": "ĠLongh", - "47514": "Bah", - "47515": "ĠSPORTS", - "47516": "nw", - "47517": "Ġrefinement", - "47518": "Ġwaterways", - "47519": "Ġdiner", - "47520": "Blade", - "47522": "Fac", - "47523": "Ġinitials", - "47524": "Ġrog", - "47525": "Ġparanormal", - "47526": "BUT", - "47527": "Ġ[(", - "47528": "ĠSwanson", - "47529": "ĠMesh", - "47530": "âĸ¬", - "47531": "Improve", - "47532": "ĠRadiation", - "47533": "ĠEsther", - "47534": "ĠEsk", - "47535": "ĠAly", - "47536": "iky", - "47537": "Ġirrad", - "47538": "ĠBuckingham", - "47539": "Ġrefill", - "47540": "Ġ._", - "47541": "Repe", - "47542": "CONCLUS", - "47543": "Ġdifferentiated", - "47544": "Ġchirop", - "47545": "ĠAtkins", - "47546": "Pattern", - "47547": "Ġexcise", - "47548": "Ġcabal", - "47549": "NSA", - "47550": "ĠSTA", - "47551": "ĠSIL", - "47552": "ĠParaly", - "47553": "Ġrye", - "47554": "ĠHowell", - "47555": "ĠCountdown", - "47556": "nesses", - "47557": "alysed", - "47558": "Ġresize", - "47559": "ãĤ½", - "47560": "Ġbudgetary", - "47561": "ĠStras", - "47562": "wang", - "47563": "Ġapiece", - "47564": "Ġprecincts", - "47565": "Ġpeach", - "47566": "Ġskyline", - "47567": "Ġ353", - "47568": "popular", - "47569": "Appearances", - "47570": "ĠMechanics", - "47571": "ĠDevOnline", - "47572": "Sullivan", - "47573": "Zen", - "47574": "Ġpu", - "47575": "opolis", - "47577": "Ġdeform", - "47578": "Ġcounteract", - "47579": "ĠLange", - "47580": "Ġ417", - "47581": "Console", - "47583": "Ġnodding", - "47584": "Ġpopulism", - "47585": "Ġhep", - "47586": "Ġcounselling", - "47587": "compliance", - "47588": "UFF", - "47589": "Ġundeniably", - "47590": "Ġrailing", - "47591": "ĠHorowitz", - "47592": "ĠSimone", - "47593": "ĠBungie", - "47594": "Ġak", - "47595": "ĠTalks", - "47596": "xff", - "47597": "flake", - "47598": "Crash", - "47599": "Ġsweaty", - "47600": "Ġbanquet", - "47601": "ĠOFFIC", - "47602": "Ġinventive", - "47603": "Ġastronomer", - "47604": "ĠStamford", - "47605": "ĠScare", - "47606": "ĠGREEN", - "47607": "olicited", - "47608": "Ġrusher", - "47609": "Ġcentrist", - "47610": "ighting", - "47611": "Ġsubclass", - "47612": "Ġdisav", - "47613": "Ġdefund", - "47614": "ĠNanto", - "47615": "ociate", - "47616": "mast", - "47617": "Ġpacif", - "47618": "Ġmend", - "47619": "eers", - "47620": "immigration", - "47621": "ESSION", - "47622": "Ġnumbering", - "47623": "Ġlaughable", - "47624": "ĠEnded", - "47625": "viation", - "47626": "emark", - "47627": "Pitt", - "47628": "Ġmeticulous", - "47629": "ĠLF", - "47630": "Ġcongratulated", - "47631": "ĠBirch", - "47632": "Ġswayed", - "47633": "Ġsemifinals", - "47634": "Ġhumankind", - "47635": "matter", - "47636": "ĠEquip", - "47637": "opausal", - "47638": "Said", - "47639": "ĠLayout", - "47640": "Ġvoicing", - "47641": "Ġthug", - "47642": "Ġpornographic", - "47643": "IPS", - "47644": "Ġmoaning", - "47645": "Ġgrievance", - "47646": "Ġconfessions", - "47647": "escal", - "47648": "TEXTURE", - "47649": "Authent", - "47650": "osaurus", - "47651": "Purchase", - "47652": "Ġrelegation", - "47653": "alter", - "47654": "Ġ³³", - "47655": "Ġriddled", - "47656": "Ġogre", - "47657": "ĠLowell", - "47658": "Occup", - "47659": "Eat", - "47660": "ĠHyder", - "47661": "ĠAdviser", - "47662": "Commerce", - "47663": "Hunt", - "47664": "ĠOrth", - "47665": "ĠCompetitive", - "47666": "ĠCLA", - "47667": "CDC", - "47668": "Ġsalads", - "47669": "Fle", - "47670": "Ġindustrialized", - "47671": "`,", - "47672": "ĠOWN", - "47673": "Ġbeck", - "47674": "ĠParticularly", - "47675": "oubt", - "47676": "ĠmM", - "47677": "ĠHussain", - "47678": "ĠChennai", - "47679": "Ġ920", - "47680": "Ġappointing", - "47681": "ĠCullen", - "47682": ",,,,,,,,", - "47683": "Ġpores", - "47684": "verified", - "47685": "Ġbiochemical", - "47686": "emate", - "47687": "Ġcowardly", - "47688": "ĠHelsinki", - "47689": "ĠEthiopian", - "47690": "SOURCE", - "47691": "ERC", - "47692": "estro", - "47693": "Ġbiotech", - "47694": "ĠSour", - "47695": "Ġbrewer", - "47696": "Bloomberg", - "47697": "Ġintensify", - "47698": "Glass", - "47699": "anco", - "47700": "ĠFDR", - "47701": "greSQL", - "47702": "ĠFires", - "47703": "©¶æ¥µ", - "47704": "eco", - "47706": "ĠHomeless", - "47707": "Ġinstantaneous", - "47708": "ĠHaste", - "47709": "igel", - "47710": "Diamond", - "47711": "Ġpaving", - "47712": "Ġlandfill", - "47713": "Ġdads", - "47714": "houn", - "47715": ":]", - "47716": "Ġincendiary", - "47717": "ĠLivingston", - "47718": "ĠHilbert", - "47719": "ĠChecks", - "47720": "styles", - "47721": "inators", - "47722": "ĠClive", - "47723": "phrine", - "47724": "Ġchimpanzees", - "47725": "Ġpall", - "47726": "ĠJM", - "47727": "ĠAadhaar", - "47728": "ðĿ", - "47729": "Ġachievable", - "47730": "disabled", - "47731": "PET", - "47732": "OOOOOOOO", - "47733": "Mot", - "47734": "Ġintangible", - "47735": "Ġballet", - "47736": "ĠWebs", - "47737": "ĠEstimated", - "47738": "Effects", - "47739": "Ġbailed", - "47740": "Joshua", - "47741": "Ġturbulence", - "47742": "Ġoccupant", - "47743": "ĠDaylight", - "47744": "Ġ361", - "47745": "meet", - "47746": "Ġstatically", - "47747": "Ġonlook", - "47748": "Ġki", - "47749": "illegal", - "47750": "Ġvelvet", - "47751": "Ġdehydration", - "47752": "Ġacquies", - "47753": "ĠRez", - "47754": "akura", - "47755": "ĠUpton", - "47756": "atro", - "47757": "Ġincomprehensible", - "47758": "Ġbackdoor", - "47759": "ĠRhino", - "47761": "Ġmaths", - "47762": ")+", - "47763": "Ġheresy", - "47764": "Ġdf", - "47765": "ĠRoche", - "47766": "ĠLydia", - "47767": "Ġpancreat", - "47768": "reply", - "47769": "arrell", - "47770": "Ġsolicitation", - "47771": "Ġcircadian", - "47772": "BIP", - "47773": "Ġforay", - "47774": "Ġcryptic", - "47775": "izu", - "47776": "imeo", - "47777": "ĠTomato", - "47778": "ĠHoms", - "47779": "examination", - "47780": "Ġquarry", - "47781": "ĠValiant", - "47782": "ĠJericho", - "47783": "ĠINCLUD", - "47784": "Ġ1840", - "47786": "Ġresists", - "47787": "Ġsnapshots", - "47788": "ĠSpur", - "47789": "ĠAntiqu", - "47790": "Login", - "47791": "Ġbestselling", - "47792": "Ġantic", - "47793": "ĠSutherland", - "47794": "ãĤ¢ãĥ«", - "47795": "Ġ~/", - "47796": "ĠParm", - "47797": "èĥ", - "47798": "Pages", - "47799": "intensity", - "47800": "Ġimmobil", - "47801": "Ġ1865", - "47802": "zzo", - "47803": "Ġnifty", - "47804": "Ġfentanyl", - "47805": "ĠPreservation", - "47806": "ophen", - "47807": "Ġdarts", - "47808": "ĠDinosaur", - "47809": "pointers", - "47810": "ĠRite", - "47811": "suggest", - "47812": "awareness", - "47813": "ĠSheridan", - "47814": "Ġstances", - "47815": "Ġsorcery", - "47816": "Ġperjury", - "47817": "ĠNikola", - "47818": "iever", - "47819": "Ġfiance", - "47820": "ĠJordanian", - "47821": "ĠBalloon", - "47822": "Ġnab", - "47823": "Ġkb", - "47824": "Ġhumanities", - "47825": "ĠTanaka", - "47826": "hillary", - "47827": "Ġconsultancy", - "47828": "ĠZub", - "47829": "Ġremission", - "47830": "Ġconfid", - "47831": "CHQ", - "47832": "ĠFug", - "47833": "Ġimprovis", - "47834": "Yep", - "47835": "/_", - "47836": "Ġunwillingness", - "47837": "Ġportfolios", - "47838": "055", - "47839": "ĠInstructor", - "47840": "aiman", - "47841": "Ġclaimants", - "47842": "Mbps", - "47843": "ĠBye", - "47844": "received", - "47845": "Tweet", - "47846": "Ġindemn", - "47847": "riz", - "47848": "amara", - "47849": "Nat", - "47850": "Ġevaluates", - "47851": "ĠLur", - "47852": "epad", - "47853": "FOX", - "47854": "ĠThro", - "47855": "Ġrusty", - "47856": "Ġbedrock", - "47857": "ĠOprah", - "47858": "JB", - "47859": "Ġmanipulative", - "47860": "Ġwillful", - "47861": "Ġrelapse", - "47862": "Ġextant", - "47863": "Theme", - "47864": "Sensor", - "47865": "ĠStability", - "47866": "govern", - "47867": "Ġpoppy", - "47868": "Ġknack", - "47869": "Ġinsulated", - "47870": "ĠTile", - "47871": "ĠExtrem", - "47872": "Ġuntold", - "47873": "Ġconverge", - "47874": "Ġrefuel", - "47875": "igroup", - "47876": "Ġdistortions", - "47877": "Ġravaged", - "47878": "Ġmechanically", - "47879": "ĠReilly", - "47880": "ĠNose", - "47881": "ĠIncarnation", - "47882": "ĠBecky", - "47883": "abbling", - "47884": "Ġtaco", - "47885": "Ġrake", - "47886": "Ġmelancholy", - "47887": "Ġillustrious", - "47888": "ĠDartmouth", - "47889": "Guide", - "47890": "ĠRazer", - "47891": "ĠBenz", - "47892": "Ultimate", - "47893": "ĠSurprise", - "47894": "Ġpageant", - "47895": "offer", - "47896": "Whoever", - "47897": "Ġwiser", - "47898": "Ġchemist", - "47899": "ĠHELL", - "47900": "ĠBulk", - "47901": "Ġplutonium", - "47902": "ĠCOVER", - "47903": "Ö¼", - "47904": "failed", - "47905": "Ġtirelessly", - "47906": "Ġinfertility", - "47907": "ĠTrident", - "47908": "ĠShowtime", - "47909": "ĠCiv", - "47910": "Vice", - "47911": "requires", - "47912": "ittance", - "47913": "Ġuncontrolled", - "47914": "interesting", - "47916": "Ġinnovate", - "47917": "ategic", - "47918": "Lie", - "47919": "ĠSelling", - "47920": "Ul", - "47921": "Ġsavior", - "47922": "ĠTosh", - "47923": "Ġswast", - "47924": "PASS", - "47925": "Ġrink", - "47926": "Ġcardio", - "47927": "ĠIro", - "47928": "udi", - "47929": "Ġvantage", - "47930": "Ġvans", - "47931": "ĠNiño", - "47932": "+=", - "47933": "Ġpropagate", - "47934": "", - "49030": "Ġleukemia", - "49031": "Ġeluc", - "49032": "Ġannouncer", - "49033": "ĠLithuan", - "49034": "ĠArmageddon", - "49035": "åĩ", - "49036": "Lenin", - "49037": "ĠRuk", - "49038": "Ġpepp", - "49039": "ĠRomantic", - "49040": "ĠPIT", - "49041": "ĠInterstellar", - "49042": "ĠAtkinson", - "49043": "Raid", - "49044": "Js", - "49045": "Goal", - "49046": "Course", - "49047": "Ġvanishing", - "49048": "esley", - "49049": "ĠRounds", - "49050": "Elsa", - "49052": "Ġredundancy", - "49053": "ĠSTAND", - "49054": "Ġprophetic", - "49055": "Ġhabitable", - "49056": "ryu", - "49057": "Ġfaintly", - "49058": "MODE", - "49059": "Ġflanked", - "49060": "IRC", - "49061": "Awesome", - "49062": "Ġspurious", - "49063": "ĠZah", - "49064": "ĠMSG", - "49065": "Ġshading", - "49066": "Ġmotivational", - "49067": "ĠSantana", - "49068": "ĠSPR", - "49069": "Ġexcruciating", - "49070": "omial", - "49071": "ĠMiko", - "49072": "ĠLeopard", - "49073": "Abyss", - "49074": "Ġ[|", - "49075": "dirty", - "49076": "Ġbaths", - "49077": "Ġdemoral", - "49078": "andre", - "49079": "PB", - "49080": "Ġunification", - "49081": "Ġsacrament", - "49082": "Ġ[&", - "49083": "Ġpriceless", - "49084": "Ġgelatin", - "49085": "Ġemanating", - "49086": "ĠAllaah", - "49088": "Ġoutburst", - "49089": "Ġeras", - "49090": "ĠXVI", - "49091": "ĠSPI", - "49092": "Ott", - "49093": "ĠLazarus", - "49094": "PLIED", - "49095": "Flying", - "49096": "blogs", - "49097": "Wisconsin", - "49098": "Raven", - "49099": "Ġrebate", - "49100": "Ġcreeps", - "49101": "ĠSpan", - "49102": "ĠPainter", - "49103": "ĠKira", - "49104": "ĠAmos", - "49105": "ĠCorvette", - "49106": "Consumer", - "49107": "ĠRecover", - "49108": "cki", - "49109": "Ġpesky", - "49110": "ĠInvention", - "49111": "Companies", - "49112": "Ġchallengers", - "49113": "ademic", - "49114": "ĠUkrainians", - "49115": "ĠNeurolog", - "49116": "ĠForsaken", - "49117": "Ġentrants", - "49118": "Ġembattled", - "49119": "Ġdefunct", - "49120": "ĠGlacier", - "49121": "Ġpoisons", - "49122": "ĠHorses", - "49123": "makes", - "49124": "ĠDirt", - "49125": "Ġ423", - "49126": "hhh", - "49127": "ĠTransformation", - "49128": "QUIRE", - "49129": "..................", - "49130": "Ġtraveller", - "49131": "ĠSexy", - "49132": "ĠKern", - "49133": "ipolar", - "49134": "Ġransomware", - "49135": "oooooooooooooooo", - "49136": "Ec", - "49137": "ruby", - "49138": "Professional", - "49139": "ĠOutbreak", - "49140": "argument", - "49141": "Grey", - "49142": "ĠFifa", - "49143": "ĠCHO", - "49144": "ĠFORM", - "49145": "ĠAmtrak", - "49146": "-[", - "49147": "Ġcradle", - "49148": "Ġantioxidants", - "49149": "ãģ®å®", - "49151": "ĠNASL", - "49152": "ĠContributions", - "49153": "Indiana", - "49154": "ĠSTEP", - "49155": "CSS", - "49156": "Ġsalient", - "49157": "Ġallocations", - "49158": "yrights", - "49159": "Ġmashed", - "49160": "ĠCutter", - "49161": "Sexual", - "49162": "Ġpounded", - "49163": "Ġfanbase", - "49164": "Ġcasc", - "49165": "ĠTransparency", - "49166": "Ġanalytic", - "49167": "ĠSummoner", - "49168": "×ŀ", - "49169": "ĠADC", - "49170": "detail", - "49171": "Ġvanquished", - "49172": "Ġcrabs", - "49173": "arie", - "49174": "Destroy", - "49175": "ĠSack", - "49176": "Ġtransistor", - "49177": "Alabama", - "49178": "ĠKoen", - "49179": "ĠFisheries", - "49180": "cone", - "49181": "Ġannexed", - "49182": "ĠMGM", - "49183": "esa", - "49184": "Ġfaked", - "49185": "ĠCongratulations", - "49186": "Ġhindered", - "49187": "Ġcorrectional", - "49188": "ĠITV", - "49189": "leeve", - "49190": "Ġinappropriately", - "49191": "licks", - "49192": "Ġtrespass", - "49193": "Ġpaws", - "49194": "Ġnegotiator", - "49195": "ĠChristensen", - "49196": "limits", - "49197": "ĠDianne", - "49198": "Ġelegance", - "49199": "ĠContracts", - "49200": "anke", - "49201": "Obj", - "49202": "Ġvigilance", - "49203": "Ġcastles", - "49204": "ĠNAD", - "49205": "ĠHolo", - "49206": "Ġemphatically", - "49207": "ĠTitus", - "49208": "ĠServing", - "49209": "ĠRichie", - "49210": "ĠPigs", - "49212": "Ġanimosity", - "49213": "ĠAttributes", - "49214": "ĠUriel", - "49215": "MQ", - "49216": "myra", - "49217": "ĠApplicant", - "49218": "Ġpsychiatrists", - "49219": "ĠVij", - "49220": "ĠAbby", - "49221": "agree", - "49222": "Push", - "49223": "ĠkWh", - "49224": "hiba", - "49225": "Ġincite", - "49226": "ĠWeasley", - "49227": "ĠTaxi", - "49228": "ministic", - "49229": "hyper", - "49230": "ĠFarn", - "49231": "Ġ601", - "49232": "ĠNationwide", - "49233": "Fake", - "49235": "Ġmaize", - "49236": "Ġinteracted", - "49237": "Ġtransitioned", - "49238": "Ġparasitic", - "49239": "Ġharmonic", - "49240": "Ġdecaying", - "49241": "Ġbaseless", - "49242": "nsics", - "49243": "Ġtranspired", - "49244": "Ġabundantly", - "49245": "ĠForensic", - "49246": "Ġtreadmill", - "49247": "ĠJav", - "49248": "aband", - "49249": "Ġsshd", - "49250": "Ġfrontman", - "49251": "ĠJakarta", - "49252": "oller", - "49253": "drops", - "49254": "ĠSERVICES", - "49255": "romptu", - "49256": "ophical", - "49257": "hospital", - "49258": "bledon", - "49260": "Ġmidrange", - "49261": "ĠEVENT", - "49262": "culated", - "49263": "rawled", - "49264": "Ġperched", - "49265": "Ġoverboard", - "49266": "ĠPeel", - "49267": "ĠPwr", - "49268": "ĠCarth", - "49269": "ĠCOMPLE", - "49270": "coe", - "49271": "shall", - "49272": "Ġdeterrence", - "49273": "METHOD", - "49274": "ĠAbsent", - "49275": "MEN", - "49276": "Ġsill", - "49277": "ĠLEVEL", - "49278": "York", - "49279": "Ġsinners", - "49280": "ĠOPEC", - "49281": "ĠNur", - "49282": "ĠDesigns", - "49283": "selection", - "49284": "Ġunworthy", - "49285": "CHA", - "49286": "Ġstrengthens", - "49288": "edly", - "49289": "Ġslicing", - "49290": "Ġmalnutrition", - "49291": "Ġfilmmaking", - "49292": "ĠPolk", - "49293": "urated", - "49294": "Ġ421", - "49295": "breakers", - "49296": "!'\"", - "49297": "Ġwetlands", - "49298": "ĠDiscrimination", - "49299": "Ġallowable", - "49300": "Ġsteered", - "49301": "ĠSicily", - "49302": "SAM", - "49303": "Ġmustache", - "49304": "Ġmids", - "49305": "Ġclipped", - "49306": "Ġcirculate", - "49307": "Ġbrittle", - "49308": "ĠBuildings", - "49309": "raised", - "49310": "ĠRoundup", - "49311": "Ġwealthier", - "49312": "Ġoverwrite", - "49313": "Ġoverpowered", - "49314": "ĠGerrard", - "49315": "sites", - "49316": "PDATED", - "49317": "Ġacutely", - "49318": "ĠGamble", - "49319": "Ġpim", - "49320": "ĠKus", - "49321": "Typically", - "49322": "Deploy", - "49323": "ĠMoroccan", - "49324": "potion", - "49325": "combe", - "49326": "Ġvigilante", - "49327": "Ġ363", - "49328": "Stew", - "49329": "ĠBagg", - "49330": "Ġresided", - "49331": "ĠSpo", - "49332": "Ġremnant", - "49333": "Ġemptiness", - "49334": "brainer", - "49335": "Ġoutpatient", - "49336": "priority", - "49337": "Ġleptin", - "49338": "ĠPayton", - "49339": "ĠGleaming", - "49340": "ĠShed", - "49341": "ĠPolo", - "49342": "ĠMormonism", - "49343": "restricted", - "49344": "arlane", - "49345": "wx", - "49346": "Ġcreatine", - "49347": "ĠAnon", - "49348": "ĠSTUD", - "49349": "ĠJUL", - "49350": "ĠTee", - "49352": "089", - "49353": "Ġhatched", - "49354": "Dispatch", - "49355": "ĠComposite", - "49356": "Ġ451", - "49357": "puff", - "49358": "ĠXCOM", - "49359": "ĠOrn", - "49360": "ĠTHANK", - "49361": "ENDED", - "49362": "ĠAsheville", - "49363": "ĠÃľ", - "49364": "Ġmango", - "49365": "ĠSlightly", - "49366": "worldly", - "49367": "ĠWander", - "49368": "ĠExpand", - "49369": "ĠChr", - "49370": "Mist", - "49371": "Ġorthodoxy", - "49372": "ĠUNESCO", - "49373": "regate", - "49374": "Elsewhere", - "49375": "kie", - "49376": "irled", - "49377": "Ġtopple", - "49378": "Ġadoptive", - "49379": "ĠLegs", - "49380": "dress", - "49381": "ĠSagan", - "49382": "bare", - "49383": "ĠGlou", - "49384": "Crunch", - "49385": "Ġhelpers", - "49386": "Ġchronically", - "49387": "ĠHuma", - "49389": "Ġaccommodating", - "49390": "äºĶ", - "49391": "Ġwrinkles", - "49392": "Ġdodged", - "49393": "fourth", - "49394": "Ġprecon", - "49395": "Ġcompressor", - "49396": "ĠKare", - "49397": "Ġevict", - "49398": "ĠWarwick", - "49399": "imar", - "49400": "Ġmodernization", - "49401": "Ġbandwagon", - "49402": "Ġrefuted", - "49403": "Ġnetted", - "49404": "ĠNaples", - "49405": "ĠGenie", - "49406": "perors", - "49407": "Ġfielded", - "49408": "Ġdere", - "49409": "ĠParables", - "49410": "lees", - "49411": "Ġtrout", - "49412": "aspers", - "49413": "Ġnihil", - "49414": "Ġhappiest", - "49415": "Ġfloppy", - "49416": "ĠLoft", - "49417": "ĠHeard", - "49418": "Ġunison", - "49419": "Ġlug", - "49420": "ĠRedmond", - "49421": "classic", - "49422": "Supporters", - "49423": "SHIP", - "49424": "GMT", - "49425": "Ġfuelled", - "49426": "çIJ", - "49427": "Ġdd", - "49428": "ĠEminem", - "49429": "Ġ1897", - "49430": "NYSE", - "49431": "Ġsecretaries", - "49432": "ĠFIA", - "49433": "ĠCanaveral", - "49434": "Favorite", - "49435": "Ġpomp", - "49436": "Ġdetainee", - "49437": "ership", - "49438": "aimon", - "49439": "iour", - "49440": "ĠApex", - "49441": "Ġplantations", - "49442": "amia", - "49443": "acion", - "49444": "Rust", - "49445": "Ġtowed", - "49446": "ĠTruly", - "49448": "Ġsheltered", - "49449": "rider", - "49450": "Wo", - "49451": "Ġlair", - "49452": "ĠIntelligent", - "49453": "improve", - "49454": "matically", - "49455": "Ġetiquette", - "49456": "adra", - "49457": "allo", - "49458": "ĠJuno", - "49459": "anything", - "49460": "ĠStruggle", - "49461": "ĠPredict", - "49462": "ĠGrimes", - "49463": "ĠAMERICA", - "49464": "ctx", - "49465": "ĠSituation", - "49466": "WOOD", - "49467": "Ġsoluble", - "49468": "meier", - "49469": "Ġintolerable", - "49470": "angering", - "49471": "Ġuninterrupted", - "49472": "Ġtooltip", - "49473": "Ġinterrogated", - "49474": "Ġgunned", - "49475": "ĠSneak", - "49476": "æŃ¦", - "49477": "Ġtether", - "49478": "Ġcrumble", - "49479": "Lens", - "49480": "Ġclustered", - "49481": "ĠSyl", - "49482": "ĠHasan", - "49483": "Ġdystopian", - "49484": "wana", - "49485": "Ġjoystick", - "49486": "ĠThib", - "49487": "ammu", - "49488": "Tomorrow", - "49490": "Ġovercame", - "49491": "Ġminimized", - "49492": "ceptor", - "49493": "Runner", - "49494": "ENGTH", - "49495": "ĠBrenda", - "49496": "ĠAchievements", - "49497": "Ġtorches", - "49498": "Ġrapport", - "49499": "ĠInvestigator", - "49500": "ĠHandling", - "49501": "relation", - "49502": "grey", - "49504": "Ġkcal", - "49505": "ĠCommands", - "49506": "dq", - "49507": "Ġcurls", - "49508": "Ġbearer", - "49509": "Ġcynicism", - "49510": "itri", - "49511": "ĠUseful", - "49512": "Bee", - "49513": "DCS", - "49514": "Ġabras", - "49515": "Pract", - "49516": "BILITIES", - "49518": "Ġdebugger", - "49519": "Ġdebtor", - "49520": "ĠLia", - "49521": "ĠKers", - "49522": "Ġexacerbate", - "49523": "ĠStacy", - "49524": "ĠBland", - "49525": "ĠScenes", - "49526": "Ġbranching", - "49527": "âĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪ", - "49528": "apeake", - "49529": "Ġsalsa", - "49530": "Ġmishand", - "49531": "ĠKonami", - "49532": "ĠNib", - "49533": "Ġanecdote", - "49534": "Ġagreeable", - "49535": "Ïī", - "49536": "ĠNathaniel", - "49537": "ĠHeisman", - "49538": "ĠBeware", - "49539": "Ġ1886", - "49540": "spective", - "49543": "Ġinhibits", - "49544": "Ġhashing", - "49545": "Ġ1889", - "49546": "å°Ĩ", - "49547": "vich", - "49548": "Pure", - "49549": "Ġsolidly", - "49550": "Ġaspirin", - "49551": "imaru", - "49552": "Ġstreetcar", - "49553": "ĠUCS", - "49554": "ĠJudd", - "49555": "Ġflashbacks", - "49556": "pins", - "49557": "Ġ1440", - "49558": "ĠUNHCR", - "49559": "ĠSymptoms", - "49560": "TIT", - "49562": "Fra", - "49563": "%);", - "49564": "Ġooz", - "49565": "Ġcurfew", - "49566": "Ġcalmed", - "49567": "Ġparticipates", - "49568": "TeX", - "49569": "Ġnonsensical", - "49570": "Ġfullback", - "49571": "ĠDeL", - "49572": "monkey", - "49573": "hari", - "49574": "Ġmetabolites", - "49575": "Ġlooted", - "49576": "ĠALWAYS", - "49577": "ĠBCC", - "49578": "Lt", - "49579": "ochet", - "49580": "Bone", - "49581": "Ġvetoed", - "49582": "Ġgcc", - "49583": "ĠCLICK", - "49584": "Ġ1888", - "49585": "saf", - "49586": "Ġstiffness", - "49587": "Ġlowly", - "49588": "ĠGeh", - "49589": "verson", - "49590": "orset", - "49591": "Ġunforeseen", - "49592": "Ġanesthesia", - "49593": "ĠOptical", - "49594": "Ġreconstructed", - "49595": "ĠTup", - "49596": "shows", - "49597": "NEWS", - "49598": "ĠNewspaper", - "49599": "ĠASA", - "49600": "tera", - "49601": "Numbers", - "49602": "Ġinexplicable", - "49603": "×ij", - "49604": "Ġhardness", - "49605": "untarily", - "49606": "ĠAcer", - "49607": "gradient", - "49608": "ARDIS", - "49609": "Ġwoodland", - "49610": "Ġmetaphors", - "49611": "ĠWembley", - "49612": "ĠPavel", - "49613": "philis", - "49614": "Ġrewriting", - "49615": "Ġperceptual", - "49616": "Ġ1070", - "49617": "worms", - "49618": "ĠDowns", - "49619": "Ġunsurprisingly", - "49620": "Ġtagging", - "49621": "flame", - "49622": "Ġlitres", - "49623": "Ġbounces", - "49624": "ĠBabe", - "49625": "shut", - "49626": "Ġoverdoses", - "49627": "ĠSheila", - "49628": "ĠChau", - "49629": "ĠBless", - "49630": "Capture", - "49631": "ĠSignificant", - "49632": "ĠScion", - "49633": "Ġ389", - "49634": "ĠMcH", - "49635": "ĠTitanium", - "49636": "ĠMeal", - "49637": "ameda", - "49638": "agents", - "49639": "aggressive", - "49640": "Billy", - "49642": "ĠSaying", - "49643": "DERR", - "49644": "itone", - "49645": "Collins", - "49646": "Bound", - "49647": "Ġbolted", - "49648": "ĠDMCA", - "49650": "Ġuniqueness", - "49651": "Ġepigen", - "49652": "unci", - "49653": "antam", - "49654": "Ġreckoning", - "49655": "chairs", - "49656": "OGR", - "49657": "ĠSenegal", - "49658": "Ġ1862", - "49659": "relevant", - "49660": "Ġ¯", - "49661": "Ġpharmacies", - "49662": "ĠGeral", - "49663": "vier", - "49664": "Yan", - "49665": "ORPG", - "49666": "Ġrabid", - "49667": "bending", - "49668": "ĠUNITED", - "49669": "Ġ465", - "49670": "Assembly", - "49671": "Ġweep", - "49672": "Ġbehest", - "49673": "ĠMothers", - "49674": "ĠJace", - "49675": "hid", - "49676": "Ġwhirlwind", - "49677": "ĠUNIVERS", - "49678": "Ġutopian", - "49679": "Ġkidnap", - "49680": "Philipp", - "49681": "Kin", - "49683": "Ġlivestream", - "49684": "ĠMISS", - "49685": "Ġsubversive", - "49686": "ĠTechniques", - "49687": "ĠJUSTICE", - "49688": "ĠBASE", - "49689": "Ġ387", - "49690": "Ġassailants", - "49691": "ĠHardcore", - "49692": "Ġsprinkled", - "49693": "ĠPse", - "49694": "éļ", - "49695": "printed", - "49696": "ĠHau", - "49697": "ORGE", - "49698": "ĠTOUR", - "49699": "Ġlaced", - "49700": "Ġitch", - "49701": "Giving", - "49702": "Ġported", - "49704": "////////////////////////////////", - "49705": "breeding", - "49706": "Ġlogger", - "49707": "ĠHOL", - "49708": "innie", - "49709": "Firstly", - "49710": "Ġembryonic", - "49711": "Ġdelegated", - "49712": "pai", - "49713": "OIL", - "49714": "Ġcentrally", - "49715": "ĠRx", - "49716": "ĠScouting", - "49717": "Dutch", - "49718": "Ġhereditary", - "49719": "ĠCruiser", - "49720": "sat", - "49722": "ĠMarriott", - "49723": "othermal", - "49724": "Ġprohibitions", - "49725": "Earn", - "49726": "ĠStab", - "49727": "ĠColleges", - "49728": "ĠBelief", - "49729": "stretched", - "49730": "ĠLH", - "49731": "ĠEntityItem", - "49732": "CIA", - "49733": "Ġunrem", - "49734": "Ġlaureate", - "49735": "Ġdenominations", - "49736": "summary", - "49737": "hler", - "49738": "Spect", - "49739": "ĠKlaus", - "49740": "ĠBeans", - "49741": "Ġinsur", - "49742": "ĠPAX", - "49743": "Ġfielder", - "49744": "ĠVet", - "49745": "ĠSparrow", - "49746": "zie", - "49747": "ĠSQ", - "49748": "ĠMondays", - "49749": "ĠOffline", - "49750": "ĠLerner", - "49751": "ĠExtensions", - "49752": "Ireland", - "49753": "Ġpatronage", - "49754": "Ġcontrasted", - "49755": "ĠMania", - "49756": "hirt", - "49757": "Moscow", - "49758": "Ġcondemns", - "49759": "ĠAnge", - "49760": "Ġcomposing", - "49761": "ĠPepe", - "49762": "ĠPaddock", - "49763": "Ġheterogeneity", - "49764": "Ġideologically", - "49765": "Ġfishes", - "49766": "Ġcursing", - "49767": "ĠRutherford", - "49768": "ĠFloating", - "49769": "ĠAmelia", - "49770": "Tea", - "49771": "Synopsis", - "49772": "Ġstunts", - "49773": "Ġbead", - "49774": "Ġstocking", - "49775": "ĠMILL", - "49776": "obook", - "49777": "massive", - "49778": "\\<", - "49779": "Ġhump", - "49780": "ĠPreferences", - "49781": "EngineDebug", - "49782": "geist", - "49783": "ĠNieto", - "49784": "omever", - "49785": "ishy", - "49786": "evaluate", - "49787": "colonial", - "49788": "Alternative", - "49789": "ĠGoPro", - "49790": "ĠVortex", - "49791": "ĠNETWORK", - "49792": "ansky", - "49793": "Secure", - "49794": "ĠThrust", - "49795": "Snake", - "49796": "Ġparcels", - "49797": "Ġsamurai", - "49798": "Ġactresses", - "49799": "Nap", - "49800": "MF", - "49801": "iferation", - "49802": "Beer", - "49804": "ĠIly", - "49805": "ointment", - "49806": "Ping", - "49807": "Ġstriped", - "49808": "ĠMellon", - "49809": "ossession", - "49810": "Ġneutron", - "49811": "endium", - "49812": "Ġaph", - "49813": "ĠFlavoring", - "49814": "Ġ383", - "49815": "Ġresponsiveness", - "49816": "ĠJindal", - "49817": "ĠHitchcock", - "49818": "Denver", - "49819": "ĠDRAGON", - "49820": "smanship", - "49821": "ĠDupl", - "49822": "Ġsly", - "49823": "Ġwebcam", - "49824": "ĠTwain", - "49825": "ĠDarling", - "49826": "iliate", - "49827": "consumer", - "49828": "DIT", - "49829": "Ġnamesake", - "49830": "Ġunorthodox", - "49831": "Ġfuner", - "49832": "ĠPLoS", - "49833": "ĠCONTROL", - "49834": "ozyg", - "49835": "oglobin", - "49836": "FACE", - "49837": "ERG", - "49838": "ĠDia", - "49839": "ĠFiesta", - "49840": "cele", - "49841": "034", - "49842": "Ġenclave", - "49843": "âĸ¬âĸ¬", - "49844": "onement", - "49845": "alist", - "49846": "Mand", - "49847": "Ġhomegrown", - "49848": "ĠFancy", - "49849": "Ġconceptions", - "49850": "ĠContains", - "49851": "ureen", - "49852": "Ġreiterate", - "49853": "Ġmeager", - "49854": "Ġinstallments", - "49855": "Spawn", - "49857": "Ġphotoc", - "49858": "ĠCabrera", - "49859": "ĠRosenthal", - "49860": "ĠLansing", - "49861": "isner", - "49862": "Ġinvests", - "49863": "ĠUFOs", - "49864": "EXP", - "49865": "Hardware", - "49866": "Ġtragically", - "49867": "Ġconcedes", - "49868": "ieft", - "49869": "cham", - "49870": "borgh", - "49871": "ĠSchr", - "49872": "ĠMelanie", - "49873": "ĠHoy", - "49874": "Ġvisitation", - "49875": "Ġidiosyncr", - "49876": "Ġfractions", - "49877": "Ġforeskin", - "49878": "obos", - "49879": "Ġpoaching", - "49880": "ĠVIEW", - "49881": "Ġstimulates", - "49882": "ĠGork", - "49883": "canon", - "49884": "MIC", - "49885": "ĠNemesis", - "49886": "ĠIndra", - "49887": "ĠDMV", - "49888": "Ġ529", - "49889": "Ġinspecting", - "49890": "Ġgrandma", - "49891": "ĠWhedon", - "49892": "ĠShant", - "49893": "ĠPurg", - "49894": "ikan", - "49895": "ĠTeg", - "49896": "ĠCLR", - "49897": "zac", - "49898": "Victoria", - "49899": "ĠVerify", - "49900": "ionics", - "49901": "Ġpartying", - "49902": "ĠMou", - "49903": "colour", - "49904": "Ġtestimonies", - "49905": "lations", - "49906": "Ġpressuring", - "49907": "hiro", - "49908": "acers", - "49909": "Ġfid", - "49910": "angler", - "49911": "ĠCSI", - "49912": "Ġhereafter", - "49913": "Ġdissidents", - "49914": "reporting", - "49915": "iphany", - "49916": "chev", - "49917": "Ġsolitude", - "49918": "Ġlobe", - "49919": "Ġindis", - "49920": "Ġcredential", - "49921": "recent", - "49922": "adult", - "49923": "ĠNirvana", - "49924": "ĠFranchise", - "49925": "Layer", - "49926": "Hyp", - "49927": "ĠBerkshire", - "49928": "Ġwills", - "49929": "tif", - "49930": "Ġtotem", - "49931": "ĠJudah", - "49932": "repair", - "49933": "Instant", - "49935": "Ġembassies", - "49936": "Ġbottleneck", - "49937": "Ġbount", - "49938": "Ġtypew", - "49939": "ĠAlvin", - "49940": "jing", - "49941": "imilar", - "49942": "Rush", - "49943": "Ġbrim", - "49944": "ĠHELP", - "49945": "Aim", - "49946": "]'", - "49947": "Ġpassively", - "49948": "Ġbounded", - "49949": "ĠRated", - "49950": "Ġcriminality", - "49951": "Ġbiomark", - "49952": "Ġdispatcher", - "49953": "ĠTowards", - "49954": "Ġ+++", - "49955": "righteous", - "49956": "frog", - "49957": "ĠPanc", - "49958": "Carter", - "49959": "032", - "49960": "æ©Ł", - "49961": "Ġultraviolet", - "49962": "ĠLicensed", - "49963": "ĠTata", - "49964": "ĠBlessing", - "49965": "ĠGAM", - "49966": "Ġchemically", - "49967": "ĠSeaf", - "49968": "ĠRELE", - "49969": "ĠMercenary", - "49970": "capitalist", - "49971": "Ġformulations", - "49972": "Ġannihilation", - "49973": "ĠVerb", - "49974": "ĠArgon", - "49975": "Ġunloaded", - "49976": "Ġmorphed", - "49977": "Ġconquering", - "49978": "backer", - "49979": "IELD", - "49980": "Ġthefts", - "49981": "Ġfrontrunner", - "49982": "ĠRoyale", - "49983": "ĠFundamental", - "49984": "elight", - "49985": "Chip", - "49986": "necessary", - "49987": "ayn", - "49988": "ĠSlip", - "49989": "Ġ448", - "49990": "cerned", - "49991": "Pause", - "49992": "Ġshockingly", - "49993": "ĠABV", - "49994": "Ġcomposure", - "49996": "ĠMotorsport", - "49997": "ahime", - "49998": "Murray", - "49999": "Mach", - "50000": "Ġgrids", - "50001": "Ġdebian", - "50002": "Ġfurthermore", - "50003": "Ġdexterity", - "50004": "ĠCollections", - "50005": "oslov", - "50006": "ilage", - "50007": "bj", - "50008": "ĠMonteneg", - "50009": "ĠstrutConnector", - "50010": "Ġmassacres", - "50011": "Ġbriefs", - "50012": "fetched", - "50013": "uvian", - "50014": "olition", - "50015": "Failure", - "50016": "emonic", - "50017": "Ġflared", - "50018": "Ġclaimant", - "50019": "Ġcures", - "50020": "Ġgiveaways", - "50021": "ĠSubstance", - "50022": "alions", - "50023": "Ġcringe", - "50024": "ĠKul", - "50025": "Ġaristocracy", - "50026": "ĠUlster", - "50027": "olated", - "50028": "housing", - "50029": "ĠMIS", - "50030": "Ġglared", - "50031": "ĠWilhelm", - "50032": "needs", - "50033": "lambda", - "50034": "builders", - "50035": "ĠVIS", - "50036": "Ġradiator", - "50037": "ĠGhostbusters", - "50038": "Ġ436", - "50039": "actual", - "50040": "Ġherds", - "50041": "ça", - "50042": "watching", - "50043": "Ġcountering", - "50044": "Charge", - "50045": "Ġcharred", - "50046": "Ġwarheads", - "50047": "Ġiodine", - "50048": "ĠMacy", - "50049": "041", - "50050": "Ġdepartures", - "50051": "ĠSins", - "50052": "Ġdyed", - "50053": "ĠConcepts", - "50054": "gado", - "50056": "Ġquotations", - "50057": "Ġgist", - "50058": "ĠChristy", - "50059": "Ġantigen", - "50060": "ĠHemp", - "50061": "ĠDrawn", - "50062": "ĠBarg", - "50063": "ezvous", - "50064": "Ġpaternity", - "50065": "Ġardu", - "50066": "ĠAnchorage", - "50067": "ĠRik", - "50068": "Ġoverloaded", - "50069": "ĠUsername", - "50070": "ĠTammy", - "50071": "ĠNau", - "50072": "ĠCellular", - "50073": "Ġwaning", - "50074": "Ġrodent", - "50075": "ĠWorcester", - "50076": "ilts", - "50077": "ĠTad", - "50078": "Ġdwellings", - "50079": "Ġbullish", - "50081": "Ġretaliate", - "50082": "Ġmigraine", - "50083": "ĠChevron", - "50084": "CHECK", - "50085": "Ġdonkey", - "50086": "crim", - "50087": "SPA", - "50088": "ĠAnalog", - "50089": "Ġmarquee", - "50090": "ĠHaas", - "50091": "Bir", - "50092": "ĠGDDR", - "50093": "ĠDownloads", - "50094": "Ġwillpower", - "50095": "ĠForth", - "50096": "ĠRecorded", - "50097": "Ġimpossibility", - "50098": "ĠLogged", - "50099": "ĠFranks", - "50100": "ĠRatt", - "50101": "initions", - "50102": "Ġcleaners", - "50103": "Ġsorely", - "50104": "Ġflickering", - "50105": "ĠExamination", - "50106": "catching", - "50107": "alloween", - "50108": "Msg", - "50109": "Ġdunno", - "50110": "Fa", - "50111": "Ġdysph", - "50112": "crazy", - "50113": ".''.", - "50114": "Ġmainline", - "50115": "Ġcs", - "50116": "Ġptr", - "50117": "ĠWally", - "50118": "igun", - "50120": "ĠBigfoot", - "50121": "fights", - "50122": "Ġretrieving", - "50123": "Jr", - "50124": "Ġduplication", - "50125": "ĠExplan", - "50126": "Ġrelational", - "50127": "Ġquaint", - "50128": "Ġbiscuits", - "50129": "Ġado", - "50130": "Ġshudder", - "50131": "Ġantidote", - "50132": "blooded", - "50133": "ksh", - "50134": "Ġsauces", - "50135": "Ġreinvest", - "50136": "Ġdispensary", - "50137": "ĠDiver", - "50138": "Ġ9000", - "50139": "student", - "50140": "Ġinsepar", - "50141": "escap", - "50142": "Ġtoddlers", - "50143": "ĠGPIO", - "50144": "ĠAssignment", - "50145": "headers", - "50146": "Ġlackluster", - "50147": "Ġaback", - "50149": "Ġtoolbar", - "50151": "Ġoust", - "50152": "Ġcontemplation", - "50153": "ĠPRESIDENT", - "50154": "Ġ458", - "50155": "======", - "50156": "Ġguaranteeing", - "50157": "ĠHeist", - "50158": "ĠCannes", - "50159": "Ͻ", - "50160": "Ġcollaborator", - "50161": "ĠAmp", - "50162": "Ġgou", - "50163": "ĠSHALL", - "50164": "stories", - "50166": "Ġmobilized", - "50167": "Ġbrood", - "50168": "ĠLU", - "50169": "ĠðŁij", - "50170": "Ġrefin", - "50171": "ĠAnthropology", - "50172": "vind", - "50173": "illi", - "50174": "Ġwarranties", - "50175": "ĠBabel", - "50176": "Ġswath", - "50177": "Ġcaches", - "50178": "Ġantagonists", - "50179": "artifacts", - "50180": "Ġhotly", - "50181": "ĠStarts", - "50182": "ĠGö", - "50183": "zag", - "50184": "!!!!!", - "50185": "Ġscourge", - "50186": "Ġconspiring", - "50187": "ruits", - "50188": "reverse", - "50189": "ĠSheen", - "50190": "ĠJesuit", - "50191": "ĠGiovanni", - "50192": "adies", - "50193": "Ġbuttocks", - "50194": "earcher", - "50195": "acan", - "50196": "Ġvolleyball", - "50197": "Ġshrouded", - "50198": "Ġscoreboard", - "50199": "bats", - "50200": "ĠIPM", - "50201": "Ġasses", - "50202": "Ġderegulation", - "50203": "ĠTelegram", - "50204": "ĠReboot", - "50205": "Ġ7000", - "50206": "ĠCanary", - "50207": "Ġkernels", - "50208": "ĠFrançois", - "50209": "ĠDuff", - "50210": "ĠPon", - "50211": "ĠLeica", - "50212": "ĠGarmin", - "50213": "Ġorphans", - "50214": "ĠClaudia", - "50215": "Ġcalendars", - "50216": "ĠLeilan", - "50217": "ento", - "50218": "Rocket", - "50219": "Ġbrunch", - "50220": "ĠHawking", - "50221": "ainers", - "50222": "Ġsensibilities", - "50223": "ĠkW", - "50224": "ĠKand", - "50225": "Ġreclaimed", - "50226": "Ġinterestingly", - "50227": "ש", - "50228": "romy", - "50229": "JM", - "50230": "ĠEnhancement", - "50231": "bush", - "50232": "Skip", - "50233": "Ġrappers", - "50234": "Ġgazing", - "50235": "pedia", - "50236": "athlon", - "50237": "Revolution", - "50238": "Ġsnipers", - "50239": "Ġreverted", - "50240": "Ġconglomerate", - "50241": "Terry", - "50243": "Ġharsher", - "50244": "Ġdesolate", - "50245": "ĠHitman", - "50246": "Commission", - "50247": "Ġ(/", - "50248": "â̦.\"", - "50249": "Compar", - "50250": "Ġamplification", - "50251": "ominated", - "50252": "Ġregress", - "50253": "ĠCollider", - "50254": "Ġinformants", - "50255": "Ġgazed", - "50256": "<|endoftext|>" - } - -export default decoder; diff --git a/src/hooks/natural_language_processing/useSpeechToText.ts b/src/hooks/natural_language_processing/useSpeechToText.ts new file mode 100644 index 0000000000..5fb8588ec7 --- /dev/null +++ b/src/hooks/natural_language_processing/useSpeechToText.ts @@ -0,0 +1,72 @@ +import { useEffect, useState } from 'react'; +import { SpeechToTextController } from '../../controllers/SpeechToTextController'; +import { ResourceSource } from '../../types/common'; + +interface SpeechToTextModule { + isModelReady: boolean; + isModelGenerating: boolean; + sequence: string; + downloadProgress: number; + error: Error | undefined; + transcribe: ( + input?: number[] + ) => ReturnType; + loadAudio: (url: string) => ReturnType; +} + +export const useSpeechToText = ({ + modelName, + encoderSource, + decoderSource, + tokenizerSource, + overlapSeconds, + windowSize, +}: { + modelName: 'moonshine' | 'whisper'; + encoderSource?: ResourceSource; + decoderSource?: ResourceSource; + tokenizerSource?: ResourceSource; + overlapSeconds?: number; + windowSize?: number; +}): SpeechToTextModule => { + const [sequence, setSequence] = useState(''); + const [isReady, setIsReady] = useState(false); + const [downloadProgress, setDownloadProgress] = useState(0); + const [isGenerating, setIsGenerating] = useState(false); + const [error, setError] = useState(); + + const [model, _] = useState( + () => + new SpeechToTextController({ + transcribeCallback: setSequence, + isReadyCallback: setIsReady, + isGeneratingCallback: setIsGenerating, + onErrorCallback: setError, + modelDownloadProgessCallback: setDownloadProgress, + overlapSeconds: overlapSeconds, + windowSize: windowSize, + }) + ); + + useEffect(() => { + const loadModel = async () => { + await model.loadModel( + modelName, + encoderSource, + decoderSource, + tokenizerSource + ); + }; + loadModel(); + }, [model, modelName, encoderSource, decoderSource, tokenizerSource]); + + return { + isModelReady: isReady, + isModelGenerating: isGenerating, + downloadProgress, + sequence: sequence, + error: error, + transcribe: (waveform?: number[]) => model.transcribe(waveform), + loadAudio: (url: string) => model.loadAudio(url), + }; +}; diff --git a/src/index.tsx b/src/index.tsx index 9d50e77610..7ae7a7adad 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -6,6 +6,7 @@ export * from './hooks/computer_vision/useOCR'; export * from './hooks/computer_vision/useVerticalOCR'; export * from './hooks/natural_language_processing/useLLM'; +export * from './hooks/natural_language_processing/useSpeechToText'; export * from './hooks/general/useExecutorchModule'; @@ -17,6 +18,7 @@ export * from './modules/computer_vision/OCRModule'; export * from './modules/computer_vision/VerticalOCRModule'; export * from './modules/natural_language_processing/LLMModule'; +export * from './modules/natural_language_processing/SpeechToTextModule'; export * from './modules/general/ExecutorchModule'; diff --git a/src/modules/natural_language_processing/SpeechToTextModule.ts b/src/modules/natural_language_processing/SpeechToTextModule.ts new file mode 100644 index 0000000000..d06137bde9 --- /dev/null +++ b/src/modules/natural_language_processing/SpeechToTextModule.ts @@ -0,0 +1,40 @@ +import { ResourceSource } from '../../types/common'; +import { SpeechToTextController } from '../../controllers/SpeechToTextController'; + +export class SpeechToText { + static module: SpeechToTextController; + + static onDownloadProgressCallback = (_downloadProgress: number) => {}; + + static async load( + modelName: 'moonshine' | 'whisper', + transcribeCallback: (sequence: string) => void, + modelDownloadProgessCallback?: (downloadProgress: number) => void, + encoderSource?: ResourceSource, + decoderSource?: ResourceSource, + tokenizerSource?: ResourceSource + ) { + this.module = new SpeechToTextController({ + transcribeCallback: transcribeCallback, + modelDownloadProgessCallback: modelDownloadProgessCallback, + }); + await this.module.loadModel( + (modelName = modelName), + (encoderSource = encoderSource), + (decoderSource = decoderSource), + (tokenizerSource = tokenizerSource) + ); + } + + static async transcribe( + waveform: number[] + ): ReturnType { + return await this.module.transcribe(waveform); + } + + static async loadAudio( + url: string + ): ReturnType { + return await this.module.loadAudio(url); + } +} diff --git a/src/native/NativeSpeechToText.ts b/src/native/NativeSpeechToText.ts index b74d3eac62..83999bf3ed 100644 --- a/src/native/NativeSpeechToText.ts +++ b/src/native/NativeSpeechToText.ts @@ -4,11 +4,12 @@ import type { EventEmitter } from 'react-native/Libraries/Types/CodegenTypes'; export interface Spec extends TurboModule { loadModule( - preprocessorSource: string, - encoderSource: string, - decoderSource: string + modelName: string, + modelSources: (string | number)[] ): Promise; generate(waveform: number[]): Promise; + encode(input: number[][]): Promise; + decode(prevTokens: number[], encoderOutput: number[]): Promise; readonly onToken: EventEmitter; } diff --git a/src/native/RnExecutorchModules.ts b/src/native/RnExecutorchModules.ts index 49ac1e52a3..b1edcf5253 100644 --- a/src/native/RnExecutorchModules.ts +++ b/src/native/RnExecutorchModules.ts @@ -141,20 +141,20 @@ class _StyleTransferModule { } class _SpeechToTextModule { - async generate(waveform: number[]): Promise { + async generate(waveform: number[][]): Promise { return await SpeechToText.generate(waveform); } - async loadModule( - preprocessorSource: string | number, - encoderSource: string | number, - decoderSource: string | number - ) { - return await SpeechToText.loadModule( - preprocessorSource, - encoderSource, - decoderSource - ); + async loadModule(modelName: String, modelSources: (string | number)[]) { + return await SpeechToText.loadModule(modelName, modelSources); + } + + async encode(input: number[]) { + return await SpeechToText.encode(input); + } + + async decode(prevTokens: number[], encoderOutput: number[]) { + return await SpeechToText.decode(prevTokens, encoderOutput); } } diff --git a/third-party/ios/ExecutorchLib/ExecutorchLib/Exported/ETModel.h b/third-party/ios/ExecutorchLib/ExecutorchLib/Exported/ETModel.h index 9c78377e25..2c7477c171 100644 --- a/third-party/ios/ExecutorchLib/ExecutorchLib/Exported/ETModel.h +++ b/third-party/ios/ExecutorchLib/ExecutorchLib/Exported/ETModel.h @@ -8,9 +8,13 @@ - (NSNumber *)loadModel:(NSString *)filePath; - (NSNumber *)loadMethod:(NSString *)methodName; - (NSNumber *)loadForward; +- (NSArray *)execute:(NSString *)methodName + inputs:(NSArray *)inputs + shapes:(NSArray *)shapes + inputTypes:(NSArray *)inputTypes; - (NSArray *)forward:(NSArray *)inputs shapes:(NSArray *)shapes - inputTypes: (NSArray *)inputTypes; + inputTypes:(NSArray *)inputTypes; - (NSNumber *)getNumberOfInputs; - (NSNumber *)getInputType:(NSNumber *)index; - (NSArray *)getInputShape:(NSNumber *)index; diff --git a/third-party/ios/ExecutorchLib/ExecutorchLib/Exported/ETModel.mm b/third-party/ios/ExecutorchLib/ExecutorchLib/Exported/ETModel.mm index 1f4c0d1300..604d9d9d76 100644 --- a/third-party/ios/ExecutorchLib/ExecutorchLib/Exported/ETModel.mm +++ b/third-party/ios/ExecutorchLib/ExecutorchLib/Exported/ETModel.mm @@ -186,7 +186,8 @@ - (NSArray *)getOutputShape:(NSNumber *)index { * same number of elements. Mismatched sizes can lead to runtime * errors. **/ -- (NSArray *)forward:(NSArray *)inputs +- (NSArray *)execute:(NSString *)methodName + inputs:(NSArray *)inputs shapes:(NSArray *)shapes inputTypes:(NSArray *)inputTypes { std::vector inputTensors; @@ -203,9 +204,9 @@ - (NSArray *)forward:(NSArray *)inputs TensorPtr currentTensor = NSArrayToTensorPtr(input, inputShape, inputType); if (!currentTensor) { throw [NSException - exceptionWithName:@"forward_error" - reason:[NSString stringWithFormat:@"%d", Error::InvalidArgument] - userInfo:nil]; + exceptionWithName:@"forward_error" + reason:[NSString stringWithFormat:@"%d", Error::InvalidArgument] + userInfo:nil]; } // Since pushing back to inputTensors would cast to EValue (forward accepts a vector of EValues) @@ -215,13 +216,13 @@ - (NSArray *)forward:(NSArray *)inputs inputTensorPtrs.push_back(currentTensor); } - Result result = _model->forward(inputTensors); + Result result = _model->execute([methodName UTF8String], inputTensors); if (!result.ok()) { throw [NSException - exceptionWithName:@"forward_error" - reason:[NSString stringWithFormat:@"%d", result.error()] - userInfo:nil]; + exceptionWithName:@"forward_error" + reason:[NSString stringWithFormat:@"%d", result.error()] + userInfo:nil]; } NSMutableArray *output = [NSMutableArray new]; @@ -231,7 +232,11 @@ - (NSArray *)forward:(NSArray *)inputs [output addObject:currentOutput]; } return output; - +} +- (NSArray *)forward:(NSArray *)inputs + shapes:(NSArray *)shapes + inputTypes:(NSArray *)inputTypes { + return [self execute:@"forward" inputs:inputs shapes:shapes inputTypes:inputTypes]; } @end diff --git a/yarn.lock b/yarn.lock index 73eab03646..cbcfa5af34 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5,6 +5,18 @@ __metadata: version: 6 cacheKey: 8 +"@0no-co/graphql.web@npm:^1.0.5, @0no-co/graphql.web@npm:^1.0.8": + version: 1.1.2 + resolution: "@0no-co/graphql.web@npm:1.1.2" + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + peerDependenciesMeta: + graphql: + optional: true + checksum: ddf4f073c9f03c41a5672b9285ad5573f34ad6d40ed73691c128d5332ff6186222ff909949cf6ef07bad8b417bbb5b609636e049700d3727a196111019a7aab4 + languageName: node + linkType: hard + "@ampproject/remapping@npm:^2.2.0": version: 2.3.0 resolution: "@ampproject/remapping@npm:2.3.0" @@ -15,6 +27,15 @@ __metadata: languageName: node linkType: hard +"@babel/code-frame@npm:7.10.4, @babel/code-frame@npm:~7.10.4": + version: 7.10.4 + resolution: "@babel/code-frame@npm:7.10.4" + dependencies: + "@babel/highlight": ^7.10.4 + checksum: feb4543c8a509fe30f0f6e8d7aa84f82b41148b963b826cd330e34986f649a85cb63b2f13dd4effdf434ac555d16f14940b8ea5f4433297c2f5ff85486ded019 + languageName: node + linkType: hard + "@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.24.7, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0": version: 7.26.2 resolution: "@babel/code-frame@npm:7.26.2" @@ -26,15 +47,6 @@ __metadata: languageName: node linkType: hard -"@babel/code-frame@npm:~7.10.4": - version: 7.10.4 - resolution: "@babel/code-frame@npm:7.10.4" - dependencies: - "@babel/highlight": ^7.10.4 - checksum: feb4543c8a509fe30f0f6e8d7aa84f82b41148b963b826cd330e34986f649a85cb63b2f13dd4effdf434ac555d16f14940b8ea5f4433297c2f5ff85486ded019 - languageName: node - linkType: hard - "@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.25.9, @babel/compat-data@npm:^7.26.0": version: 7.26.2 resolution: "@babel/compat-data@npm:7.26.2" @@ -92,6 +104,19 @@ __metadata: languageName: node linkType: hard +"@babel/generator@npm:^7.20.5": + version: 7.26.9 + resolution: "@babel/generator@npm:7.26.9" + dependencies: + "@babel/parser": ^7.26.9 + "@babel/types": ^7.26.9 + "@jridgewell/gen-mapping": ^0.3.5 + "@jridgewell/trace-mapping": ^0.3.25 + jsesc: ^3.0.2 + checksum: 57d034fb6c77dfd5e0c8ef368ff544e19cb6a27cb70d6ed5ff0552c618153dc6692d31e7d0f3a408e0fec3a519514b846c909316c3078290f3a3c1e463372eae + languageName: node + linkType: hard + "@babel/helper-annotate-as-pure@npm:^7.25.9": version: 7.25.9 resolution: "@babel/helper-annotate-as-pure@npm:7.25.9" @@ -338,6 +363,17 @@ __metadata: languageName: node linkType: hard +"@babel/parser@npm:^7.26.9": + version: 7.26.9 + resolution: "@babel/parser@npm:7.26.9" + dependencies: + "@babel/types": ^7.26.9 + bin: + parser: ./bin/babel-parser.js + checksum: 2df965dbf3c67d19dc437412ceef23033b4d39b0dbd7cb498d8ab9ad9e1738338656ee72676199773b37d658edf9f4161cf255515234fed30695d74e73be5514 + languageName: node + linkType: hard + "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.25.9": version: 7.25.9 resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.25.9" @@ -423,6 +459,19 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-proposal-decorators@npm:^7.12.9": + version: 7.25.9 + resolution: "@babel/plugin-proposal-decorators@npm:7.25.9" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/plugin-syntax-decorators": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ff598127818ac8e704009f1a9a207766ada5f84f6ca74e9de662cb6ce32bcb846c28fd52d6c5df9c55b4eac9a2a3492aa71fbd5cef0569a14b6f12003df22af2 + languageName: node + linkType: hard + "@babel/plugin-proposal-export-default-from@npm:^7.0.0, @babel/plugin-proposal-export-default-from@npm:^7.24.7": version: 7.25.9 resolution: "@babel/plugin-proposal-export-default-from@npm:7.25.9" @@ -551,6 +600,17 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-syntax-decorators@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-syntax-decorators@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: aaf58b17e6aa08f41f93897daa93c601a486233a0375b4231799fc5c4e7c98480aaad3c1c44cf391a62e428c5f6546f76488a1023a4036bb87cd61fa79f1173b + languageName: node + linkType: hard + "@babel/plugin-syntax-dynamic-import@npm:^7.8.0, @babel/plugin-syntax-dynamic-import@npm:^7.8.3": version: 7.8.3 resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3" @@ -930,7 +990,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-export-namespace-from@npm:^7.25.9": +"@babel/plugin-transform-export-namespace-from@npm:^7.22.11, @babel/plugin-transform-export-namespace-from@npm:^7.25.9": version: 7.25.9 resolution: "@babel/plugin-transform-export-namespace-from@npm:7.25.9" dependencies: @@ -1118,7 +1178,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-object-rest-spread@npm:^7.24.7, @babel/plugin-transform-object-rest-spread@npm:^7.25.9": +"@babel/plugin-transform-object-rest-spread@npm:^7.12.13, @babel/plugin-transform-object-rest-spread@npm:^7.24.7, @babel/plugin-transform-object-rest-spread@npm:^7.25.9": version: 7.25.9 resolution: "@babel/plugin-transform-object-rest-spread@npm:7.25.9" dependencies: @@ -1166,7 +1226,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-parameters@npm:^7.0.0, @babel/plugin-transform-parameters@npm:^7.20.7, @babel/plugin-transform-parameters@npm:^7.24.7, @babel/plugin-transform-parameters@npm:^7.25.9": +"@babel/plugin-transform-parameters@npm:^7.0.0, @babel/plugin-transform-parameters@npm:^7.20.7, @babel/plugin-transform-parameters@npm:^7.22.15, @babel/plugin-transform-parameters@npm:^7.24.7, @babel/plugin-transform-parameters@npm:^7.25.9": version: 7.25.9 resolution: "@babel/plugin-transform-parameters@npm:7.25.9" dependencies: @@ -1569,6 +1629,22 @@ __metadata: languageName: node linkType: hard +"@babel/preset-react@npm:^7.22.15": + version: 7.26.3 + resolution: "@babel/preset-react@npm:7.26.3" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/helper-validator-option": ^7.25.9 + "@babel/plugin-transform-react-display-name": ^7.25.9 + "@babel/plugin-transform-react-jsx": ^7.25.9 + "@babel/plugin-transform-react-jsx-development": ^7.25.9 + "@babel/plugin-transform-react-pure-annotations": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 9c76f145026715c8e4a1f6c44f208918e700227d8d8a8068f4ae10d87031d23eb8b483e508cd4452d65066f731b7a8169527e66e83ffe165595e8db7899dd859 + languageName: node + linkType: hard + "@babel/preset-react@npm:^7.24.7": version: 7.25.9 resolution: "@babel/preset-react@npm:7.25.9" @@ -1585,7 +1661,7 @@ __metadata: languageName: node linkType: hard -"@babel/preset-typescript@npm:^7.13.0, @babel/preset-typescript@npm:^7.24.7": +"@babel/preset-typescript@npm:^7.13.0, @babel/preset-typescript@npm:^7.23.0, @babel/preset-typescript@npm:^7.24.7": version: 7.26.0 resolution: "@babel/preset-typescript@npm:7.26.0" dependencies: @@ -1615,6 +1691,15 @@ __metadata: languageName: node linkType: hard +"@babel/runtime@npm:^7.20.0": + version: 7.26.9 + resolution: "@babel/runtime@npm:7.26.9" + dependencies: + regenerator-runtime: ^0.14.0 + checksum: 838492d8a925092f9ccfbd82ec183a54f430af3a4ce88fb1337a4570629202d5123bad3097a5b8df53822504d12ccb29f45c0f6842e86094f0164f17a51eec92 + languageName: node + linkType: hard + "@babel/runtime@npm:^7.25.0, @babel/runtime@npm:^7.8.4": version: 7.26.0 resolution: "@babel/runtime@npm:7.26.0" @@ -1660,6 +1745,16 @@ __metadata: languageName: node linkType: hard +"@babel/types@npm:^7.26.9": + version: 7.26.9 + resolution: "@babel/types@npm:7.26.9" + dependencies: + "@babel/helper-string-parser": ^7.25.9 + "@babel/helper-validator-identifier": ^7.25.9 + checksum: cc124c149615deb30343a4c81ac5b0e3a68bdb4b1bd61a91a2859ee8e5e5f400f6ff65be4740f407c17bfc09baa9c777e7f8f765dccf3284963956b67ac95a38 + languageName: node + linkType: hard + "@bcoe/v8-coverage@npm:^0.2.3": version: 0.2.3 resolution: "@bcoe/v8-coverage@npm:0.2.3" @@ -1925,6 +2020,107 @@ __metadata: languageName: node linkType: hard +"@expo/bunyan@npm:^4.0.0": + version: 4.0.1 + resolution: "@expo/bunyan@npm:4.0.1" + dependencies: + uuid: ^8.0.0 + checksum: 7a503cf202ef26bd151ef31be63fdac113a27edd1e5703aee96326c3b7bea349e09e706a18854c251b313814a05673d5041eaea4c018667d9afa2c583d821af7 + languageName: node + linkType: hard + +"@expo/cli@npm:0.22.18": + version: 0.22.18 + resolution: "@expo/cli@npm:0.22.18" + dependencies: + "@0no-co/graphql.web": ^1.0.8 + "@babel/runtime": ^7.20.0 + "@expo/code-signing-certificates": ^0.0.5 + "@expo/config": ~10.0.10 + "@expo/config-plugins": ~9.0.15 + "@expo/devcert": ^1.1.2 + "@expo/env": ~0.4.2 + "@expo/image-utils": ^0.6.5 + "@expo/json-file": ^9.0.2 + "@expo/metro-config": ~0.19.11 + "@expo/osascript": ^2.1.6 + "@expo/package-manager": ^1.7.2 + "@expo/plist": ^0.2.2 + "@expo/prebuild-config": ^8.0.28 + "@expo/rudder-sdk-node": ^1.1.1 + "@expo/spawn-async": ^1.7.2 + "@expo/ws-tunnel": ^1.0.1 + "@expo/xcpretty": ^4.3.0 + "@react-native/dev-middleware": 0.76.7 + "@urql/core": ^5.0.6 + "@urql/exchange-retry": ^1.3.0 + accepts: ^1.3.8 + arg: ^5.0.2 + better-opn: ~3.0.2 + bplist-creator: 0.0.7 + bplist-parser: ^0.3.1 + cacache: ^18.0.2 + chalk: ^4.0.0 + ci-info: ^3.3.0 + compression: ^1.7.4 + connect: ^3.7.0 + debug: ^4.3.4 + env-editor: ^0.4.1 + fast-glob: ^3.3.2 + form-data: ^3.0.1 + freeport-async: ^2.0.0 + fs-extra: ~8.1.0 + getenv: ^1.0.0 + glob: ^10.4.2 + internal-ip: ^4.3.0 + is-docker: ^2.0.0 + is-wsl: ^2.1.1 + lodash.debounce: ^4.0.8 + minimatch: ^3.0.4 + node-forge: ^1.3.1 + npm-package-arg: ^11.0.0 + ora: ^3.4.0 + picomatch: ^3.0.1 + pretty-bytes: ^5.6.0 + pretty-format: ^29.7.0 + progress: ^2.0.3 + prompts: ^2.3.2 + qrcode-terminal: 0.11.0 + require-from-string: ^2.0.2 + requireg: ^0.2.2 + resolve: ^1.22.2 + resolve-from: ^5.0.0 + resolve.exports: ^2.0.3 + semver: ^7.6.0 + send: ^0.19.0 + slugify: ^1.3.4 + source-map-support: ~0.5.21 + stacktrace-parser: ^0.1.10 + structured-headers: ^0.4.1 + tar: ^6.2.1 + temp-dir: ^2.0.0 + tempy: ^0.7.1 + terminal-link: ^2.1.1 + undici: ^6.18.2 + unique-string: ~2.0.0 + wrap-ansi: ^7.0.0 + ws: ^8.12.1 + bin: + expo-internal: build/bin/cli + checksum: e33ba0c9acbf5e22076af06ddb4165b31a2b763d401661334abe435589ac456c25bd5416dea5c355b3b6eed7cac07c7a9277ab5f321046cdda05ac3716d43c5e + languageName: node + linkType: hard + +"@expo/code-signing-certificates@npm:^0.0.5": + version: 0.0.5 + resolution: "@expo/code-signing-certificates@npm:0.0.5" + dependencies: + node-forge: ^1.2.1 + nullthrows: ^1.1.1 + checksum: 4a1c73a6bc74443284a45db698ede874c7d47f6ed58cf44adaa255139490c8754d81dc1556247f3782cdc5034382fb72f23b0033daa2117facad4eb13b841e37 + languageName: node + linkType: hard + "@expo/config-plugins@npm:~9.0.15": version: 9.0.15 resolution: "@expo/config-plugins@npm:9.0.15" @@ -1954,7 +2150,7 @@ __metadata: languageName: node linkType: hard -"@expo/config@npm:~10.0.9": +"@expo/config@npm:~10.0.10, @expo/config@npm:~10.0.9": version: 10.0.10 resolution: "@expo/config@npm:10.0.10" dependencies: @@ -1975,7 +2171,27 @@ __metadata: languageName: node linkType: hard -"@expo/env@npm:~0.4.1": +"@expo/devcert@npm:^1.1.2": + version: 1.1.4 + resolution: "@expo/devcert@npm:1.1.4" + dependencies: + application-config-path: ^0.1.0 + command-exists: ^1.2.4 + debug: ^3.1.0 + eol: ^0.9.1 + get-port: ^3.2.0 + glob: ^10.4.2 + lodash: ^4.17.21 + mkdirp: ^0.5.1 + password-prompt: ^1.0.4 + sudo-prompt: ^8.2.0 + tmp: ^0.0.33 + tslib: ^2.4.0 + checksum: a6bb5ba18d1d4fe5ebfa096f8d332f14bbe8bb942bc3650debf89fb68b5637bd5b7b22f9b28d5971965436bf83d442e843ac7e0e1e7408cce6e575b55c830b6d + languageName: node + linkType: hard + +"@expo/env@npm:~0.4.1, @expo/env@npm:~0.4.2": version: 0.4.2 resolution: "@expo/env@npm:0.4.2" dependencies: @@ -1988,7 +2204,27 @@ __metadata: languageName: node linkType: hard -"@expo/image-utils@npm:^0.6.4": +"@expo/fingerprint@npm:0.11.11": + version: 0.11.11 + resolution: "@expo/fingerprint@npm:0.11.11" + dependencies: + "@expo/spawn-async": ^1.7.2 + arg: ^5.0.2 + chalk: ^4.1.2 + debug: ^4.3.4 + find-up: ^5.0.0 + getenv: ^1.0.0 + minimatch: ^3.0.4 + p-limit: ^3.1.0 + resolve-from: ^5.0.0 + semver: ^7.6.0 + bin: + fingerprint: bin/cli.js + checksum: ef98fc8a4d7026ad409063f5a5776bf89375e4869bbcb5e4b2f3315bb1af75300d1f07107da458ff010dd71b295513e15838a0de91daed877a68dc52790b3adc + languageName: node + linkType: hard + +"@expo/image-utils@npm:^0.6.4, @expo/image-utils@npm:^0.6.5": version: 0.6.5 resolution: "@expo/image-utils@npm:0.6.5" dependencies: @@ -2006,7 +2242,7 @@ __metadata: languageName: node linkType: hard -"@expo/json-file@npm:^9.0.2, @expo/json-file@npm:~9.0.1": +"@expo/json-file@npm:^9.0.2, @expo/json-file@npm:~9.0.1, @expo/json-file@npm:~9.0.2": version: 9.0.2 resolution: "@expo/json-file@npm:9.0.2" dependencies: @@ -2017,7 +2253,63 @@ __metadata: languageName: node linkType: hard -"@expo/plist@npm:^0.2.1": +"@expo/metro-config@npm:0.19.11, @expo/metro-config@npm:~0.19.11": + version: 0.19.11 + resolution: "@expo/metro-config@npm:0.19.11" + dependencies: + "@babel/core": ^7.20.0 + "@babel/generator": ^7.20.5 + "@babel/parser": ^7.20.0 + "@babel/types": ^7.20.0 + "@expo/config": ~10.0.10 + "@expo/env": ~0.4.2 + "@expo/json-file": ~9.0.2 + "@expo/spawn-async": ^1.7.2 + chalk: ^4.1.0 + debug: ^4.3.2 + fs-extra: ^9.1.0 + getenv: ^1.0.0 + glob: ^10.4.2 + jsc-safe-url: ^0.2.4 + lightningcss: ~1.27.0 + minimatch: ^3.0.4 + postcss: ~8.4.32 + resolve-from: ^5.0.0 + checksum: 3dc22f8cb388a310a9a65123ef25e18d916a375e77146747166af04e744af83d3b5f7f12d4cd4d53449e10c7ab7eeb9aa87de325827f1c4e25ff3a14bc3d8ffd + languageName: node + linkType: hard + +"@expo/osascript@npm:^2.1.6": + version: 2.1.6 + resolution: "@expo/osascript@npm:2.1.6" + dependencies: + "@expo/spawn-async": ^1.7.2 + exec-async: ^2.2.0 + checksum: 93883d448ac1c829377035369e7ab72133f0104553c31278185aba94605b25349f006e48a86e0a94794a35c26d42f64d7ee6128bb95319dd20af9e7b166210b1 + languageName: node + linkType: hard + +"@expo/package-manager@npm:^1.7.2": + version: 1.7.2 + resolution: "@expo/package-manager@npm:1.7.2" + dependencies: + "@expo/json-file": ^9.0.2 + "@expo/spawn-async": ^1.7.2 + ansi-regex: ^5.0.0 + chalk: ^4.0.0 + find-up: ^5.0.0 + js-yaml: ^3.13.1 + micromatch: ^4.0.8 + npm-package-arg: ^11.0.0 + ora: ^3.4.0 + resolve-workspace-root: ^2.0.0 + split: ^1.0.1 + sudo-prompt: 9.1.1 + checksum: cbf95b5ea1bc4dfde02631d945b36f46540066acb44f6205873c559e0ebd8d5b6bf21e3fc46f5cbd5f06ea65d29708bf8bdb53d2e820a6e6134fcb535447f6d7 + languageName: node + linkType: hard + +"@expo/plist@npm:^0.2.1, @expo/plist@npm:^0.2.2": version: 0.2.2 resolution: "@expo/plist@npm:0.2.2" dependencies: @@ -2028,6 +2320,40 @@ __metadata: languageName: node linkType: hard +"@expo/prebuild-config@npm:^8.0.28": + version: 8.0.28 + resolution: "@expo/prebuild-config@npm:8.0.28" + dependencies: + "@expo/config": ~10.0.10 + "@expo/config-plugins": ~9.0.15 + "@expo/config-types": ^52.0.4 + "@expo/image-utils": ^0.6.5 + "@expo/json-file": ^9.0.2 + "@react-native/normalize-colors": 0.76.7 + debug: ^4.3.1 + fs-extra: ^9.0.0 + resolve-from: ^5.0.0 + semver: ^7.6.0 + xml2js: 0.6.0 + checksum: 30592c1dd4c8d73fdb2badb5b37e8d5040723a9c06877152f364516363ffca5d2cf624b31b1f7748bcaaac766c6b1d51f557addd25e93175f743d77fcec8d67c + languageName: node + linkType: hard + +"@expo/rudder-sdk-node@npm:^1.1.1": + version: 1.1.1 + resolution: "@expo/rudder-sdk-node@npm:1.1.1" + dependencies: + "@expo/bunyan": ^4.0.0 + "@segment/loosely-validate-event": ^2.0.0 + fetch-retry: ^4.1.1 + md5: ^2.2.1 + node-fetch: ^2.6.1 + remove-trailing-slash: ^0.1.0 + uuid: ^8.3.2 + checksum: 5ce50c1a82f899b135600cb29cddf3fab601938700c8203f16a1394d2ffbf9e2cdd246b92ff635f8415121072d99a7b4a370f715b78f6680594b5a630e8d78c6 + languageName: node + linkType: hard + "@expo/sdk-runtime-versions@npm:^1.0.0": version: 1.0.0 resolution: "@expo/sdk-runtime-versions@npm:1.0.0" @@ -2044,6 +2370,36 @@ __metadata: languageName: node linkType: hard +"@expo/vector-icons@npm:^14.0.0": + version: 14.0.4 + resolution: "@expo/vector-icons@npm:14.0.4" + dependencies: + prop-types: ^15.8.1 + checksum: 31bd5d4e4e2f0b0620b7e8b55b0c5691875cf57c5737bd0ccef0017d0e7abee66352f3d66a58997b719bd0720cccf8f5119503c69fe1a30398747306ebefeb6e + languageName: node + linkType: hard + +"@expo/ws-tunnel@npm:^1.0.1": + version: 1.0.5 + resolution: "@expo/ws-tunnel@npm:1.0.5" + checksum: 28779c2ef34902044122c7c47400a58f971eb3dc2a8b36cc6529660936890cec7fa28628285c4738e9607a215214417df512c13302747f90b00be49493a3de14 + languageName: node + linkType: hard + +"@expo/xcpretty@npm:^4.3.0": + version: 4.3.2 + resolution: "@expo/xcpretty@npm:4.3.2" + dependencies: + "@babel/code-frame": 7.10.4 + chalk: ^4.1.0 + find-up: ^5.0.0 + js-yaml: ^4.1.0 + bin: + excpretty: build/cli.js + checksum: 8771b2812f0dfc49f6dab4338c986beaf4cf2ec20ed8fd598be6e3803fcbfc0a337dbb5b4dad9556b85ba2489f63c777735ad2c2ee6f5842ff68b9322e47f6a3 + languageName: node + linkType: hard + "@hapi/hoek@npm:^9.0.0, @hapi/hoek@npm:^9.3.0": version: 9.3.0 resolution: "@hapi/hoek@npm:9.3.0" @@ -2735,6 +3091,15 @@ __metadata: languageName: node linkType: hard +"@react-native/babel-plugin-codegen@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/babel-plugin-codegen@npm:0.76.7" + dependencies: + "@react-native/codegen": 0.76.7 + checksum: d19f45cc0d3f1de0cbe9fe4b3623d008284957829d7d471adf6c881f2450a3f40ecc152361185a076403419f19f53094f12624915d41fa79a9f214afdaf85e60 + languageName: node + linkType: hard + "@react-native/babel-preset@npm:0.76.2": version: 0.76.2 resolution: "@react-native/babel-preset@npm:0.76.2" @@ -2790,6 +3155,61 @@ __metadata: languageName: node linkType: hard +"@react-native/babel-preset@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/babel-preset@npm:0.76.7" + dependencies: + "@babel/core": ^7.25.2 + "@babel/plugin-proposal-export-default-from": ^7.24.7 + "@babel/plugin-syntax-dynamic-import": ^7.8.3 + "@babel/plugin-syntax-export-default-from": ^7.24.7 + "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 + "@babel/plugin-syntax-optional-chaining": ^7.8.3 + "@babel/plugin-transform-arrow-functions": ^7.24.7 + "@babel/plugin-transform-async-generator-functions": ^7.25.4 + "@babel/plugin-transform-async-to-generator": ^7.24.7 + "@babel/plugin-transform-block-scoping": ^7.25.0 + "@babel/plugin-transform-class-properties": ^7.25.4 + "@babel/plugin-transform-classes": ^7.25.4 + "@babel/plugin-transform-computed-properties": ^7.24.7 + "@babel/plugin-transform-destructuring": ^7.24.8 + "@babel/plugin-transform-flow-strip-types": ^7.25.2 + "@babel/plugin-transform-for-of": ^7.24.7 + "@babel/plugin-transform-function-name": ^7.25.1 + "@babel/plugin-transform-literals": ^7.25.2 + "@babel/plugin-transform-logical-assignment-operators": ^7.24.7 + "@babel/plugin-transform-modules-commonjs": ^7.24.8 + "@babel/plugin-transform-named-capturing-groups-regex": ^7.24.7 + "@babel/plugin-transform-nullish-coalescing-operator": ^7.24.7 + "@babel/plugin-transform-numeric-separator": ^7.24.7 + "@babel/plugin-transform-object-rest-spread": ^7.24.7 + "@babel/plugin-transform-optional-catch-binding": ^7.24.7 + "@babel/plugin-transform-optional-chaining": ^7.24.8 + "@babel/plugin-transform-parameters": ^7.24.7 + "@babel/plugin-transform-private-methods": ^7.24.7 + "@babel/plugin-transform-private-property-in-object": ^7.24.7 + "@babel/plugin-transform-react-display-name": ^7.24.7 + "@babel/plugin-transform-react-jsx": ^7.25.2 + "@babel/plugin-transform-react-jsx-self": ^7.24.7 + "@babel/plugin-transform-react-jsx-source": ^7.24.7 + "@babel/plugin-transform-regenerator": ^7.24.7 + "@babel/plugin-transform-runtime": ^7.24.7 + "@babel/plugin-transform-shorthand-properties": ^7.24.7 + "@babel/plugin-transform-spread": ^7.24.7 + "@babel/plugin-transform-sticky-regex": ^7.24.7 + "@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.7 + babel-plugin-syntax-hermes-parser: ^0.25.1 + babel-plugin-transform-flow-enums: ^0.0.2 + react-refresh: ^0.14.0 + peerDependencies: + "@babel/core": "*" + checksum: 29b48f80d32839d03f17d938e3f2b34f213d6ac3155de9556016132d4e3b9d55ce2b3d18fcd596ba6507f6bbe64174a76c5e94cc3737b39f00467c455de6b2d4 + languageName: node + linkType: hard + "@react-native/codegen@npm:0.76.2": version: 0.76.2 resolution: "@react-native/codegen@npm:0.76.2" @@ -2808,6 +3228,24 @@ __metadata: languageName: node linkType: hard +"@react-native/codegen@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/codegen@npm:0.76.7" + dependencies: + "@babel/parser": ^7.25.3 + glob: ^7.1.1 + hermes-parser: 0.23.1 + invariant: ^2.2.4 + jscodeshift: ^0.14.0 + mkdirp: ^0.5.1 + nullthrows: ^1.1.1 + yargs: ^17.6.2 + peerDependencies: + "@babel/preset-env": ^7.1.6 + checksum: f5f332c334b0bae892c7f3986c87f20c052b2b1ca9fc927fc91db012e1f062d8feaa01dc2e09d64454ce4e36dc0571d73ae3cb3a2d2aeba485ddc0c3d0e80aa1 + languageName: node + linkType: hard + "@react-native/community-cli-plugin@npm:0.76.2": version: 0.76.2 resolution: "@react-native/community-cli-plugin@npm:0.76.2" @@ -2839,6 +3277,13 @@ __metadata: languageName: node linkType: hard +"@react-native/debugger-frontend@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/debugger-frontend@npm:0.76.7" + checksum: 3ef73a8e5f281d73b17f2b5834d803665506726a77e660a610b0b6511aedf26c82e92fdcf782e1d214c79b70432323f8116f11977f81ed3969c2af9f68f5c903 + languageName: node + linkType: hard + "@react-native/dev-middleware@npm:0.76.2": version: 0.76.2 resolution: "@react-native/dev-middleware@npm:0.76.2" @@ -2858,6 +3303,26 @@ __metadata: languageName: node linkType: hard +"@react-native/dev-middleware@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/dev-middleware@npm:0.76.7" + dependencies: + "@isaacs/ttlcache": ^1.4.1 + "@react-native/debugger-frontend": 0.76.7 + chrome-launcher: ^0.15.2 + chromium-edge-launcher: ^0.2.0 + connect: ^3.6.5 + debug: ^2.2.0 + invariant: ^2.2.4 + nullthrows: ^1.1.1 + open: ^7.0.3 + selfsigned: ^2.4.1 + serve-static: ^1.13.1 + ws: ^6.2.3 + checksum: cc23a959299cd97e0960915a211ebe36a3c36161111bd8f627a5ab6c78a98ddbb893ac52313d6cd11b4c0c35324b8f2a0806676e255e2b0bf578e0aab71414a2 + languageName: node + linkType: hard + "@react-native/eslint-config@npm:^0.73.1": version: 0.73.2 resolution: "@react-native/eslint-config@npm:0.73.2" @@ -2924,6 +3389,13 @@ __metadata: languageName: node linkType: hard +"@react-native/normalize-colors@npm:0.76.7": + version: 0.76.7 + resolution: "@react-native/normalize-colors@npm:0.76.7" + checksum: 4840d1f3852d908520aa77733dae07bd7bcfaa393e0245ea74716246d626785a6abe3add9c4975cbdabc45f5eaf56bbb133fd63e471b48e975a07ca5c346c9bb + languageName: node + linkType: hard + "@react-native/virtualized-lists@npm:0.76.2": version: 0.76.2 resolution: "@react-native/virtualized-lists@npm:0.76.2" @@ -2955,6 +3427,16 @@ __metadata: languageName: node linkType: hard +"@segment/loosely-validate-event@npm:^2.0.0": + version: 2.0.0 + resolution: "@segment/loosely-validate-event@npm:2.0.0" + dependencies: + component-type: ^1.2.1 + join-component: ^1.1.0 + checksum: 8c4aacc903fb717619b69ca7eecf8d4a7b928661b0e835c9cd98f1b858a85ce62c348369ad9a52cb2df8df02578c0525a73fce4c69a42ac414d9554cc6be7117 + languageName: node + linkType: hard + "@sideway/address@npm:^4.1.5": version: 4.1.5 resolution: "@sideway/address@npm:4.1.5" @@ -3346,6 +3828,28 @@ __metadata: languageName: node linkType: hard +"@urql/core@npm:^5.0.6, @urql/core@npm:^5.1.1": + version: 5.1.1 + resolution: "@urql/core@npm:5.1.1" + dependencies: + "@0no-co/graphql.web": ^1.0.5 + wonka: ^6.3.2 + checksum: c28736706abe5d0a0172bcde1c80807aba44606041347beba8e73d5237598034301cccad0169c4f63ba08f5bffe7b3a3ad95ee4a53a0d719ad5525f44b84dbcc + languageName: node + linkType: hard + +"@urql/exchange-retry@npm:^1.3.0": + version: 1.3.1 + resolution: "@urql/exchange-retry@npm:1.3.1" + dependencies: + "@urql/core": ^5.1.1 + wonka: ^6.3.2 + peerDependencies: + "@urql/core": ^5.0.0 + checksum: c03c81900bdbd11211ce02e97ca4e8d1b36f08a3ad6fee9e9b23a60a59c9ff266500e2723b21a60d29927c0ba8cf5dec59600d2f615f6918ac50e10100d7e543 + languageName: node + linkType: hard + "@xmldom/xmldom@npm:^0.8.8": version: 0.8.10 resolution: "@xmldom/xmldom@npm:0.8.10" @@ -3388,7 +3892,7 @@ __metadata: languageName: node linkType: hard -"accepts@npm:^1.3.7, accepts@npm:~1.3.7": +"accepts@npm:^1.3.7, accepts@npm:^1.3.8, accepts@npm:~1.3.7": version: 1.3.8 resolution: "accepts@npm:1.3.8" dependencies: @@ -3492,7 +3996,7 @@ __metadata: languageName: node linkType: hard -"ansi-escapes@npm:^4.2.1": +"ansi-escapes@npm:^4.2.1, ansi-escapes@npm:^4.3.2": version: 4.3.2 resolution: "ansi-escapes@npm:4.3.2" dependencies: @@ -3589,6 +4093,13 @@ __metadata: languageName: node linkType: hard +"application-config-path@npm:^0.1.0": + version: 0.1.1 + resolution: "application-config-path@npm:0.1.1" + checksum: e478c1e4d515108de89693165d92dab11cfdc69dd0f3ccde034f14a3f4e50007946de9e4dd51cd77d2f7ba9752e75d8e4d937ef053a53e466425d9751c961a37 + languageName: node + linkType: hard + "arg@npm:^4.1.0": version: 4.1.3 resolution: "arg@npm:4.1.3" @@ -3596,6 +4107,13 @@ __metadata: languageName: node linkType: hard +"arg@npm:^5.0.2": + version: 5.0.2 + resolution: "arg@npm:5.0.2" + checksum: 6c69ada1a9943d332d9e5382393e897c500908d91d5cb735a01120d5f71daf1b339b7b8980cbeaba8fd1afc68e658a739746179e4315a26e8a28951ff9930078 + languageName: node + linkType: hard + "argparse@npm:^1.0.7": version: 1.0.10 resolution: "argparse@npm:1.0.10" @@ -3724,7 +4242,7 @@ __metadata: languageName: node linkType: hard -"asap@npm:~2.0.6": +"asap@npm:~2.0.3, asap@npm:~2.0.6": version: 2.0.6 resolution: "asap@npm:2.0.6" checksum: b296c92c4b969e973260e47523207cd5769abd27c245a68c26dc7a0fe8053c55bb04360237cb51cab1df52be939da77150ace99ad331fb7fb13b3423ed73ff3d @@ -3754,6 +4272,13 @@ __metadata: languageName: node linkType: hard +"asynckit@npm:^0.4.0": + version: 0.4.0 + resolution: "asynckit@npm:0.4.0" + checksum: 7b78c451df768adba04e2d02e63e2d0bf3b07adcd6e42b4cf665cb7ce899bedd344c69a1dcbce355b5f972d597b25aaa1c1742b52cffd9caccb22f348114f6be + languageName: node + linkType: hard + "at-least-node@npm:^1.0.0": version: 1.0.0 resolution: "at-least-node@npm:1.0.0" @@ -3870,6 +4395,13 @@ __metadata: languageName: node linkType: hard +"babel-plugin-react-native-web@npm:~0.19.13": + version: 0.19.13 + resolution: "babel-plugin-react-native-web@npm:0.19.13" + checksum: 899165793b6e3416b87e830633d98b2bec6e29c89d838b86419a5a6e40b7042d3db98098393dfe3fc9be507054f5bcbf83c420cccfe5dc47c7d962acd1d313d5 + languageName: node + linkType: hard + "babel-plugin-syntax-hermes-parser@npm:^0.23.1": version: 0.23.1 resolution: "babel-plugin-syntax-hermes-parser@npm:0.23.1" @@ -3922,6 +4454,31 @@ __metadata: languageName: node linkType: hard +"babel-preset-expo@npm:~12.0.9": + version: 12.0.9 + resolution: "babel-preset-expo@npm:12.0.9" + dependencies: + "@babel/plugin-proposal-decorators": ^7.12.9 + "@babel/plugin-transform-export-namespace-from": ^7.22.11 + "@babel/plugin-transform-object-rest-spread": ^7.12.13 + "@babel/plugin-transform-parameters": ^7.22.15 + "@babel/preset-react": ^7.22.15 + "@babel/preset-typescript": ^7.23.0 + "@react-native/babel-preset": 0.76.7 + babel-plugin-react-native-web: ~0.19.13 + react-refresh: ^0.14.2 + peerDependencies: + babel-plugin-react-compiler: ^19.0.0-beta-9ee70a1-20241017 + react-compiler-runtime: ^19.0.0-beta-8a03594-20241020 + peerDependenciesMeta: + babel-plugin-react-compiler: + optional: true + react-compiler-runtime: + optional: true + checksum: b62149d7a45814528acd02281edfc5428efafab18beca5551ecfca838dce48004a5976c95c588219db113aa31c3470fe6761a068577e35dcc9ffbe1a90f8d2e9 + languageName: node + linkType: hard + "babel-preset-jest@npm:^29.6.3": version: 29.6.3 resolution: "babel-preset-jest@npm:29.6.3" @@ -3948,6 +4505,15 @@ __metadata: languageName: node linkType: hard +"better-opn@npm:~3.0.2": + version: 3.0.2 + resolution: "better-opn@npm:3.0.2" + dependencies: + open: ^8.0.4 + checksum: 1471552fa7f733561e7f49e812be074b421153006ca744de985fb6d38939807959fc5fe9cb819cf09f864782e294704fd3b31711ea14c115baf3330a2f1135de + languageName: node + linkType: hard + "big-integer@npm:1.6.x": version: 1.6.52 resolution: "big-integer@npm:1.6.52" @@ -3966,6 +4532,15 @@ __metadata: languageName: node linkType: hard +"bplist-creator@npm:0.0.7": + version: 0.0.7 + resolution: "bplist-creator@npm:0.0.7" + dependencies: + stream-buffers: ~2.2.0 + checksum: 5bcf4091c5a0e5934d56643d9f2705b5149a0b0b62b8314762f6ad4b3208d313c75ad03bab97a3c42b6e17db3d73530d3642d082ca249b55f952c90056c2b2ad + languageName: node + linkType: hard + "bplist-creator@npm:0.1.1": version: 0.1.1 resolution: "bplist-creator@npm:0.1.1" @@ -3975,7 +4550,7 @@ __metadata: languageName: node linkType: hard -"bplist-parser@npm:0.3.2": +"bplist-parser@npm:0.3.2, bplist-parser@npm:^0.3.1": version: 0.3.2 resolution: "bplist-parser@npm:0.3.2" dependencies: @@ -4066,7 +4641,7 @@ __metadata: languageName: node linkType: hard -"buffer@npm:^5.5.0": +"buffer@npm:^5.4.3, buffer@npm:^5.5.0": version: 5.7.1 resolution: "buffer@npm:5.7.1" dependencies: @@ -4083,7 +4658,7 @@ __metadata: languageName: node linkType: hard -"cacache@npm:^18.0.0": +"cacache@npm:^18.0.0, cacache@npm:^18.0.2": version: 18.0.4 resolution: "cacache@npm:18.0.4" dependencies: @@ -4103,6 +4678,16 @@ __metadata: languageName: node linkType: hard +"call-bind-apply-helpers@npm:^1.0.1, call-bind-apply-helpers@npm:^1.0.2": + version: 1.0.2 + resolution: "call-bind-apply-helpers@npm:1.0.2" + dependencies: + es-errors: ^1.3.0 + function-bind: ^1.1.2 + checksum: b2863d74fcf2a6948221f65d95b91b4b2d90cfe8927650b506141e669f7d5de65cea191bf788838bc40d13846b7886c5bc5c84ab96c3adbcf88ad69a72fcdc6b + languageName: node + linkType: hard + "call-bind@npm:^1.0.2, call-bind@npm:^1.0.5, call-bind@npm:^1.0.6, call-bind@npm:^1.0.7": version: 1.0.7 resolution: "call-bind@npm:1.0.7" @@ -4192,7 +4777,7 @@ __metadata: languageName: node linkType: hard -"chalk@npm:^2.4.2": +"chalk@npm:^2.0.1, chalk@npm:^2.4.2": version: 2.4.2 resolution: "chalk@npm:2.4.2" dependencies: @@ -4220,6 +4805,13 @@ __metadata: languageName: node linkType: hard +"charenc@npm:0.0.2": + version: 0.0.2 + resolution: "charenc@npm:0.0.2" + checksum: 81dcadbe57e861d527faf6dd3855dc857395a1c4d6781f4847288ab23cffb7b3ee80d57c15bba7252ffe3e5e8019db767757ee7975663ad2ca0939bb8fcaf2e5 + languageName: node + linkType: hard + "chownr@npm:^2.0.0": version: 2.0.0 resolution: "chownr@npm:2.0.0" @@ -4262,7 +4854,7 @@ __metadata: languageName: node linkType: hard -"ci-info@npm:^3.2.0": +"ci-info@npm:^3.2.0, ci-info@npm:^3.3.0": version: 3.9.0 resolution: "ci-info@npm:3.9.0" checksum: 6b19dc9b2966d1f8c2041a838217299718f15d6c4b63ae36e4674edd2bee48f780e94761286a56aa59eb305a85fbea4ddffb7630ec063e7ec7e7e5ad42549a87 @@ -4292,6 +4884,15 @@ __metadata: languageName: node linkType: hard +"cli-cursor@npm:^2.1.0": + version: 2.1.0 + resolution: "cli-cursor@npm:2.1.0" + dependencies: + restore-cursor: ^2.0.0 + checksum: d88e97bfdac01046a3ffe7d49f06757b3126559d7e44aa2122637eb179284dc6cd49fca2fac4f67c19faaf7e6dab716b6fe1dfcd309977407d8c7578ec2d044d + languageName: node + linkType: hard + "cli-cursor@npm:^3.1.0": version: 3.1.0 resolution: "cli-cursor@npm:3.1.0" @@ -4301,7 +4902,7 @@ __metadata: languageName: node linkType: hard -"cli-spinners@npm:^2.5.0": +"cli-spinners@npm:^2.0.0, cli-spinners@npm:^2.5.0": version: 2.9.2 resolution: "cli-spinners@npm:2.9.2" checksum: 1bd588289b28432e4676cb5d40505cfe3e53f2e4e10fbe05c8a710a154d6fe0ce7836844b00d6858f740f2ffe67cdc36e0fce9c7b6a8430e80e6388d5aa4956c @@ -4412,7 +5013,16 @@ __metadata: languageName: node linkType: hard -"command-exists@npm:^1.2.8": +"combined-stream@npm:^1.0.8": + version: 1.0.8 + resolution: "combined-stream@npm:1.0.8" + dependencies: + delayed-stream: ~1.0.0 + checksum: 49fa4aeb4916567e33ea81d088f6584749fc90c7abec76fd516bf1c5aa5c79f3584b5ba3de6b86d26ddd64bae5329c4c7479343250cfe71c75bb366eae53bb7c + languageName: node + linkType: hard + +"command-exists@npm:^1.2.4, command-exists@npm:^1.2.8": version: 1.2.9 resolution: "command-exists@npm:1.2.9" checksum: 729ae3d88a2058c93c58840f30341b7f82688a573019535d198b57a4d8cb0135ced0ad7f52b591e5b28a90feb2c675080ce916e56254a0f7c15cb2395277cac3 @@ -4440,6 +5050,13 @@ __metadata: languageName: node linkType: hard +"commander@npm:^7.2.0": + version: 7.2.0 + resolution: "commander@npm:7.2.0" + checksum: 53501cbeee61d5157546c0bef0fedb6cdfc763a882136284bed9a07225f09a14b82d2a84e7637edfd1a679fb35ed9502fd58ef1d091e6287f60d790147f68ddc + languageName: node + linkType: hard + "commander@npm:^9.4.1": version: 9.5.0 resolution: "commander@npm:9.5.0" @@ -4476,6 +5093,13 @@ __metadata: languageName: node linkType: hard +"component-type@npm:^1.2.1": + version: 1.2.2 + resolution: "component-type@npm:1.2.2" + checksum: ca5a9886a961985b9ebcc0a5b23f2526506eced1c2c932648e5f8960db22fffcc3a77442013c6aef0b5afa8e6b9de02ae2a23ce5c967374edaf99d74fd6d6c3e + languageName: node + linkType: hard + "compressible@npm:~2.0.18": version: 2.0.18 resolution: "compressible@npm:2.0.18" @@ -4500,6 +5124,21 @@ __metadata: languageName: node linkType: hard +"compression@npm:^1.7.4": + version: 1.8.0 + resolution: "compression@npm:1.8.0" + dependencies: + bytes: 3.1.2 + compressible: ~2.0.18 + debug: 2.6.9 + negotiator: ~0.6.4 + on-headers: ~1.0.2 + safe-buffer: 5.2.1 + vary: ~1.1.2 + checksum: 12ca3e326b4ccb6b6e51e1d14d96fafd058ddb3be08fe888487d367d42fb4f81f25d4bf77acc517ba724370e7d74469280688baf2da8cad61062bdf62eb9fd45 + languageName: node + linkType: hard + "concat-map@npm:0.0.1": version: 0.0.1 resolution: "concat-map@npm:0.0.1" @@ -4519,7 +5158,7 @@ __metadata: languageName: node linkType: hard -"connect@npm:^3.6.5": +"connect@npm:^3.6.5, connect@npm:^3.7.0": version: 3.7.0 resolution: "connect@npm:3.7.0" dependencies: @@ -4864,6 +5503,28 @@ __metadata: languageName: node linkType: hard +"cross-fetch@npm:^3.1.5": + version: 3.2.0 + resolution: "cross-fetch@npm:3.2.0" + dependencies: + node-fetch: ^2.7.0 + checksum: 8ded5ea35f705e81e569e7db244a3f96e05e95996ff51877c89b0c1ec1163c76bb5dad77d0f8fba6bb35a0abacb36403d7271dc586d8b1f636110ee7a8d959fd + languageName: node + linkType: hard + +"cross-spawn@npm:^6.0.0": + version: 6.0.6 + resolution: "cross-spawn@npm:6.0.6" + dependencies: + nice-try: ^1.0.4 + path-key: ^2.0.1 + semver: ^5.5.0 + shebang-command: ^1.2.0 + which: ^1.2.9 + checksum: a6e2e5b04a0e0f806c1df45f92cd079b65f95fbe5a7650ee1ab60318c33a6c156a8a2f8b6898f57764f7363ec599a0625e9855dfa78d52d2d73dbd32eb11c25e + languageName: node + linkType: hard + "cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3": version: 7.0.6 resolution: "cross-spawn@npm:7.0.6" @@ -4875,6 +5536,13 @@ __metadata: languageName: node linkType: hard +"crypt@npm:0.0.2": + version: 0.0.2 + resolution: "crypt@npm:0.0.2" + checksum: baf4c7bbe05df656ec230018af8cf7dbe8c14b36b98726939cef008d473f6fe7a4fad906cfea4062c93af516f1550a3f43ceb4d6615329612c6511378ed9fe34 + languageName: node + linkType: hard + "crypto-random-string@npm:^2.0.0": version: 2.0.0 resolution: "crypto-random-string@npm:2.0.0" @@ -4964,6 +5632,15 @@ __metadata: languageName: node linkType: hard +"debug@npm:^3.1.0": + version: 3.2.7 + resolution: "debug@npm:3.2.7" + dependencies: + ms: ^2.1.1 + checksum: b3d8c5940799914d30314b7c3304a43305fd0715581a919dacb8b3176d024a782062368405b47491516d2091d6462d4d11f2f4974a405048094f8bfebfa3071c + languageName: node + linkType: hard + "debug@npm:^4.3.5": version: 4.4.0 resolution: "debug@npm:4.4.0" @@ -5019,6 +5696,13 @@ __metadata: languageName: node linkType: hard +"deep-extend@npm:^0.6.0": + version: 0.6.0 + resolution: "deep-extend@npm:0.6.0" + checksum: 7be7e5a8d468d6b10e6a67c3de828f55001b6eb515d014f7aeb9066ce36bd5717161eb47d6a0f7bed8a9083935b465bc163ee2581c8b128d29bf61092fdf57a7 + languageName: node + linkType: hard + "deep-is@npm:^0.1.3": version: 0.1.4 resolution: "deep-is@npm:0.1.4" @@ -5033,6 +5717,16 @@ __metadata: languageName: node linkType: hard +"default-gateway@npm:^4.2.0": + version: 4.2.0 + resolution: "default-gateway@npm:4.2.0" + dependencies: + execa: ^1.0.0 + ip-regex: ^2.1.0 + checksum: 1f5be765471689c6bab33e0c8b87363c3e2485cc1ab78904d383a8a8293a79f684da2a3303744b112503f986af4ea87d917c63a468ed913e9b0c31588c02d6a4 + languageName: node + linkType: hard + "defaults@npm:^1.0.3": version: 1.0.4 resolution: "defaults@npm:1.0.4" @@ -5053,6 +5747,13 @@ __metadata: languageName: node linkType: hard +"define-lazy-prop@npm:^2.0.0": + version: 2.0.0 + resolution: "define-lazy-prop@npm:2.0.0" + checksum: 0115fdb065e0490918ba271d7339c42453d209d4cb619dfe635870d906731eff3e1ade8028bb461ea27ce8264ec5e22c6980612d332895977e89c1bbc80fcee2 + languageName: node + linkType: hard + "define-properties@npm:^1.1.3, define-properties@npm:^1.2.0, define-properties@npm:^1.2.1": version: 1.2.1 resolution: "define-properties@npm:1.2.1" @@ -5077,7 +5778,7 @@ __metadata: languageName: node linkType: hard -"del@npm:^6.1.1": +"del@npm:^6.0.0, del@npm:^6.1.1": version: 6.1.1 resolution: "del@npm:6.1.1" dependencies: @@ -5109,6 +5810,13 @@ __metadata: languageName: node linkType: hard +"delayed-stream@npm:~1.0.0": + version: 1.0.0 + resolution: "delayed-stream@npm:1.0.0" + checksum: 46fe6e83e2cb1d85ba50bd52803c68be9bd953282fa7096f51fc29edd5d67ff84ff753c51966061e5ba7cb5e47ef6d36a91924eddb7f3f3483b1c560f77a0020 + languageName: node + linkType: hard + "denodeify@npm:^1.2.1": version: 1.2.1 resolution: "denodeify@npm:1.2.1" @@ -5130,6 +5838,15 @@ __metadata: languageName: node linkType: hard +"detect-libc@npm:^1.0.3": + version: 1.0.3 + resolution: "detect-libc@npm:1.0.3" + bin: + detect-libc: ./bin/detect-libc.js + checksum: daaaed925ffa7889bd91d56e9624e6c8033911bb60f3a50a74a87500680652969dbaab9526d1e200a4c94acf80fc862a22131841145a0a8482d60a99c24f4a3e + languageName: node + linkType: hard + "detect-newline@npm:^3.0.0": version: 3.1.0 resolution: "detect-newline@npm:3.1.0" @@ -5203,6 +5920,17 @@ __metadata: languageName: node linkType: hard +"dunder-proto@npm:^1.0.1": + version: 1.0.1 + resolution: "dunder-proto@npm:1.0.1" + dependencies: + call-bind-apply-helpers: ^1.0.1 + es-errors: ^1.3.0 + gopd: ^1.2.0 + checksum: 149207e36f07bd4941921b0ca929e3a28f1da7bd6b6ff8ff7f4e2f2e460675af4576eeba359c635723dc189b64cdd4787e0255897d5b135ccc5d15cb8685fc90 + languageName: node + linkType: hard + "eastasianwidth@npm:^0.2.0": version: 0.2.0 resolution: "eastasianwidth@npm:0.2.0" @@ -5277,6 +6005,13 @@ __metadata: languageName: node linkType: hard +"env-editor@npm:^0.4.1": + version: 0.4.2 + resolution: "env-editor@npm:0.4.2" + checksum: d162e161d9a1bddaf63f68428c587b1d823afe7d56cde039ce403cc68706c68350c92b9db44692f4ecea1d67ec80de9ba01ca70568299ed929d3fa056c40aebf + languageName: node + linkType: hard + "env-paths@npm:^2.2.0, env-paths@npm:^2.2.1": version: 2.2.1 resolution: "env-paths@npm:2.2.1" @@ -5293,6 +6028,13 @@ __metadata: languageName: node linkType: hard +"eol@npm:^0.9.1": + version: 0.9.1 + resolution: "eol@npm:0.9.1" + checksum: ba9fa998bc8148b935dcf85585eacf049eeaf18d2ab6196710d4d1f59e7dfd0e87b18508dc67144ff8ba12f835a4a4989aeea64c98b13cca77b74b9d4b33bce5 + languageName: node + linkType: hard + "err-code@npm:^2.0.2": version: 2.0.3 resolution: "err-code@npm:2.0.3" @@ -5391,6 +6133,13 @@ __metadata: languageName: node linkType: hard +"es-define-property@npm:^1.0.1": + version: 1.0.1 + resolution: "es-define-property@npm:1.0.1" + checksum: 0512f4e5d564021c9e3a644437b0155af2679d10d80f21adaf868e64d30efdfbd321631956f20f42d655fedb2e3a027da479fad3fa6048f768eb453a80a5f80a + languageName: node + linkType: hard + "es-errors@npm:^1.2.1, es-errors@npm:^1.3.0": version: 1.3.0 resolution: "es-errors@npm:1.3.0" @@ -5430,6 +6179,15 @@ __metadata: languageName: node linkType: hard +"es-object-atoms@npm:^1.1.1": + version: 1.1.1 + resolution: "es-object-atoms@npm:1.1.1" + dependencies: + es-errors: ^1.3.0 + checksum: 214d3767287b12f36d3d7267ef342bbbe1e89f899cfd67040309fc65032372a8e60201410a99a1645f2f90c1912c8c49c8668066f6bdd954bcd614dda2e3da97 + languageName: node + linkType: hard + "es-set-tostringtag@npm:^2.0.3": version: 2.0.3 resolution: "es-set-tostringtag@npm:2.0.3" @@ -5441,6 +6199,18 @@ __metadata: languageName: node linkType: hard +"es-set-tostringtag@npm:^2.1.0": + version: 2.1.0 + resolution: "es-set-tostringtag@npm:2.1.0" + dependencies: + es-errors: ^1.3.0 + get-intrinsic: ^1.2.6 + has-tostringtag: ^1.0.2 + hasown: ^2.0.2 + checksum: 789f35de4be3dc8d11fdcb91bc26af4ae3e6d602caa93299a8c45cf05d36cc5081454ae2a6d3afa09cceca214b76c046e4f8151e092e6fc7feeb5efb9e794fc6 + languageName: node + linkType: hard + "es-shim-unscopables@npm:^1.0.0, es-shim-unscopables@npm:^1.0.2": version: 1.0.2 resolution: "es-shim-unscopables@npm:1.0.2" @@ -5813,6 +6583,28 @@ __metadata: languageName: node linkType: hard +"exec-async@npm:^2.2.0": + version: 2.2.0 + resolution: "exec-async@npm:2.2.0" + checksum: 5877d83c2d553994accb39c26f40f0a633bca10d9572696e524fd91b385060ba05d1edcc28d6e3899c451e65ed453fdc7e6b69bd5d5a27d914220a100f81bb3a + languageName: node + linkType: hard + +"execa@npm:^1.0.0": + version: 1.0.0 + resolution: "execa@npm:1.0.0" + dependencies: + cross-spawn: ^6.0.0 + get-stream: ^4.0.0 + is-stream: ^1.1.0 + npm-run-path: ^2.0.0 + p-finally: ^1.0.0 + signal-exit: ^3.0.0 + strip-eof: ^1.0.0 + checksum: ddf1342c1c7d02dd93b41364cd847640f6163350d9439071abf70bf4ceb1b9b2b2e37f54babb1d8dc1df8e0d8def32d0e81e74a2e62c3e1d70c303eb4c306bc4 + languageName: node + linkType: hard + "execa@npm:^4.0.3": version: 4.1.0 resolution: "execa@npm:4.1.0" @@ -5883,6 +6675,22 @@ __metadata: languageName: node linkType: hard +"expo-asset@npm:~11.0.4": + version: 11.0.4 + resolution: "expo-asset@npm:11.0.4" + dependencies: + "@expo/image-utils": ^0.6.5 + expo-constants: ~17.0.7 + invariant: ^2.2.4 + md5-file: ^3.2.3 + peerDependencies: + expo: "*" + react: "*" + react-native: "*" + checksum: 21cf9b34e4e51c5af2e424de2445c9d4d5d5e010692f712300f8a7f3c8b89ff39ad92dfb0f177557592a1d49c5480eba0257ff5770f25b4568831cf955853db5 + languageName: node + linkType: hard + "expo-constants@npm:~17.0.5": version: 17.0.6 resolution: "expo-constants@npm:17.0.6" @@ -5896,6 +6704,19 @@ __metadata: languageName: node linkType: hard +"expo-constants@npm:~17.0.7": + version: 17.0.7 + resolution: "expo-constants@npm:17.0.7" + dependencies: + "@expo/config": ~10.0.10 + "@expo/env": ~0.4.2 + peerDependencies: + expo: "*" + react-native: "*" + checksum: 6b7d8536f7dd2a9531ccc1ee946a8cade67fa3a74e44d0bfb70f8098694e0e49a0d981d33760668d4d5475bf6bbf685024f9b2b9c19c9be47f17781aac53b28d + languageName: node + linkType: hard + "expo-file-system@npm:^18.0.10": version: 18.0.10 resolution: "expo-file-system@npm:18.0.10" @@ -5908,6 +6729,108 @@ __metadata: languageName: node linkType: hard +"expo-file-system@npm:~18.0.11": + version: 18.0.11 + resolution: "expo-file-system@npm:18.0.11" + dependencies: + web-streams-polyfill: ^3.3.2 + peerDependencies: + expo: "*" + react-native: "*" + checksum: 2cbb30eee9b12a3eff867a425900f6bef47d4417c39744c24ab1d47ef7398c9cb952716db8dd59a4ddc474a9dab4bcfa903412c10a56144d64cb00a9afcc8c56 + languageName: node + linkType: hard + +"expo-font@npm:~13.0.4": + version: 13.0.4 + resolution: "expo-font@npm:13.0.4" + dependencies: + fontfaceobserver: ^2.1.0 + peerDependencies: + expo: "*" + react: "*" + checksum: 36fa98d333c97a9a309f0ffa45827616167162caaaca6873f04d6e3d658c669da9e894fadd582b9bcc569f3b5b2043553ca204e4333d7496ad2e5843f0373b09 + languageName: node + linkType: hard + +"expo-keep-awake@npm:~14.0.3": + version: 14.0.3 + resolution: "expo-keep-awake@npm:14.0.3" + peerDependencies: + expo: "*" + react: "*" + checksum: 1f8c4c4fbc6030b4ea55fd51b6bb74ba926c71ab3c5350445b065d1433188553b67c64114230240055788df918c96d2d925d9987dcd9fc4045e45362adcbb110 + languageName: node + linkType: hard + +"expo-modules-autolinking@npm:2.0.8": + version: 2.0.8 + resolution: "expo-modules-autolinking@npm:2.0.8" + dependencies: + "@expo/spawn-async": ^1.7.2 + chalk: ^4.1.0 + commander: ^7.2.0 + fast-glob: ^3.2.5 + find-up: ^5.0.0 + fs-extra: ^9.1.0 + require-from-string: ^2.0.2 + resolve-from: ^5.0.0 + bin: + expo-modules-autolinking: bin/expo-modules-autolinking.js + checksum: 1e706d40163e0d3c239641c6d4a846c8006c0367007006cff1eb26a571e605d5fa5ce49c995b9118516d82c819be0e2e2849c2ae63df9b2921bf23bc9a4c2939 + languageName: node + linkType: hard + +"expo-modules-core@npm:2.2.2": + version: 2.2.2 + resolution: "expo-modules-core@npm:2.2.2" + dependencies: + invariant: ^2.2.4 + checksum: f6934b0519598a5c3f3b31a81d48e290823d714e371a2b8631d9ebcb6226a6e4b67968a1b4de6cdcfb6848f4abcb3eeaa1898ff10ebd79f5c21cd455b239cb22 + languageName: node + linkType: hard + +"expo@npm:^52.0.37": + version: 52.0.37 + resolution: "expo@npm:52.0.37" + dependencies: + "@babel/runtime": ^7.20.0 + "@expo/cli": 0.22.18 + "@expo/config": ~10.0.10 + "@expo/config-plugins": ~9.0.15 + "@expo/fingerprint": 0.11.11 + "@expo/metro-config": 0.19.11 + "@expo/vector-icons": ^14.0.0 + babel-preset-expo: ~12.0.9 + expo-asset: ~11.0.4 + expo-constants: ~17.0.7 + expo-file-system: ~18.0.11 + expo-font: ~13.0.4 + expo-keep-awake: ~14.0.3 + expo-modules-autolinking: 2.0.8 + expo-modules-core: 2.2.2 + fbemitter: ^3.0.0 + web-streams-polyfill: ^3.3.2 + whatwg-url-without-unicode: 8.0.0-3 + peerDependencies: + "@expo/dom-webview": "*" + "@expo/metro-runtime": "*" + react: "*" + react-native: "*" + react-native-webview: "*" + peerDependenciesMeta: + "@expo/dom-webview": + optional: true + "@expo/metro-runtime": + optional: true + react-native-webview: + optional: true + bin: + expo: bin/cli + checksum: b1a93a1a642b735469077e87cac062626e49f7fdd326942e1514b56b95fcba29f442f04ad75f2cf781915254bdfd1facbf6367bd584a2636a4cbcc19980c3f28 + languageName: node + linkType: hard + "exponential-backoff@npm:^3.1.1": version: 3.1.1 resolution: "exponential-backoff@npm:3.1.1" @@ -5929,6 +6852,19 @@ __metadata: languageName: node linkType: hard +"fast-glob@npm:^3.2.5": + version: 3.3.3 + resolution: "fast-glob@npm:3.3.3" + dependencies: + "@nodelib/fs.stat": ^2.0.2 + "@nodelib/fs.walk": ^1.2.3 + glob-parent: ^5.1.2 + merge2: ^1.3.0 + micromatch: ^4.0.8 + checksum: 0704d7b85c0305fd2cef37777337dfa26230fdd072dce9fb5c82a4b03156f3ffb8ed3e636033e65d45d2a5805a4e475825369a27404c0307f2db0c8eb3366fbd + languageName: node + linkType: hard + "fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.0, fast-glob@npm:^3.3.2": version: 3.3.2 resolution: "fast-glob@npm:3.3.2" @@ -5992,6 +6928,44 @@ __metadata: languageName: node linkType: hard +"fbemitter@npm:^3.0.0": + version: 3.0.0 + resolution: "fbemitter@npm:3.0.0" + dependencies: + fbjs: ^3.0.0 + checksum: 069690b8cdff3521ade3c9beb92ba0a38d818a86ef36dff8690e66749aef58809db4ac0d6938eb1cacea2dbef5f2a508952d455669590264cdc146bbe839f605 + languageName: node + linkType: hard + +"fbjs-css-vars@npm:^1.0.0": + version: 1.0.2 + resolution: "fbjs-css-vars@npm:1.0.2" + checksum: 72baf6d22c45b75109118b4daecb6c8016d4c83c8c0f23f683f22e9d7c21f32fff6201d288df46eb561e3c7d4bb4489b8ad140b7f56444c453ba407e8bd28511 + languageName: node + linkType: hard + +"fbjs@npm:^3.0.0": + version: 3.0.5 + resolution: "fbjs@npm:3.0.5" + dependencies: + cross-fetch: ^3.1.5 + fbjs-css-vars: ^1.0.0 + loose-envify: ^1.0.0 + object-assign: ^4.1.0 + promise: ^7.1.1 + setimmediate: ^1.0.5 + ua-parser-js: ^1.0.35 + checksum: e609b5b64686bc96495a5c67728ed9b2710b9b3d695c5759c5f5e47c9483d1c323543ac777a86459e3694efc5712c6ce7212e944feb19752867d699568bb0e54 + languageName: node + linkType: hard + +"fetch-retry@npm:^4.1.1": + version: 4.1.1 + resolution: "fetch-retry@npm:4.1.1" + checksum: a06b6a0201efeb5082794713bcdc8dd2c8f1fd4ad5660de860b9c4e51738aa369be58ba7cfa67aa7aa4a3bf9d9b5a4cd2d2fdea88868856483fb81bacd70455b + languageName: node + linkType: hard + "file-entry-cache@npm:^6.0.1": version: 6.0.1 resolution: "file-entry-cache@npm:6.0.1" @@ -6115,6 +7089,13 @@ __metadata: languageName: node linkType: hard +"fontfaceobserver@npm:^2.1.0": + version: 2.3.0 + resolution: "fontfaceobserver@npm:2.3.0" + checksum: 5f14715974203b9d68f299f93a7623afd9d5701572d683e861cdbb7514573ac556f56e9b5d07d2d534e01aed19a3b0bbe568e735e0e5494cbea913fc3f12b856 + languageName: node + linkType: hard + "for-each@npm:^0.3.3": version: 0.3.3 resolution: "for-each@npm:0.3.3" @@ -6134,6 +7115,25 @@ __metadata: languageName: node linkType: hard +"form-data@npm:^3.0.1": + version: 3.0.3 + resolution: "form-data@npm:3.0.3" + dependencies: + asynckit: ^0.4.0 + combined-stream: ^1.0.8 + es-set-tostringtag: ^2.1.0 + mime-types: ^2.1.35 + checksum: e79641abb58b3d7230816ed00645c2732cb64aa44172221644619238106556584aafd908bcc0d728fb06ef6a0d88261e72f4e01111bae3da6d2d7a429e4e1fd2 + languageName: node + linkType: hard + +"freeport-async@npm:^2.0.0": + version: 2.0.0 + resolution: "freeport-async@npm:2.0.0" + checksum: 03156ab2179fbbf5b7ff3aafc56f3e01c9d7df5cc366fbf3c29f26007773632e33ed90847fa4a979c5412ad55de8b21a7292601c531acaf8957933d96225c76d + languageName: node + linkType: hard + "fresh@npm:0.5.2": version: 0.5.2 resolution: "fresh@npm:0.5.2" @@ -6175,7 +7175,7 @@ __metadata: languageName: node linkType: hard -"fs-extra@npm:^8.1.0": +"fs-extra@npm:^8.1.0, fs-extra@npm:~8.1.0": version: 8.1.0 resolution: "fs-extra@npm:8.1.0" dependencies: @@ -6186,6 +7186,18 @@ __metadata: languageName: node linkType: hard +"fs-extra@npm:^9.0.0, fs-extra@npm:^9.1.0": + version: 9.1.0 + resolution: "fs-extra@npm:9.1.0" + dependencies: + at-least-node: ^1.0.0 + graceful-fs: ^4.2.0 + jsonfile: ^6.0.1 + universalify: ^2.0.0 + checksum: ba71ba32e0faa74ab931b7a0031d1523c66a73e225de7426e275e238e312d07313d2da2d33e34a52aa406c8763ade5712eb3ec9ba4d9edce652bcacdc29e6b20 + languageName: node + linkType: hard + "fs-minipass@npm:^2.0.0": version: 2.1.0 resolution: "fs-minipass@npm:2.1.0" @@ -6283,6 +7295,24 @@ __metadata: languageName: node linkType: hard +"get-intrinsic@npm:^1.2.6": + version: 1.3.0 + resolution: "get-intrinsic@npm:1.3.0" + dependencies: + call-bind-apply-helpers: ^1.0.2 + es-define-property: ^1.0.1 + es-errors: ^1.3.0 + es-object-atoms: ^1.1.1 + function-bind: ^1.1.2 + get-proto: ^1.0.1 + gopd: ^1.2.0 + has-symbols: ^1.1.0 + hasown: ^2.0.2 + math-intrinsics: ^1.1.0 + checksum: 301008e4482bb9a9cb49e132b88fee093bff373b4e6def8ba219b1e96b60158a6084f273ef5cafe832e42cd93462f4accb46a618d35fe59a2b507f2388c5b79d + languageName: node + linkType: hard + "get-package-type@npm:^0.1.0": version: 0.1.0 resolution: "get-package-type@npm:0.1.0" @@ -6304,6 +7334,32 @@ __metadata: languageName: node linkType: hard +"get-port@npm:^3.2.0": + version: 3.2.0 + resolution: "get-port@npm:3.2.0" + checksum: 31f530326569683ac4b7452eb7573c40e9dbe52aec14d80745c35475261e6389160da153d5b8ae911150b4ce99003472b30c69ba5be0cedeaa7865b95542d168 + languageName: node + linkType: hard + +"get-proto@npm:^1.0.1": + version: 1.0.1 + resolution: "get-proto@npm:1.0.1" + dependencies: + dunder-proto: ^1.0.1 + es-object-atoms: ^1.0.0 + checksum: 4fc96afdb58ced9a67558698b91433e6b037aaa6f1493af77498d7c85b141382cf223c0e5946f334fb328ee85dfe6edd06d218eaf09556f4bc4ec6005d7f5f7b + languageName: node + linkType: hard + +"get-stream@npm:^4.0.0": + version: 4.1.0 + resolution: "get-stream@npm:4.1.0" + dependencies: + pump: ^3.0.0 + checksum: 443e1914170c15bd52ff8ea6eff6dfc6d712b031303e36302d2778e3de2506af9ee964d6124010f7818736dcfde05c04ba7ca6cc26883106e084357a17ae7d73 + languageName: node + linkType: hard + "get-stream@npm:^5.0.0": version: 5.2.0 resolution: "get-stream@npm:5.2.0" @@ -6528,6 +7584,13 @@ __metadata: languageName: node linkType: hard +"gopd@npm:^1.2.0": + version: 1.2.0 + resolution: "gopd@npm:1.2.0" + checksum: cc6d8e655e360955bdccaca51a12a474268f95bb793fc3e1f2bdadb075f28bfd1fd988dab872daf77a61d78cbaf13744bc8727a17cfb1d150d76047d805375f3 + languageName: node + linkType: hard + "graceful-fs@npm:^4.1.11, graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.1.3, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.10, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6, graceful-fs@npm:^4.2.9": version: 4.2.11 resolution: "graceful-fs@npm:4.2.11" @@ -6611,6 +7674,13 @@ __metadata: languageName: node linkType: hard +"has-symbols@npm:^1.1.0": + version: 1.1.0 + resolution: "has-symbols@npm:1.1.0" + checksum: b2316c7302a0e8ba3aaba215f834e96c22c86f192e7310bdf689dd0e6999510c89b00fbc5742571507cebf25764d68c988b3a0da217369a73596191ac0ce694b + languageName: node + linkType: hard + "has-tostringtag@npm:^1.0.0, has-tostringtag@npm:^1.0.2": version: 1.0.2 resolution: "has-tostringtag@npm:1.0.2" @@ -6693,6 +7763,15 @@ __metadata: languageName: node linkType: hard +"hosted-git-info@npm:^7.0.0": + version: 7.0.2 + resolution: "hosted-git-info@npm:7.0.2" + dependencies: + lru-cache: ^10.0.1 + checksum: 467cf908a56556417b18e86ae3b8dee03c2360ef1d51e61c4028fe87f6f309b6ff038589c94b5666af207da9d972d5107698906aabeb78aca134641962a5c6f8 + languageName: node + linkType: hard + "html-escaper@npm:^2.0.0": version: 2.0.2 resolution: "html-escaper@npm:2.0.2" @@ -6858,13 +7937,23 @@ __metadata: languageName: node linkType: hard -"ini@npm:^1.3.2, ini@npm:^1.3.4": +"ini@npm:^1.3.2, ini@npm:^1.3.4, ini@npm:~1.3.0": version: 1.3.8 resolution: "ini@npm:1.3.8" checksum: dfd98b0ca3a4fc1e323e38a6c8eb8936e31a97a918d3b377649ea15bdb15d481207a0dda1021efbd86b464cae29a0d33c1d7dcaf6c5672bee17fa849bc50a1b3 languageName: node linkType: hard +"internal-ip@npm:^4.3.0": + version: 4.3.0 + resolution: "internal-ip@npm:4.3.0" + dependencies: + default-gateway: ^4.2.0 + ipaddr.js: ^1.9.0 + checksum: c970433c84d9a6b46e2c9f5ab7785d3105b856d0a566891bf919241b5a884c5c1c9bf8e915aebb822a86c14b1b6867e58c1eaf5cd49eb023368083069d1a4a9a + languageName: node + linkType: hard + "internal-slot@npm:^1.0.7": version: 1.0.7 resolution: "internal-slot@npm:1.0.7" @@ -6895,6 +7984,20 @@ __metadata: languageName: node linkType: hard +"ip-regex@npm:^2.1.0": + version: 2.1.0 + resolution: "ip-regex@npm:2.1.0" + checksum: 331d95052aa53ce245745ea0fc3a6a1e2e3c8d6da65fa8ea52bf73768c1b22a9ac50629d1d2b08c04e7b3ac4c21b536693c149ce2c2615ee4796030e5b3e3cba + languageName: node + linkType: hard + +"ipaddr.js@npm:^1.9.0": + version: 1.9.1 + resolution: "ipaddr.js@npm:1.9.1" + checksum: f88d3825981486f5a1942414c8d77dd6674dd71c065adcfa46f578d677edcb99fda25af42675cb59db492fdf427b34a5abfcde3982da11a8fd83a500b41cfe77 + languageName: node + linkType: hard + "is-absolute@npm:^1.0.0": version: 1.0.0 resolution: "is-absolute@npm:1.0.0" @@ -6950,6 +8053,13 @@ __metadata: languageName: node linkType: hard +"is-buffer@npm:~1.1.6": + version: 1.1.6 + resolution: "is-buffer@npm:1.1.6" + checksum: 4a186d995d8bbf9153b4bd9ff9fd04ae75068fe695d29025d25e592d9488911eeece84eefbd8fa41b8ddcc0711058a71d4c466dcf6f1f6e1d83830052d8ca707 + languageName: node + linkType: hard + "is-callable@npm:^1.1.3, is-callable@npm:^1.1.4, is-callable@npm:^1.2.7": version: 1.2.7 resolution: "is-callable@npm:1.2.7" @@ -6966,6 +8076,15 @@ __metadata: languageName: node linkType: hard +"is-core-module@npm:^2.16.0": + version: 2.16.1 + resolution: "is-core-module@npm:2.16.1" + dependencies: + hasown: ^2.0.2 + checksum: 6ec5b3c42d9cbf1ac23f164b16b8a140c3cec338bf8f884c076ca89950c7cc04c33e78f02b8cae7ff4751f3247e3174b2330f1fe4de194c7210deb8b1ea316a7 + languageName: node + linkType: hard + "is-data-view@npm:^1.0.1": version: 1.0.1 resolution: "is-data-view@npm:1.0.1" @@ -6991,7 +8110,7 @@ __metadata: languageName: node linkType: hard -"is-docker@npm:^2.0.0": +"is-docker@npm:^2.0.0, is-docker@npm:^2.1.1": version: 2.2.1 resolution: "is-docker@npm:2.2.1" bin: @@ -7205,6 +8324,13 @@ __metadata: languageName: node linkType: hard +"is-stream@npm:^1.1.0": + version: 1.1.0 + resolution: "is-stream@npm:1.1.0" + checksum: 063c6bec9d5647aa6d42108d4c59723d2bd4ae42135a2d4db6eadbd49b7ea05b750fd69d279e5c7c45cf9da753ad2c00d8978be354d65aa9f6bb434969c6a2ae + languageName: node + linkType: hard + "is-stream@npm:^2.0.0": version: 2.0.1 resolution: "is-stream@npm:2.0.1" @@ -7898,6 +9024,13 @@ __metadata: languageName: node linkType: hard +"join-component@npm:^1.1.0": + version: 1.1.0 + resolution: "join-component@npm:1.1.0" + checksum: b904c2f98549e4195022caca3a7dc837f9706c670ff333f3d617f2aed23bce2841322a999734683b6ab8e202568ad810c11ff79b58a64df66888153f04750239 + languageName: node + linkType: hard + "js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": version: 4.0.0 resolution: "js-tokens@npm:4.0.0" @@ -7942,7 +9075,7 @@ __metadata: languageName: node linkType: hard -"jsc-safe-url@npm:^0.2.2": +"jsc-safe-url@npm:^0.2.2, jsc-safe-url@npm:^0.2.4": version: 0.2.4 resolution: "jsc-safe-url@npm:0.2.4" checksum: 53b5741ba2c0a54da1722929dc80becb2c6fcc9525124fb6c2aec1a00f48e79afffd26816c278111e7b938e37ace029e33cbb8cdaa4ac1f528a87e58022284af @@ -8148,6 +9281,116 @@ __metadata: languageName: node linkType: hard +"lightningcss-darwin-arm64@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-darwin-arm64@npm:1.27.0" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"lightningcss-darwin-x64@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-darwin-x64@npm:1.27.0" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"lightningcss-freebsd-x64@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-freebsd-x64@npm:1.27.0" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"lightningcss-linux-arm-gnueabihf@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-linux-arm-gnueabihf@npm:1.27.0" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"lightningcss-linux-arm64-gnu@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-linux-arm64-gnu@npm:1.27.0" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"lightningcss-linux-arm64-musl@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-linux-arm64-musl@npm:1.27.0" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"lightningcss-linux-x64-gnu@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-linux-x64-gnu@npm:1.27.0" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"lightningcss-linux-x64-musl@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-linux-x64-musl@npm:1.27.0" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"lightningcss-win32-arm64-msvc@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-win32-arm64-msvc@npm:1.27.0" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"lightningcss-win32-x64-msvc@npm:1.27.0": + version: 1.27.0 + resolution: "lightningcss-win32-x64-msvc@npm:1.27.0" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"lightningcss@npm:~1.27.0": + version: 1.27.0 + resolution: "lightningcss@npm:1.27.0" + dependencies: + detect-libc: ^1.0.3 + lightningcss-darwin-arm64: 1.27.0 + lightningcss-darwin-x64: 1.27.0 + lightningcss-freebsd-x64: 1.27.0 + lightningcss-linux-arm-gnueabihf: 1.27.0 + lightningcss-linux-arm64-gnu: 1.27.0 + lightningcss-linux-arm64-musl: 1.27.0 + lightningcss-linux-x64-gnu: 1.27.0 + lightningcss-linux-x64-musl: 1.27.0 + lightningcss-win32-arm64-msvc: 1.27.0 + lightningcss-win32-x64-msvc: 1.27.0 + dependenciesMeta: + lightningcss-darwin-arm64: + optional: true + lightningcss-darwin-x64: + optional: true + lightningcss-freebsd-x64: + optional: true + lightningcss-linux-arm-gnueabihf: + optional: true + lightningcss-linux-arm64-gnu: + optional: true + lightningcss-linux-arm64-musl: + optional: true + lightningcss-linux-x64-gnu: + optional: true + lightningcss-linux-x64-musl: + optional: true + lightningcss-win32-arm64-msvc: + optional: true + lightningcss-win32-x64-msvc: + optional: true + checksum: 3761a4feb67ca250bf1b1cb1982a3d212dee56ea345dd487592908648e70d8c17da2f5918affaf08b6cdc4e4702eee29d800ff29e16d194e7af6300af1b28409 + languageName: node + linkType: hard + "lines-and-columns@npm:^1.1.6": version: 1.2.4 resolution: "lines-and-columns@npm:1.2.4" @@ -8303,6 +9546,15 @@ __metadata: languageName: node linkType: hard +"log-symbols@npm:^2.2.0": + version: 2.2.0 + resolution: "log-symbols@npm:2.2.0" + dependencies: + chalk: ^2.0.1 + checksum: 4c95e3b65f0352dbe91dc4989c10baf7a44e2ef5b0db7e6721e1476268e2b6f7090c3aa880d4f833a05c5c3ff18f4ec5215a09bd0099986d64a8186cfeb48ac8 + languageName: node + linkType: hard + "log-symbols@npm:^4.1.0": version: 4.1.0 resolution: "log-symbols@npm:4.1.0" @@ -8438,6 +9690,13 @@ __metadata: languageName: node linkType: hard +"math-intrinsics@npm:^1.1.0": + version: 1.1.0 + resolution: "math-intrinsics@npm:1.1.0" + checksum: 0e513b29d120f478c85a70f49da0b8b19bc638975eca466f2eeae0071f3ad00454c621bf66e16dd435896c208e719fc91ad79bbfba4e400fe0b372e7c1c9c9a2 + languageName: node + linkType: hard + "md5-file@npm:^3.2.3": version: 3.2.3 resolution: "md5-file@npm:3.2.3" @@ -8449,6 +9708,17 @@ __metadata: languageName: node linkType: hard +"md5@npm:^2.2.1": + version: 2.3.0 + resolution: "md5@npm:2.3.0" + dependencies: + charenc: 0.0.2 + crypt: 0.0.2 + is-buffer: ~1.1.6 + checksum: a63cacf4018dc9dee08c36e6f924a64ced735b37826116c905717c41cebeb41a522f7a526ba6ad578f9c80f02cb365033ccd67fe186ffbcc1a1faeb75daa9b6e + languageName: node + linkType: hard + "memoize-one@npm:^5.0.0": version: 5.2.1 resolution: "memoize-one@npm:5.2.1" @@ -9023,7 +10293,7 @@ __metadata: languageName: node linkType: hard -"micromatch@npm:^4.0.4": +"micromatch@npm:^4.0.4, micromatch@npm:^4.0.8": version: 4.0.8 resolution: "micromatch@npm:4.0.8" dependencies: @@ -9047,7 +10317,7 @@ __metadata: languageName: node linkType: hard -"mime-types@npm:^2.1.27, mime-types@npm:~2.1.34": +"mime-types@npm:^2.1.27, mime-types@npm:^2.1.35, mime-types@npm:~2.1.34": version: 2.1.35 resolution: "mime-types@npm:2.1.35" dependencies: @@ -9074,6 +10344,13 @@ __metadata: languageName: node linkType: hard +"mimic-fn@npm:^1.0.0": + version: 1.2.0 + resolution: "mimic-fn@npm:1.2.0" + checksum: 69c08205156a1f4906d9c46f9b4dc08d18a50176352e77fdeb645cedfe9f20c0b19865d465bd2dec27a5c432347f24dc07fc3695e11159d193f892834233e939 + languageName: node + linkType: hard + "mimic-fn@npm:^2.1.0": version: 2.1.0 resolution: "mimic-fn@npm:2.1.0" @@ -9135,7 +10412,7 @@ __metadata: languageName: node linkType: hard -"minimist@npm:^1.2.5, minimist@npm:^1.2.6": +"minimist@npm:^1.2.0, minimist@npm:^1.2.5, minimist@npm:^1.2.6": version: 1.2.8 resolution: "minimist@npm:1.2.8" checksum: 75a6d645fb122dad29c06a7597bddea977258957ed88d7a6df59b5cd3fe4a527e253e9bbf2e783e4b73657f9098b96a5fe96ab8a113655d4109108577ecf85b0 @@ -9267,7 +10544,7 @@ __metadata: languageName: node linkType: hard -"ms@npm:2.1.3, ms@npm:^2.1.3": +"ms@npm:2.1.3, ms@npm:^2.1.1, ms@npm:^2.1.3": version: 2.1.3 resolution: "ms@npm:2.1.3" checksum: aa92de608021b242401676e35cfa5aa42dd70cbdc082b916da7fb925c542173e36bce97ea3e804923fe92c0ad991434e4a38327e15a1b5b5f945d66df615ae6d @@ -9285,6 +10562,15 @@ __metadata: languageName: node linkType: hard +"nanoid@npm:^3.3.7": + version: 3.3.8 + resolution: "nanoid@npm:3.3.8" + bin: + nanoid: bin/nanoid.cjs + checksum: dfe0adbc0c77e9655b550c333075f51bb28cfc7568afbf3237249904f9c86c9aaaed1f113f0fddddba75673ee31c758c30c43d4414f014a52a7a626efc5958c9 + languageName: node + linkType: hard + "natural-compare-lite@npm:^1.4.0": version: 1.4.0 resolution: "natural-compare-lite@npm:1.4.0" @@ -9320,6 +10606,20 @@ __metadata: languageName: node linkType: hard +"nested-error-stacks@npm:~2.0.1": + version: 2.0.1 + resolution: "nested-error-stacks@npm:2.0.1" + checksum: 8430d7d80ad69b1add2992ee2992a363db6c1a26a54740963bc99a004c5acb1d2a67049397062eab2caa3a312b4da89a0b85de3bdf82d7d472a6baa166311fe6 + languageName: node + linkType: hard + +"nice-try@npm:^1.0.4": + version: 1.0.5 + resolution: "nice-try@npm:1.0.5" + checksum: 0b4af3b5bb5d86c289f7a026303d192a7eb4417231fe47245c460baeabae7277bcd8fd9c728fb6bd62c30b3e15cd6620373e2cf33353b095d8b403d3e8a15aff + languageName: node + linkType: hard + "nocache@npm:^3.0.1": version: 3.0.4 resolution: "nocache@npm:3.0.4" @@ -9343,7 +10643,7 @@ __metadata: languageName: node linkType: hard -"node-fetch@npm:^2.2.0": +"node-fetch@npm:^2.2.0, node-fetch@npm:^2.6.1, node-fetch@npm:^2.7.0": version: 2.7.0 resolution: "node-fetch@npm:2.7.0" dependencies: @@ -9357,7 +10657,7 @@ __metadata: languageName: node linkType: hard -"node-forge@npm:^1": +"node-forge@npm:^1, node-forge@npm:^1.2.1, node-forge@npm:^1.3.1": version: 1.3.1 resolution: "node-forge@npm:1.3.1" checksum: 08fb072d3d670599c89a1704b3e9c649ff1b998256737f0e06fbd1a5bf41cae4457ccaee32d95052d80bbafd9ffe01284e078c8071f0267dc9744e51c5ed42a9 @@ -9447,6 +10747,27 @@ __metadata: languageName: node linkType: hard +"npm-package-arg@npm:^11.0.0": + version: 11.0.3 + resolution: "npm-package-arg@npm:11.0.3" + dependencies: + hosted-git-info: ^7.0.0 + proc-log: ^4.0.0 + semver: ^7.3.5 + validate-npm-package-name: ^5.0.0 + checksum: cc6f22c39201aa14dcceeddb81bfbf7fa0484f94bcd2b3ad038e18afec5167c843cdde90c897f6034dc368faa0100c1eeee6e3f436a89e0af32ba932af4a8c28 + languageName: node + linkType: hard + +"npm-run-path@npm:^2.0.0": + version: 2.0.2 + resolution: "npm-run-path@npm:2.0.2" + dependencies: + path-key: ^2.0.0 + checksum: acd5ad81648ba4588ba5a8effb1d98d2b339d31be16826a118d50f182a134ac523172101b82eab1d01cb4c2ba358e857d54cfafd8163a1ffe7bd52100b741125 + languageName: node + linkType: hard + "npm-run-path@npm:^4.0.0, npm-run-path@npm:^4.0.1": version: 4.0.1 resolution: "npm-run-path@npm:4.0.1" @@ -9481,7 +10802,7 @@ __metadata: languageName: node linkType: hard -"object-assign@npm:^4.0.1, object-assign@npm:^4.1.1": +"object-assign@npm:^4.0.1, object-assign@npm:^4.1.0, object-assign@npm:^4.1.1": version: 4.1.1 resolution: "object-assign@npm:4.1.1" checksum: fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f @@ -9582,6 +10903,15 @@ __metadata: languageName: node linkType: hard +"onetime@npm:^2.0.0": + version: 2.0.1 + resolution: "onetime@npm:2.0.1" + dependencies: + mimic-fn: ^1.0.0 + checksum: bb44015ac7a525d0fb43b029a583d4ad359834632b4424ca209b438aacf6d669dda81b5edfbdb42c22636e607b276ba5589f46694a729e3bc27948ce26f4cc1a + languageName: node + linkType: hard + "onetime@npm:^5.1.0, onetime@npm:^5.1.2": version: 5.1.2 resolution: "onetime@npm:5.1.2" @@ -9610,6 +10940,17 @@ __metadata: languageName: node linkType: hard +"open@npm:^8.0.4": + version: 8.4.2 + resolution: "open@npm:8.4.2" + dependencies: + define-lazy-prop: ^2.0.0 + is-docker: ^2.1.1 + is-wsl: ^2.2.0 + checksum: 6388bfff21b40cb9bd8f913f9130d107f2ed4724ea81a8fd29798ee322b361ca31fa2cdfb491a5c31e43a3996cfe9566741238c7a741ada8d7af1cb78d85cf26 + languageName: node + linkType: hard + "optionator@npm:^0.9.3": version: 0.9.4 resolution: "optionator@npm:0.9.4" @@ -9624,6 +10965,20 @@ __metadata: languageName: node linkType: hard +"ora@npm:^3.4.0": + version: 3.4.0 + resolution: "ora@npm:3.4.0" + dependencies: + chalk: ^2.4.2 + cli-cursor: ^2.1.0 + cli-spinners: ^2.0.0 + log-symbols: ^2.2.0 + strip-ansi: ^5.2.0 + wcwidth: ^1.0.1 + checksum: f1f8e7f290b766276dcd19ddf2159a1971b1ec37eec4a5556b8f5e4afbe513a965ed65c183d38956724263b6a20989b3d8fb71b95ac4a2d6a01db2f1ed8899e4 + languageName: node + linkType: hard + "ora@npm:^5.4.1": version: 5.4.1 resolution: "ora@npm:5.4.1" @@ -9641,6 +10996,20 @@ __metadata: languageName: node linkType: hard +"os-tmpdir@npm:~1.0.2": + version: 1.0.2 + resolution: "os-tmpdir@npm:1.0.2" + checksum: 5666560f7b9f10182548bf7013883265be33620b1c1b4a4d405c25be2636f970c5488ff3e6c48de75b55d02bde037249fe5dbfbb4c0fb7714953d56aed062e6d + languageName: node + linkType: hard + +"p-finally@npm:^1.0.0": + version: 1.0.0 + resolution: "p-finally@npm:1.0.0" + checksum: 93a654c53dc805dd5b5891bab16eb0ea46db8f66c4bfd99336ae929323b1af2b70a8b0654f8f1eae924b2b73d037031366d645f1fd18b3d30cbd15950cc4b1d4 + languageName: node + linkType: hard + "p-limit@npm:^1.1.0": version: 1.3.0 resolution: "p-limit@npm:1.3.0" @@ -9790,6 +11159,16 @@ __metadata: languageName: node linkType: hard +"password-prompt@npm:^1.0.4": + version: 1.1.3 + resolution: "password-prompt@npm:1.1.3" + dependencies: + ansi-escapes: ^4.3.2 + cross-spawn: ^7.0.3 + checksum: 9a5fdbd7360db896809704c141acfe9258450a9982c4c177b82a1e6c69d204800cdab6064abac6736bd7d31142c80108deedf4484146594747cb3ce776816e97 + languageName: node + linkType: hard + "path-exists@npm:^3.0.0": version: 3.0.0 resolution: "path-exists@npm:3.0.0" @@ -9811,6 +11190,13 @@ __metadata: languageName: node linkType: hard +"path-key@npm:^2.0.0, path-key@npm:^2.0.1": + version: 2.0.1 + resolution: "path-key@npm:2.0.1" + checksum: f7ab0ad42fe3fb8c7f11d0c4f849871e28fbd8e1add65c370e422512fc5887097b9cf34d09c1747d45c942a8c1e26468d6356e2df3f740bf177ab8ca7301ebfd + languageName: node + linkType: hard + "path-key@npm:^3.0.0, path-key@npm:^3.1.0": version: 3.1.1 resolution: "path-key@npm:3.1.1" @@ -9818,7 +11204,7 @@ __metadata: languageName: node linkType: hard -"path-parse@npm:^1.0.7": +"path-parse@npm:^1.0.5, path-parse@npm:^1.0.7": version: 1.0.7 resolution: "path-parse@npm:1.0.7" checksum: 49abf3d81115642938a8700ec580da6e830dde670be21893c62f4e10bd7dd4c3742ddc603fe24f898cba7eb0c6bc1777f8d9ac14185d34540c6d4d80cd9cae8a @@ -9851,7 +11237,7 @@ __metadata: languageName: node linkType: hard -"picocolors@npm:^1.0.0, picocolors@npm:^1.1.0": +"picocolors@npm:^1.0.0, picocolors@npm:^1.1.0, picocolors@npm:^1.1.1": version: 1.1.1 resolution: "picocolors@npm:1.1.1" checksum: e1cf46bf84886c79055fdfa9dcb3e4711ad259949e3565154b004b260cd356c5d54b31a1437ce9782624bf766272fe6b0154f5f0c744fb7af5d454d2b60db045 @@ -9865,6 +11251,13 @@ __metadata: languageName: node linkType: hard +"picomatch@npm:^3.0.1": + version: 3.0.1 + resolution: "picomatch@npm:3.0.1" + checksum: b7fe18174bcc05bbf0ea09cc85623ae395676b3e6bc25636d4c20db79a948586237e429905453bf1ba385bc7a7aa5b56f1b351680e650d2b5c305ceb98dfc914 + languageName: node + linkType: hard + "pify@npm:^2.3.0": version: 2.3.0 resolution: "pify@npm:2.3.0" @@ -9945,6 +11338,17 @@ __metadata: languageName: node linkType: hard +"postcss@npm:~8.4.32": + version: 8.4.49 + resolution: "postcss@npm:8.4.49" + dependencies: + nanoid: ^3.3.7 + picocolors: ^1.1.1 + source-map-js: ^1.2.1 + checksum: eb5d6cbdca24f50399aafa5d2bea489e4caee4c563ea1edd5a2485bc5f84e9ceef3febf170272bc83a99c31d23a316ad179213e853f34c2a7a8ffa534559d63a + languageName: node + linkType: hard + "prelude-ls@npm:^1.2.1": version: 1.2.1 resolution: "prelude-ls@npm:1.2.1" @@ -9970,6 +11374,13 @@ __metadata: languageName: node linkType: hard +"pretty-bytes@npm:^5.6.0": + version: 5.6.0 + resolution: "pretty-bytes@npm:5.6.0" + checksum: 9c082500d1e93434b5b291bd651662936b8bd6204ec9fa17d563116a192d6d86b98f6d328526b4e8d783c07d5499e2614a807520249692da9ec81564b2f439cd + languageName: node + linkType: hard + "pretty-format@npm:^26.6.2": version: 26.6.2 resolution: "pretty-format@npm:26.6.2" @@ -9993,7 +11404,7 @@ __metadata: languageName: node linkType: hard -"proc-log@npm:^4.1.0, proc-log@npm:^4.2.0": +"proc-log@npm:^4.0.0, proc-log@npm:^4.1.0, proc-log@npm:^4.2.0": version: 4.2.0 resolution: "proc-log@npm:4.2.0" checksum: 98f6cd012d54b5334144c5255ecb941ee171744f45fca8b43b58ae5a0c1af07352475f481cadd9848e7f0250376ee584f6aa0951a856ff8f021bdfbff4eb33fc @@ -10007,6 +11418,13 @@ __metadata: languageName: node linkType: hard +"progress@npm:^2.0.3": + version: 2.0.3 + resolution: "progress@npm:2.0.3" + checksum: f67403fe7b34912148d9252cb7481266a354bd99ce82c835f79070643bb3c6583d10dbcfda4d41e04bbc1d8437e9af0fb1e1f2135727878f5308682a579429b7 + languageName: node + linkType: hard + "promise-retry@npm:^2.0.1": version: 2.0.1 resolution: "promise-retry@npm:2.0.1" @@ -10017,6 +11435,15 @@ __metadata: languageName: node linkType: hard +"promise@npm:^7.1.1": + version: 7.3.1 + resolution: "promise@npm:7.3.1" + dependencies: + asap: ~2.0.3 + checksum: 475bb069130179fbd27ed2ab45f26d8862376a137a57314cf53310bdd85cc986a826fd585829be97ebc0aaf10e9d8e68be1bfe5a4a0364144b1f9eedfa940cf1 + languageName: node + linkType: hard + "promise@npm:^8.3.0": version: 8.3.0 resolution: "promise@npm:8.3.0" @@ -10026,7 +11453,7 @@ __metadata: languageName: node linkType: hard -"prompts@npm:^2.0.1, prompts@npm:^2.4.2": +"prompts@npm:^2.0.1, prompts@npm:^2.3.2, prompts@npm:^2.4.2": version: 2.4.2 resolution: "prompts@npm:2.4.2" dependencies: @@ -10057,7 +11484,7 @@ __metadata: languageName: node linkType: hard -"punycode@npm:^2.1.0": +"punycode@npm:^2.1.0, punycode@npm:^2.1.1": version: 2.3.1 resolution: "punycode@npm:2.3.1" checksum: bb0a0ceedca4c3c57a9b981b90601579058903c62be23c5e8e843d2c2d4148a3ecf029d5133486fb0e1822b098ba8bba09e89d6b21742d02fa26bda6441a6fb2 @@ -10078,6 +11505,15 @@ __metadata: languageName: node linkType: hard +"qrcode-terminal@npm:0.11.0": + version: 0.11.0 + resolution: "qrcode-terminal@npm:0.11.0" + bin: + qrcode-terminal: ./bin/qrcode-terminal.js + checksum: ad146ea1e339e1745402a3ea131631f64f40f0d1ff9cc6bd9c21677feaa1ca6dcd32eadf188fd3febdab8bf6191b3d24d533454903a72543645a72820e4d324c + languageName: node + linkType: hard + "queue-microtask@npm:^1.2.2": version: 1.2.3 resolution: "queue-microtask@npm:1.2.3" @@ -10115,6 +11551,20 @@ __metadata: languageName: node linkType: hard +"rc@npm:~1.2.7": + version: 1.2.8 + resolution: "rc@npm:1.2.8" + dependencies: + deep-extend: ^0.6.0 + ini: ~1.3.0 + minimist: ^1.2.0 + strip-json-comments: ~2.0.1 + bin: + rc: ./cli.js + checksum: 2e26e052f8be2abd64e6d1dabfbd7be03f80ec18ccbc49562d31f617d0015fbdbcf0f9eed30346ea6ab789e0fdfe4337f033f8016efdbee0df5354751842080e + languageName: node + linkType: hard + "react-devtools-core@npm:^5.3.1": version: 5.3.2 resolution: "react-devtools-core@npm:5.3.2" @@ -10146,13 +11596,13 @@ __metadata: languageName: node linkType: hard -"react-native-audio-api@npm:^0.4.4": - version: 0.4.9 - resolution: "react-native-audio-api@npm:0.4.9" +"react-native-audio-api@npm:0.4.11": + version: 0.4.11 + resolution: "react-native-audio-api@npm:0.4.11" peerDependencies: react: "*" react-native: "*" - checksum: 6a46cade4aa8575a9c239927ebc599ee7d0d5978dab720f0d576c3f95307b0cf5d5444489454b3d0d69c660f5d19d022aa05e46fcda70de56f707ae7a59a948f + checksum: 7e80da3fc61881f61dcb676da6dcf0255ee2ea2d35ee39b40d8a329efdc0e5dd483cd2f820cba0b014042f9118d4c1a3d12456d3cab8de6cceda751df3b5e885 languageName: node linkType: hard @@ -10204,6 +11654,7 @@ __metadata: eslint: ^8.51.0 eslint-config-prettier: ^9.0.0 eslint-plugin-prettier: ^5.0.1 + expo: ^52.0.37 expo-asset: ^11.0.3 expo-file-system: ^18.0.10 jest: ^29.7.0 @@ -10211,8 +11662,9 @@ __metadata: prettier: ^3.0.3 react: 18.3.1 react-native: ^0.76.1 - react-native-audio-api: ^0.4.4 + react-native-audio-api: 0.4.11 react-native-builder-bob: ^0.30.2 + react-native-live-audio-stream: ^1.1.1 turbo: ^1.10.7 typescript: ^5.2.2 peerDependencies: @@ -10221,6 +11673,13 @@ __metadata: languageName: unknown linkType: soft +"react-native-live-audio-stream@npm:^1.1.1": + version: 1.1.1 + resolution: "react-native-live-audio-stream@npm:1.1.1" + checksum: 1503fb1d9e2df58bf31bfa9ee3cf5167802a659ec64e3a6ca8ba2401b6388af158f9e04895699152e91eec66bcc949a3f35ae38fb63435ae28959b5be56bbd2e + languageName: node + linkType: hard + "react-native@npm:^0.76.1": version: 0.76.2 resolution: "react-native@npm:0.76.2" @@ -10275,7 +11734,7 @@ __metadata: languageName: node linkType: hard -"react-refresh@npm:^0.14.0": +"react-refresh@npm:^0.14.0, react-refresh@npm:^0.14.2": version: 0.14.2 resolution: "react-refresh@npm:0.14.2" checksum: d80db4bd40a36dab79010dc8aa317a5b931f960c0d83c4f3b81f0552cbcf7f29e115b84bb7908ec6a1eb67720fff7023084eff73ece8a7ddc694882478464382 @@ -10528,6 +11987,13 @@ __metadata: languageName: node linkType: hard +"remove-trailing-slash@npm:^0.1.0": + version: 0.1.1 + resolution: "remove-trailing-slash@npm:0.1.1" + checksum: dd200c6b7d6f2b49d12b3eff3abc7089917e8a268cefcd5bf67ff23f8c2ad9f866fbe2f3566e1a8dbdc4f4b1171e2941f7dd00852f8de549bb73c3df53b09d96 + languageName: node + linkType: hard + "require-directory@npm:^2.1.1": version: 2.1.1 resolution: "require-directory@npm:2.1.1" @@ -10549,6 +12015,17 @@ __metadata: languageName: node linkType: hard +"requireg@npm:^0.2.2": + version: 0.2.2 + resolution: "requireg@npm:0.2.2" + dependencies: + nested-error-stacks: ~2.0.1 + rc: ~1.2.7 + resolve: ~1.7.1 + checksum: 99b420a02e7272717153cdf75891cbb133c02c04b287721eb1bdb0668b6a98aa1da38c08d8148fc8b1443a668d939eeb622d390538ac8da17b18a977ebe998ae + languageName: node + linkType: hard + "reselect@npm:^4.1.7": version: 4.1.8 resolution: "reselect@npm:4.1.8" @@ -10609,6 +12086,13 @@ __metadata: languageName: node linkType: hard +"resolve.exports@npm:^2.0.3": + version: 2.0.3 + resolution: "resolve.exports@npm:2.0.3" + checksum: abfb9f98278dcd0c19b8a49bb486abfafa23df4636d49128ea270dc982053c3ef230a530aecda1fae1322873fdfa6c97674fc539651ddfdb375ac58e0b8ef6df + languageName: node + linkType: hard + "resolve@npm:^1.10.0, resolve@npm:^1.14.2, resolve@npm:^1.20.0, resolve@npm:^1.22.8": version: 1.22.8 resolution: "resolve@npm:1.22.8" @@ -10622,6 +12106,19 @@ __metadata: languageName: node linkType: hard +"resolve@npm:^1.22.2": + version: 1.22.10 + resolution: "resolve@npm:1.22.10" + dependencies: + is-core-module: ^2.16.0 + path-parse: ^1.0.7 + supports-preserve-symlinks-flag: ^1.0.0 + bin: + resolve: bin/resolve + checksum: ab7a32ff4046fcd7c6fdd525b24a7527847d03c3650c733b909b01b757f92eb23510afa9cc3e9bf3f26a3e073b48c88c706dfd4c1d2fb4a16a96b73b6328ddcf + languageName: node + linkType: hard + "resolve@npm:^2.0.0-next.5": version: 2.0.0-next.5 resolution: "resolve@npm:2.0.0-next.5" @@ -10635,6 +12132,15 @@ __metadata: languageName: node linkType: hard +"resolve@npm:~1.7.1": + version: 1.7.1 + resolution: "resolve@npm:1.7.1" + dependencies: + path-parse: ^1.0.5 + checksum: afb829d4b923f9b17aaf55320c2feaf8d44577674a3a71510d299f832fb80f6703e5a701e01cf774c3241fe8663d4b2b99053cfbca7995488d18ea9f8c7ac309 + languageName: node + linkType: hard + "resolve@patch:resolve@^1.10.0#~builtin, resolve@patch:resolve@^1.14.2#~builtin, resolve@patch:resolve@^1.20.0#~builtin, resolve@patch:resolve@^1.22.8#~builtin": version: 1.22.8 resolution: "resolve@patch:resolve@npm%3A1.22.8#~builtin::version=1.22.8&hash=c3c19d" @@ -10648,6 +12154,19 @@ __metadata: languageName: node linkType: hard +"resolve@patch:resolve@^1.22.2#~builtin": + version: 1.22.10 + resolution: "resolve@patch:resolve@npm%3A1.22.10#~builtin::version=1.22.10&hash=c3c19d" + dependencies: + is-core-module: ^2.16.0 + path-parse: ^1.0.7 + supports-preserve-symlinks-flag: ^1.0.0 + bin: + resolve: bin/resolve + checksum: 8aac1e4e4628bd00bf4b94b23de137dd3fe44097a8d528fd66db74484be929936e20c696e1a3edf4488f37e14180b73df6f600992baea3e089e8674291f16c9d + languageName: node + linkType: hard + "resolve@patch:resolve@^2.0.0-next.5#~builtin": version: 2.0.0-next.5 resolution: "resolve@patch:resolve@npm%3A2.0.0-next.5#~builtin::version=2.0.0-next.5&hash=c3c19d" @@ -10661,6 +12180,25 @@ __metadata: languageName: node linkType: hard +"resolve@patch:resolve@~1.7.1#~builtin": + version: 1.7.1 + resolution: "resolve@patch:resolve@npm%3A1.7.1#~builtin::version=1.7.1&hash=3bafbf" + dependencies: + path-parse: ^1.0.5 + checksum: c2a6f0e3856ac1ddc8297091c20ca6c36d99bf289ddea366c46bd2a7ed8b31075c7f9d01ff5d390ebed1fe41b9fabe57a79ae087992ba92e3592f0c3be07c1ac + languageName: node + linkType: hard + +"restore-cursor@npm:^2.0.0": + version: 2.0.0 + resolution: "restore-cursor@npm:2.0.0" + dependencies: + onetime: ^2.0.0 + signal-exit: ^3.0.2 + checksum: 482e13d02d834b6e5e3aa90304a8b5e840775d6f06916cc92a50038adf9f098dcc72405b567da8a37e137ae40ad3e31896fa3136ae62f7a426c2fbf53d036536 + languageName: node + linkType: hard + "restore-cursor@npm:^3.1.0": version: 3.1.0 resolution: "restore-cursor@npm:3.1.0" @@ -10786,7 +12324,7 @@ __metadata: languageName: node linkType: hard -"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.6.0": +"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.5.0, semver@npm:^5.6.0": version: 5.7.2 resolution: "semver@npm:5.7.2" bin: @@ -10865,6 +12403,27 @@ __metadata: languageName: node linkType: hard +"send@npm:^0.19.0": + version: 0.19.1 + resolution: "send@npm:0.19.1" + dependencies: + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: ~2.0.0 + escape-html: ~1.0.3 + etag: ~1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: ~1.2.1 + statuses: 2.0.1 + checksum: 2a1991c8ac23a9b47c4477fbed056f1e4503ef683c669e9113303f793965c42f462d763755378eef9ad8b8c0e0cfbcf7789e2e517fa8d7451bc2cf8b3feca01e + languageName: node + linkType: hard + "serialize-error@npm:^2.1.0": version: 2.1.0 resolution: "serialize-error@npm:2.1.0" @@ -10917,6 +12476,13 @@ __metadata: languageName: node linkType: hard +"setimmediate@npm:^1.0.5": + version: 1.0.5 + resolution: "setimmediate@npm:1.0.5" + checksum: c9a6f2c5b51a2dabdc0247db9c46460152ffc62ee139f3157440bd48e7c59425093f42719ac1d7931f054f153e2d26cf37dfeb8da17a794a58198a2705e527fd + languageName: node + linkType: hard + "setprototypeof@npm:1.2.0": version: 1.2.0 resolution: "setprototypeof@npm:1.2.0" @@ -10933,6 +12499,15 @@ __metadata: languageName: node linkType: hard +"shebang-command@npm:^1.2.0": + version: 1.2.0 + resolution: "shebang-command@npm:1.2.0" + dependencies: + shebang-regex: ^1.0.0 + checksum: 9eed1750301e622961ba5d588af2212505e96770ec376a37ab678f965795e995ade7ed44910f5d3d3cb5e10165a1847f52d3348c64e146b8be922f7707958908 + languageName: node + linkType: hard + "shebang-command@npm:^2.0.0": version: 2.0.0 resolution: "shebang-command@npm:2.0.0" @@ -10942,6 +12517,13 @@ __metadata: languageName: node linkType: hard +"shebang-regex@npm:^1.0.0": + version: 1.0.0 + resolution: "shebang-regex@npm:1.0.0" + checksum: 404c5a752cd40f94591dfd9346da40a735a05139dac890ffc229afba610854d8799aaa52f87f7e0c94c5007f2c6af55bdcaeb584b56691926c5eaf41dc8f1372 + languageName: node + linkType: hard + "shebang-regex@npm:^3.0.0": version: 3.0.0 resolution: "shebang-regex@npm:3.0.0" @@ -10968,7 +12550,7 @@ __metadata: languageName: node linkType: hard -"signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3, signal-exit@npm:^3.0.7": +"signal-exit@npm:^3.0.0, signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3, signal-exit@npm:^3.0.7": version: 3.0.7 resolution: "signal-exit@npm:3.0.7" checksum: a2f098f247adc367dffc27845853e9959b9e88b01cb301658cfe4194352d8d2bb32e18467c786a7fe15f1d44b233ea35633d076d5e737870b7139949d1ab6318 @@ -11060,6 +12642,13 @@ __metadata: languageName: node linkType: hard +"source-map-js@npm:^1.2.1": + version: 1.2.1 + resolution: "source-map-js@npm:1.2.1" + checksum: 4eb0cd997cdf228bc253bcaff9340afeb706176e64868ecd20efbe6efea931465f43955612346d6b7318789e5265bdc419bc7669c1cebe3db0eb255f57efa76b + languageName: node + linkType: hard + "source-map-support@npm:0.5.13": version: 0.5.13 resolution: "source-map-support@npm:0.5.13" @@ -11070,7 +12659,7 @@ __metadata: languageName: node linkType: hard -"source-map-support@npm:^0.5.16, source-map-support@npm:~0.5.20": +"source-map-support@npm:^0.5.16, source-map-support@npm:~0.5.20, source-map-support@npm:~0.5.21": version: 0.5.21 resolution: "source-map-support@npm:0.5.21" dependencies: @@ -11137,7 +12726,7 @@ __metadata: languageName: node linkType: hard -"split@npm:^1.0.0": +"split@npm:^1.0.0, split@npm:^1.0.1": version: 1.0.1 resolution: "split@npm:1.0.1" dependencies: @@ -11208,7 +12797,7 @@ __metadata: languageName: node linkType: hard -"stream-buffers@npm:2.2.x": +"stream-buffers@npm:2.2.x, stream-buffers@npm:~2.2.0": version: 2.2.0 resolution: "stream-buffers@npm:2.2.0" checksum: 4587d9e8f050d689fb38b4295e73408401b16de8edecc12026c6f4ae92956705ecfd995ae3845d7fa3ebf19502d5754df9143d91447fd881d86e518f43882c1c @@ -11377,6 +12966,13 @@ __metadata: languageName: node linkType: hard +"strip-eof@npm:^1.0.0": + version: 1.0.0 + resolution: "strip-eof@npm:1.0.0" + checksum: 40bc8ddd7e072f8ba0c2d6d05267b4e0a4800898c3435b5fb5f5a21e6e47dfaff18467e7aa0d1844bb5d6274c3097246595841fbfeb317e541974ee992cac506 + languageName: node + linkType: hard + "strip-final-newline@npm:^2.0.0": version: 2.0.0 resolution: "strip-final-newline@npm:2.0.0" @@ -11409,6 +13005,13 @@ __metadata: languageName: node linkType: hard +"strip-json-comments@npm:~2.0.1": + version: 2.0.1 + resolution: "strip-json-comments@npm:2.0.1" + checksum: 1074ccb63270d32ca28edfb0a281c96b94dc679077828135141f27d52a5a398ef5e78bcf22809d23cadc2b81dfbe345eb5fd8699b385c8b1128907dec4a7d1e1 + languageName: node + linkType: hard + "strnum@npm:^1.0.5": version: 1.0.5 resolution: "strnum@npm:1.0.5" @@ -11416,6 +13019,13 @@ __metadata: languageName: node linkType: hard +"structured-headers@npm:^0.4.1": + version: 0.4.1 + resolution: "structured-headers@npm:0.4.1" + checksum: 2f3073b2c8b4f2515367a1647ba0b6764ce6d35b3943605940de41077c2afd2513257f4bf6fbfd67a3455f25a3e844905da6fddde6b6ad7974256495311a25a3 + languageName: node + linkType: hard + "sucrase@npm:3.35.0": version: 3.35.0 resolution: "sucrase@npm:3.35.0" @@ -11434,6 +13044,20 @@ __metadata: languageName: node linkType: hard +"sudo-prompt@npm:9.1.1": + version: 9.1.1 + resolution: "sudo-prompt@npm:9.1.1" + checksum: 20fe5bde6a27725d87938e68d6f99c0798ce9bf3a8fdebd58392a0436df713c66ebf67863e682941ff98ee7611e40ed599e12be7f264c9286106feb0f3db3860 + languageName: node + linkType: hard + +"sudo-prompt@npm:^8.2.0": + version: 8.2.5 + resolution: "sudo-prompt@npm:8.2.5" + checksum: bacff1f18a8ab8dba345cc1f3cf3a02b4cc571f71585df79af95af31278f56107f7c29402f5347b07c489888c63f2deb78d544b93a6347e83d0ed0847f4bc163 + languageName: node + linkType: hard + "sudo-prompt@npm:^9.0.0": version: 9.2.1 resolution: "sudo-prompt@npm:9.2.1" @@ -11450,7 +13074,7 @@ __metadata: languageName: node linkType: hard -"supports-color@npm:^7.1.0": +"supports-color@npm:^7.0.0, supports-color@npm:^7.1.0": version: 7.2.0 resolution: "supports-color@npm:7.2.0" dependencies: @@ -11468,6 +13092,16 @@ __metadata: languageName: node linkType: hard +"supports-hyperlinks@npm:^2.0.0": + version: 2.3.0 + resolution: "supports-hyperlinks@npm:2.3.0" + dependencies: + has-flag: ^4.0.0 + supports-color: ^7.0.0 + checksum: 9ee0de3c8ce919d453511b2b1588a8205bd429d98af94a01df87411391010fe22ca463f268c84b2ce2abad019dfff8452aa02806eeb5c905a8d7ad5c4f4c52b8 + languageName: node + linkType: hard + "supports-preserve-symlinks-flag@npm:^1.0.0": version: 1.0.0 resolution: "supports-preserve-symlinks-flag@npm:1.0.0" @@ -11499,7 +13133,7 @@ __metadata: languageName: node linkType: hard -"temp-dir@npm:~2.0.0": +"temp-dir@npm:^2.0.0, temp-dir@npm:~2.0.0": version: 2.0.0 resolution: "temp-dir@npm:2.0.0" checksum: cc4f0404bf8d6ae1a166e0e64f3f409b423f4d1274d8c02814a59a5529f07db6cd070a749664141b992b2c1af337fa9bb451a460a43bb9bcddc49f235d3115aa @@ -11515,6 +13149,29 @@ __metadata: languageName: node linkType: hard +"tempy@npm:^0.7.1": + version: 0.7.1 + resolution: "tempy@npm:0.7.1" + dependencies: + del: ^6.0.0 + is-stream: ^2.0.0 + temp-dir: ^2.0.0 + type-fest: ^0.16.0 + unique-string: ^2.0.0 + checksum: 265652f94eed077c311777e0290c4b4f3ec670c71c62c979efcbbd67ee506d677ff2741a72d7160556e9b0fba8fc5fbd7b3c482ac94c8acc48d85411f1f079c3 + languageName: node + linkType: hard + +"terminal-link@npm:^2.1.1": + version: 2.1.1 + resolution: "terminal-link@npm:2.1.1" + dependencies: + ansi-escapes: ^4.2.1 + supports-hyperlinks: ^2.0.0 + checksum: ce3d2cd3a438c4a9453947aa664581519173ea40e77e2534d08c088ee6dda449eabdbe0a76d2a516b8b73c33262fedd10d5270ccf7576ae316e3db170ce6562f + languageName: node + linkType: hard + "terser@npm:^5.15.0": version: 5.36.0 resolution: "terser@npm:5.36.0" @@ -11605,6 +13262,15 @@ __metadata: languageName: node linkType: hard +"tmp@npm:^0.0.33": + version: 0.0.33 + resolution: "tmp@npm:0.0.33" + dependencies: + os-tmpdir: ~1.0.2 + checksum: 902d7aceb74453ea02abbf58c203f4a8fc1cead89b60b31e354f74ed5b3fb09ea817f94fb310f884a5d16987dd9fa5a735412a7c2dd088dd3d415aa819ae3a28 + languageName: node + linkType: hard + "tmpl@npm:1.0.5": version: 1.0.5 resolution: "tmpl@npm:1.0.5" @@ -11701,7 +13367,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^2.0.1, tslib@npm:^2.6.2": +"tslib@npm:^2.0.1, tslib@npm:^2.4.0, tslib@npm:^2.6.2": version: 2.8.1 resolution: "tslib@npm:2.8.1" checksum: e4aba30e632b8c8902b47587fd13345e2827fa639e7c3121074d5ee0880723282411a8838f830b55100cbe4517672f84a2472667d355b81e8af165a55dc6203a @@ -11806,6 +13472,13 @@ __metadata: languageName: node linkType: hard +"type-fest@npm:^0.16.0": + version: 0.16.0 + resolution: "type-fest@npm:0.16.0" + checksum: 1a4102c06dc109db00418c753062e206cab65befd469d000ece4452ee649bf2a9cf57686d96fb42326bc9d918d9a194d4452897b486dcc41989e5c99e4e87094 + languageName: node + linkType: hard + "type-fest@npm:^0.18.0": version: 0.18.1 resolution: "type-fest@npm:0.18.1" @@ -11934,6 +13607,15 @@ __metadata: languageName: node linkType: hard +"ua-parser-js@npm:^1.0.35": + version: 1.0.40 + resolution: "ua-parser-js@npm:1.0.40" + bin: + ua-parser-js: script/cli.js + checksum: ae555a33dc9395dd877e295d6adbf5634e047aad7c3358328830218f3ca3a6233e35848cd355465a7612f269860e8029984389282940c7a27c9af4dfcdbba8c3 + languageName: node + linkType: hard + "uglify-js@npm:^3.1.4": version: 3.19.3 resolution: "uglify-js@npm:3.19.3" @@ -11969,6 +13651,13 @@ __metadata: languageName: node linkType: hard +"undici@npm:^6.18.2": + version: 6.21.1 + resolution: "undici@npm:6.21.1" + checksum: 2efc52f77224754a2efa7cb6459829f3c93c8321d17e76f574a904b353783d95073b6116f5b15637c4845d98c9dc5a019b809cb9d63b3529267e7727c49f6996 + languageName: node + linkType: hard + "unicode-canonical-property-names-ecmascript@npm:^2.0.0": version: 2.0.1 resolution: "unicode-canonical-property-names-ecmascript@npm:2.0.1" @@ -12018,7 +13707,7 @@ __metadata: languageName: node linkType: hard -"unique-string@npm:~2.0.0": +"unique-string@npm:^2.0.0, unique-string@npm:~2.0.0": version: 2.0.0 resolution: "unique-string@npm:2.0.0" dependencies: @@ -12101,6 +13790,15 @@ __metadata: languageName: node linkType: hard +"uuid@npm:^8.0.0, uuid@npm:^8.3.2": + version: 8.3.2 + resolution: "uuid@npm:8.3.2" + bin: + uuid: dist/bin/uuid + checksum: 5575a8a75c13120e2f10e6ddc801b2c7ed7d8f3c8ac22c7ed0c7b2ba6383ec0abda88c905085d630e251719e0777045ae3236f04c812184b7c765f63a70e58df + languageName: node + linkType: hard + "v8-compile-cache-lib@npm:^3.0.1": version: 3.0.1 resolution: "v8-compile-cache-lib@npm:3.0.1" @@ -12129,6 +13827,13 @@ __metadata: languageName: node linkType: hard +"validate-npm-package-name@npm:^5.0.0": + version: 5.0.1 + resolution: "validate-npm-package-name@npm:5.0.1" + checksum: 0d583a1af23aeffea7748742cf22b6802458736fb8b60323ba5949763824d46f796474b0e1b9206beb716f9d75269e19dbd7795d6b038b29d561be95dd827381 + languageName: node + linkType: hard + "vary@npm:~1.1.2": version: 1.1.2 resolution: "vary@npm:1.1.2" @@ -12175,6 +13880,13 @@ __metadata: languageName: node linkType: hard +"webidl-conversions@npm:^5.0.0": + version: 5.0.0 + resolution: "webidl-conversions@npm:5.0.0" + checksum: ccf1ec2ca7c0b5671e5440ace4a66806ae09c49016ab821481bec0c05b1b82695082dc0a27d1fe9d804d475a408ba0c691e6803fd21be608e710955d4589cd69 + languageName: node + linkType: hard + "whatwg-fetch@npm:^3.0.0": version: 3.6.20 resolution: "whatwg-fetch@npm:3.6.20" @@ -12182,6 +13894,17 @@ __metadata: languageName: node linkType: hard +"whatwg-url-without-unicode@npm:8.0.0-3": + version: 8.0.0-3 + resolution: "whatwg-url-without-unicode@npm:8.0.0-3" + dependencies: + buffer: ^5.4.3 + punycode: ^2.1.1 + webidl-conversions: ^5.0.0 + checksum: 1fe266f7161e0bd961087c1254a5a59d1138c3d402064495eed65e7590d9caed5a1d9acfd6e7a1b0bf0431253b0e637ee3e4ffc08387cd60e0b2ddb9d4687a4b + languageName: node + linkType: hard + "whatwg-url@npm:^5.0.0": version: 5.0.0 resolution: "whatwg-url@npm:5.0.0" @@ -12257,6 +13980,17 @@ __metadata: languageName: node linkType: hard +"which@npm:^1.2.9": + version: 1.3.1 + resolution: "which@npm:1.3.1" + dependencies: + isexe: ^2.0.0 + bin: + which: ./bin/which + checksum: f2e185c6242244b8426c9df1510e86629192d93c1a986a7d2a591f2c24869e7ffd03d6dac07ca863b2e4c06f59a4cc9916c585b72ee9fa1aa609d0124df15e04 + languageName: node + linkType: hard + "which@npm:^2.0.1, which@npm:^2.0.2": version: 2.0.2 resolution: "which@npm:2.0.2" @@ -12279,6 +14013,13 @@ __metadata: languageName: node linkType: hard +"wonka@npm:^6.3.2": + version: 6.3.5 + resolution: "wonka@npm:6.3.5" + checksum: bd9f4330664ea971ddbc762275c081d5a635bcebd1c567211d43278b925f3394ad454bb33a0ef5e8beadfaad552cdbc92c018dfb96350f3895341998efa5f521 + languageName: node + linkType: hard + "word-wrap@npm:^1.2.5": version: 1.2.5 resolution: "word-wrap@npm:1.2.5" @@ -12378,6 +14119,21 @@ __metadata: languageName: node linkType: hard +"ws@npm:^8.12.1": + version: 8.18.1 + resolution: "ws@npm:8.18.1" + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ">=5.0.2" + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + checksum: 4658357185d891bc45cc2d42a84f9e192d047e8476fb5cba25b604f7d75ca87ca0dd54cd0b2cc49aeee57c79045a741cb7d0b14501953ac60c790cd105c42f23 + languageName: node + linkType: hard + "xcode@npm:^3.0.1": version: 3.0.1 resolution: "xcode@npm:3.0.1"