gitextract_iryq256z/ ├── .editorconfig ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── activation.yaml │ └── build_native_libraries.yaml ├── .gitignore ├── .gitmodules ├── AGENTS.md ├── LICENSE ├── README.md ├── dependency/ │ └── pixman/ │ ├── pixman-arm-intrisics.cpp │ ├── pixman-arm-neon-asm.S │ ├── pixman-arm-neon-asm.h │ ├── pixman-arma64-neon-asm.S │ ├── pixman-arma64-neon-asm.h │ └── pixman-cpp-standard.cpp ├── projects/ │ ├── AndroidStudio/ │ │ ├── .gitignore │ │ ├── .idea/ │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ └── vcs.xml │ │ ├── app/ │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src/ │ │ │ ├── androidTest/ │ │ │ │ └── java/ │ │ │ │ └── com/ │ │ │ │ └── gindemit/ │ │ │ │ └── rlottie/ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java/ │ │ │ │ │ └── com/ │ │ │ │ │ └── gindemit/ │ │ │ │ │ └── rlottie/ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res/ │ │ │ │ ├── drawable/ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── drawable-v24/ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── layout/ │ │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26/ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── values/ │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── values-night/ │ │ │ │ └── themes.xml │ │ │ └── test/ │ │ │ └── java/ │ │ │ └── com/ │ │ │ └── gindemit/ │ │ │ └── rlottie/ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── CMake/ │ ├── .gitignore │ ├── CMakeLists.txt │ └── CMakeSettings.json ├── src/ │ ├── ExportApi.h │ ├── LottiePlugin.cpp │ └── LottiePlugin.h └── unity/ └── RLottieUnity/ ├── .editorconfig ├── .gitignore ├── .vsconfig ├── Assets/ │ ├── LottiePlugin/ │ │ ├── Editor/ │ │ │ ├── LottiePlugin.Editor.asmdef │ │ │ ├── LottiePlugin.Editor.asmdef.meta │ │ │ ├── src/ │ │ │ │ ├── AnimatedButtonEditor.cs │ │ │ │ ├── AnimatedButtonEditor.cs.meta │ │ │ │ ├── AnimatedImageEditor.cs │ │ │ │ ├── AnimatedImageEditor.cs.meta │ │ │ │ ├── OpenPersistentDataPathFolder.cs │ │ │ │ └── OpenPersistentDataPathFolder.cs.meta │ │ │ └── src.meta │ │ ├── Editor.meta │ │ ├── Plugins/ │ │ │ ├── Android/ │ │ │ │ ├── arm64-v8a/ │ │ │ │ │ └── libLottiePlugin.so.meta │ │ │ │ ├── arm64-v8a.meta │ │ │ │ ├── armeabi-v7a/ │ │ │ │ │ └── libLottiePlugin.so.meta │ │ │ │ ├── armeabi-v7a.meta │ │ │ │ ├── x86/ │ │ │ │ │ └── libLottiePlugin.so.meta │ │ │ │ ├── x86.meta │ │ │ │ ├── x86_64/ │ │ │ │ │ └── libLottiePlugin.so.meta │ │ │ │ └── x86_64.meta │ │ │ ├── Android.meta │ │ │ ├── Linux/ │ │ │ │ ├── x86_64/ │ │ │ │ │ └── libLottiePlugin.so.meta │ │ │ │ └── x86_64.meta │ │ │ ├── Linux.meta │ │ │ ├── OSX/ │ │ │ │ └── libLottiePlugin.dylib.meta │ │ │ ├── OSX.meta │ │ │ ├── WebGL/ │ │ │ │ ├── LottiePlugin.bc │ │ │ │ ├── LottiePlugin.bc.meta │ │ │ │ ├── libLottiePlugin.a │ │ │ │ ├── libLottiePlugin.a.meta │ │ │ │ ├── librlottie.a │ │ │ │ └── librlottie.a.meta │ │ │ ├── WebGL.meta │ │ │ ├── Windows/ │ │ │ │ ├── x86/ │ │ │ │ │ └── LottiePlugin.dll.meta │ │ │ │ ├── x86.meta │ │ │ │ ├── x86_64/ │ │ │ │ │ └── LottiePlugin.dll.meta │ │ │ │ └── x86_64.meta │ │ │ ├── Windows.meta │ │ │ ├── iOS/ │ │ │ │ ├── libLottiePlugin.a │ │ │ │ ├── libLottiePlugin.a.meta │ │ │ │ ├── librlottie.a │ │ │ │ ├── librlottie.a.meta │ │ │ │ ├── x86_64/ │ │ │ │ │ ├── libLottiePlugin.a │ │ │ │ │ ├── libLottiePlugin.a.meta │ │ │ │ │ ├── librlottie.a │ │ │ │ │ └── librlottie.a.meta │ │ │ │ └── x86_64.meta │ │ │ └── iOS.meta │ │ ├── Plugins.meta │ │ ├── Runtime/ │ │ │ ├── AssemblyAttributes.cs │ │ │ ├── AssemblyAttributes.cs.meta │ │ │ ├── LottiePlugin.Runtime.asmdef │ │ │ ├── LottiePlugin.Runtime.asmdef.meta │ │ │ ├── src/ │ │ │ │ ├── LottieAnimation.cs │ │ │ │ ├── LottieAnimation.cs.meta │ │ │ │ ├── LottieAnimationsAtlas.cs │ │ │ │ ├── LottieAnimationsAtlas.cs.meta │ │ │ │ ├── NativeBridge.cs │ │ │ │ ├── NativeBridge.cs.meta │ │ │ │ ├── Support/ │ │ │ │ │ ├── FIleSizeFormatter.cs │ │ │ │ │ ├── FIleSizeFormatter.cs.meta │ │ │ │ │ ├── FilesHelper.cs │ │ │ │ │ ├── FilesHelper.cs.meta │ │ │ │ │ ├── StreamingAssetsHelper.cs │ │ │ │ │ └── StreamingAssetsHelper.cs.meta │ │ │ │ ├── Support.meta │ │ │ │ ├── UI/ │ │ │ │ │ ├── AnimatedButton.cs │ │ │ │ │ ├── AnimatedButton.cs.meta │ │ │ │ │ ├── AnimatedImage.cs │ │ │ │ │ └── AnimatedImage.cs.meta │ │ │ │ ├── UI.meta │ │ │ │ ├── Utility/ │ │ │ │ │ ├── ThrowIf.cs │ │ │ │ │ └── ThrowIf.cs.meta │ │ │ │ └── Utility.meta │ │ │ └── src.meta │ │ ├── Runtime.meta │ │ ├── Samples~/ │ │ │ ├── SceneUI/ │ │ │ │ ├── ExternalDlls/ │ │ │ │ │ ├── Newtonsoft.Json.dll.meta │ │ │ │ │ ├── System.Buffers.dll.meta │ │ │ │ │ ├── System.Memory.dll.meta │ │ │ │ │ ├── System.Threading.Tasks.Extensions.dll.meta │ │ │ │ │ └── Telegram.Bot.dll.meta │ │ │ │ ├── ExternalDlls.meta │ │ │ │ ├── Graphy - Ultimate Stats Monitor/ │ │ │ │ │ ├── Changelog.txt │ │ │ │ │ ├── Changelog.txt.meta │ │ │ │ │ ├── Editor/ │ │ │ │ │ │ ├── GraphyDebuggerEditor.cs │ │ │ │ │ │ ├── GraphyDebuggerEditor.cs.meta │ │ │ │ │ │ ├── GraphyEditorStyle.cs │ │ │ │ │ │ ├── GraphyEditorStyle.cs.meta │ │ │ │ │ │ ├── GraphyManagerEditor.cs │ │ │ │ │ │ ├── GraphyManagerEditor.cs.meta │ │ │ │ │ │ ├── GraphyMenuItem.cs │ │ │ │ │ │ ├── GraphyMenuItem.cs.meta │ │ │ │ │ │ ├── Tayx.Graphy.Editor.asmdef │ │ │ │ │ │ └── Tayx.Graphy.Editor.asmdef.meta │ │ │ │ │ ├── Editor.meta │ │ │ │ │ ├── Font/ │ │ │ │ │ │ ├── Northwest-Bold/ │ │ │ │ │ │ │ ├── ERIC-TIRADO-NORTHWEST-LICENSE.txt │ │ │ │ │ │ │ ├── ERIC-TIRADO-NORTHWEST-LICENSE.txt.meta │ │ │ │ │ │ │ ├── NORTHWEST-B.otf │ │ │ │ │ │ │ └── NORTHWEST-B.otf.meta │ │ │ │ │ │ ├── Northwest-Bold.meta │ │ │ │ │ │ ├── Roboto/ │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── LICENSE.txt.meta │ │ │ │ │ │ │ ├── Roboto-Bold.ttf.meta │ │ │ │ │ │ │ └── Roboto-Regular.ttf.meta │ │ │ │ │ │ └── Roboto.meta │ │ │ │ │ ├── Font.meta │ │ │ │ │ ├── GUI/ │ │ │ │ │ │ ├── GraphyGUISkin.guiskin │ │ │ │ │ │ └── GraphyGUISkin.guiskin.meta │ │ │ │ │ ├── GUI.meta │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── LICENSE.meta │ │ │ │ │ ├── Materials/ │ │ │ │ │ │ ├── Audio_Spectrum_Graph.mat │ │ │ │ │ │ ├── Audio_Spectrum_Graph.mat.meta │ │ │ │ │ │ ├── Audio_Spectrum_Highest_Values_Graph.mat │ │ │ │ │ │ ├── Audio_Spectrum_Highest_Values_Graph.mat.meta │ │ │ │ │ │ ├── FPS_Graph.mat │ │ │ │ │ │ ├── FPS_Graph.mat.meta │ │ │ │ │ │ ├── RAM_Allocated_Graph.mat │ │ │ │ │ │ ├── RAM_Allocated_Graph.mat.meta │ │ │ │ │ │ ├── RAM_Mono_Graph.mat │ │ │ │ │ │ ├── RAM_Mono_Graph.mat.meta │ │ │ │ │ │ ├── RAM_Reserved_Graph.mat │ │ │ │ │ │ └── RAM_Reserved_Graph.mat.meta │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Prefab/ │ │ │ │ │ │ ├── Internal/ │ │ │ │ │ │ │ ├── ADVANCED - Module.prefab │ │ │ │ │ │ │ ├── ADVANCED - Module.prefab.meta │ │ │ │ │ │ │ ├── AUDIO - Module.prefab │ │ │ │ │ │ │ ├── AUDIO - Module.prefab.meta │ │ │ │ │ │ │ ├── FPS - Module.prefab │ │ │ │ │ │ │ ├── FPS - Module.prefab.meta │ │ │ │ │ │ │ ├── RAM - Module.prefab │ │ │ │ │ │ │ └── RAM - Module.prefab.meta │ │ │ │ │ │ ├── Internal.meta │ │ │ │ │ │ ├── [Graphy].prefab │ │ │ │ │ │ └── [Graphy].prefab.meta │ │ │ │ │ ├── Prefab.meta │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── Readme! - Graphy - Documentation.pdf.meta │ │ │ │ │ ├── Runtime/ │ │ │ │ │ │ ├── Advanced/ │ │ │ │ │ │ │ ├── G_AdvancedData.cs │ │ │ │ │ │ │ └── G_AdvancedData.cs.meta │ │ │ │ │ │ ├── Advanced.meta │ │ │ │ │ │ ├── Audio/ │ │ │ │ │ │ │ ├── G_AudioGraph.cs │ │ │ │ │ │ │ ├── G_AudioGraph.cs.meta │ │ │ │ │ │ │ ├── G_AudioManager.cs │ │ │ │ │ │ │ ├── G_AudioManager.cs.meta │ │ │ │ │ │ │ ├── G_AudioMonitor.cs │ │ │ │ │ │ │ ├── G_AudioMonitor.cs.meta │ │ │ │ │ │ │ ├── G_AudioText.cs │ │ │ │ │ │ │ └── G_AudioText.cs.meta │ │ │ │ │ │ ├── Audio.meta │ │ │ │ │ │ ├── Fps/ │ │ │ │ │ │ │ ├── G_FpsGraph.cs │ │ │ │ │ │ │ ├── G_FpsGraph.cs.meta │ │ │ │ │ │ │ ├── G_FpsManager.cs │ │ │ │ │ │ │ ├── G_FpsManager.cs.meta │ │ │ │ │ │ │ ├── G_FpsMonitor.cs │ │ │ │ │ │ │ ├── G_FpsMonitor.cs.meta │ │ │ │ │ │ │ ├── G_FpsText.cs │ │ │ │ │ │ │ └── G_FpsText.cs.meta │ │ │ │ │ │ ├── Fps.meta │ │ │ │ │ │ ├── Graph/ │ │ │ │ │ │ │ ├── G_Graph.cs │ │ │ │ │ │ │ └── G_Graph.cs.meta │ │ │ │ │ │ ├── Graph.meta │ │ │ │ │ │ ├── GraphyDebugger.cs │ │ │ │ │ │ ├── GraphyDebugger.cs.meta │ │ │ │ │ │ ├── GraphyManager.cs │ │ │ │ │ │ ├── GraphyManager.cs.meta │ │ │ │ │ │ ├── Ram/ │ │ │ │ │ │ │ ├── G_RamGraph.cs │ │ │ │ │ │ │ ├── G_RamGraph.cs.meta │ │ │ │ │ │ │ ├── G_RamManager.cs │ │ │ │ │ │ │ ├── G_RamManager.cs.meta │ │ │ │ │ │ │ ├── G_RamMonitor.cs │ │ │ │ │ │ │ ├── G_RamMonitor.cs.meta │ │ │ │ │ │ │ ├── G_RamText.cs │ │ │ │ │ │ │ └── G_RamText.cs.meta │ │ │ │ │ │ ├── Ram.meta │ │ │ │ │ │ ├── Shader/ │ │ │ │ │ │ │ ├── G_GraphShader.cs │ │ │ │ │ │ │ └── G_GraphShader.cs.meta │ │ │ │ │ │ ├── Shader.meta │ │ │ │ │ │ ├── Tayx.Graphy.asmdef │ │ │ │ │ │ ├── Tayx.Graphy.asmdef.meta │ │ │ │ │ │ ├── UI/ │ │ │ │ │ │ │ ├── IModifiableState.cs │ │ │ │ │ │ │ ├── IModifiableState.cs.meta │ │ │ │ │ │ │ ├── IMovable.cs │ │ │ │ │ │ │ └── IMovable.cs.meta │ │ │ │ │ │ ├── UI.meta │ │ │ │ │ │ ├── Util/ │ │ │ │ │ │ │ ├── G_ExtensionMethods.cs │ │ │ │ │ │ │ ├── G_ExtensionMethods.cs.meta │ │ │ │ │ │ │ ├── G_FloatString.cs │ │ │ │ │ │ │ ├── G_FloatString.cs.meta │ │ │ │ │ │ │ ├── G_Intstring.cs │ │ │ │ │ │ │ ├── G_Intstring.cs.meta │ │ │ │ │ │ │ ├── G_Singleton.cs │ │ │ │ │ │ │ └── G_Singleton.cs.meta │ │ │ │ │ │ └── Util.meta │ │ │ │ │ ├── Runtime.meta │ │ │ │ │ ├── Shaders/ │ │ │ │ │ │ ├── GraphMobile.shader │ │ │ │ │ │ ├── GraphMobile.shader.meta │ │ │ │ │ │ ├── GraphStandard.shader │ │ │ │ │ │ └── GraphStandard.shader.meta │ │ │ │ │ ├── Shaders.meta │ │ │ │ │ ├── Textures/ │ │ │ │ │ │ ├── 2x2_Texture.png.meta │ │ │ │ │ │ ├── Debugger_Logo_Dark.png.meta │ │ │ │ │ │ ├── Debugger_Logo_White.png.meta │ │ │ │ │ │ ├── Manager_Logo_Dark.png.meta │ │ │ │ │ │ ├── Manager_Logo_White.png.meta │ │ │ │ │ │ └── Rounded_Rect_10px.png.meta │ │ │ │ │ ├── Textures.meta │ │ │ │ │ ├── package.json │ │ │ │ │ └── package.json.meta │ │ │ │ ├── Graphy - Ultimate Stats Monitor.meta │ │ │ │ ├── LottieJsons/ │ │ │ │ │ ├── UI/ │ │ │ │ │ │ ├── Common/ │ │ │ │ │ │ │ ├── loading_animation.json │ │ │ │ │ │ │ ├── loading_animation.json.meta │ │ │ │ │ │ │ ├── no_data_found_animation.json │ │ │ │ │ │ │ └── no_data_found_animation.json.meta │ │ │ │ │ │ ├── Common.meta │ │ │ │ │ │ ├── LottiePlayerScreen/ │ │ │ │ │ │ │ ├── hamburger_menu.json │ │ │ │ │ │ │ ├── hamburger_menu.json.meta │ │ │ │ │ │ │ ├── next_track.json │ │ │ │ │ │ │ ├── next_track.json.meta │ │ │ │ │ │ │ ├── pause_play.json │ │ │ │ │ │ │ └── pause_play.json.meta │ │ │ │ │ │ ├── LottiePlayerScreen.meta │ │ │ │ │ │ ├── MainMenu/ │ │ │ │ │ │ │ ├── 3d_cubes_icon.json │ │ │ │ │ │ │ ├── 3d_cubes_icon.json.meta │ │ │ │ │ │ │ ├── explore_icon.json │ │ │ │ │ │ │ ├── explore_icon.json.meta │ │ │ │ │ │ │ ├── home_icon.json │ │ │ │ │ │ │ ├── home_icon.json.meta │ │ │ │ │ │ │ ├── video_player_icon.json │ │ │ │ │ │ │ └── video_player_icon.json.meta │ │ │ │ │ │ └── MainMenu.meta │ │ │ │ │ └── UI.meta │ │ │ │ ├── LottieJsons.meta │ │ │ │ ├── Materials/ │ │ │ │ │ ├── UIMaterial.mat │ │ │ │ │ └── UIMaterial.mat.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Prefabs/ │ │ │ │ │ ├── UI/ │ │ │ │ │ │ ├── AnimationPreview.prefab │ │ │ │ │ │ ├── AnimationPreview.prefab.meta │ │ │ │ │ │ ├── LottieAnimationsPreview.prefab │ │ │ │ │ │ └── LottieAnimationsPreview.prefab.meta │ │ │ │ │ └── UI.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── README.txt │ │ │ │ ├── README.txt.meta │ │ │ │ ├── Scenes/ │ │ │ │ │ ├── SampleScene.unity │ │ │ │ │ └── SampleScene.unity.meta │ │ │ │ ├── Scenes.meta │ │ │ │ ├── ScriptableObjects/ │ │ │ │ │ ├── LottieAnimationsArray.asset │ │ │ │ │ └── LottieAnimationsArray.asset.meta │ │ │ │ ├── ScriptableObjects.meta │ │ │ │ ├── Scripts/ │ │ │ │ │ ├── Editor/ │ │ │ │ │ │ ├── LottiePlugin.Sample.SceneUI.Editor.asmdef │ │ │ │ │ │ ├── LottiePlugin.Sample.SceneUI.Editor.asmdef.meta │ │ │ │ │ │ ├── src/ │ │ │ │ │ │ │ ├── PopulateLottieAnimations.cs │ │ │ │ │ │ │ ├── PopulateLottieAnimations.cs.meta │ │ │ │ │ │ │ ├── StreamingAssetsChecker.cs │ │ │ │ │ │ │ └── StreamingAssetsChecker.cs.meta │ │ │ │ │ │ └── src.meta │ │ │ │ │ ├── Editor.meta │ │ │ │ │ ├── Runtime/ │ │ │ │ │ │ ├── LottiePlugin.Sample.SceneUI.Runtime.asmdef │ │ │ │ │ │ ├── LottiePlugin.Sample.SceneUI.Runtime.asmdef.meta │ │ │ │ │ │ ├── src/ │ │ │ │ │ │ │ ├── Data/ │ │ │ │ │ │ │ │ ├── LottieAnimations.cs │ │ │ │ │ │ │ │ └── LottieAnimations.cs.meta │ │ │ │ │ │ │ ├── Data.meta │ │ │ │ │ │ │ ├── State/ │ │ │ │ │ │ │ │ ├── AppState.cs │ │ │ │ │ │ │ │ └── AppState.cs.meta │ │ │ │ │ │ │ ├── State.meta │ │ │ │ │ │ │ ├── Storage/ │ │ │ │ │ │ │ │ ├── CanNotFindStickerPackException.cs │ │ │ │ │ │ │ │ ├── CanNotFindStickerPackException.cs.meta │ │ │ │ │ │ │ │ ├── TelegramStickerStorage.cs │ │ │ │ │ │ │ │ └── TelegramStickerStorage.cs.meta │ │ │ │ │ │ │ ├── Storage.meta │ │ │ │ │ │ │ ├── UI/ │ │ │ │ │ │ │ │ ├── AnimationPreview.cs │ │ │ │ │ │ │ │ ├── AnimationPreview.cs.meta │ │ │ │ │ │ │ │ ├── AnimationsHomeScreen.cs │ │ │ │ │ │ │ │ ├── AnimationsHomeScreen.cs.meta │ │ │ │ │ │ │ │ ├── ExploreTelegramStickers.cs │ │ │ │ │ │ │ │ ├── ExploreTelegramStickers.cs.meta │ │ │ │ │ │ │ │ ├── LottieAnimationsPreview.cs │ │ │ │ │ │ │ │ ├── LottieAnimationsPreview.cs.meta │ │ │ │ │ │ │ │ ├── LottiePlayerScreen.cs │ │ │ │ │ │ │ │ ├── LottiePlayerScreen.cs.meta │ │ │ │ │ │ │ │ ├── MainMenu.cs │ │ │ │ │ │ │ │ └── MainMenu.cs.meta │ │ │ │ │ │ │ └── UI.meta │ │ │ │ │ │ └── src.meta │ │ │ │ │ └── Runtime.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Shaders/ │ │ │ │ │ ├── UI-Default.shader │ │ │ │ │ ├── UI-Default.shader.meta │ │ │ │ │ ├── Unlit - Premultiplied Colored (TextureClip).shader │ │ │ │ │ ├── Unlit - Premultiplied Colored (TextureClip).shader.meta │ │ │ │ │ ├── Unlit - Premultiplied Colored 1.shader │ │ │ │ │ ├── Unlit - Premultiplied Colored 1.shader.meta │ │ │ │ │ ├── Unlit - Premultiplied Colored 2.shader │ │ │ │ │ ├── Unlit - Premultiplied Colored 2.shader.meta │ │ │ │ │ ├── Unlit - Premultiplied Colored 3.shader │ │ │ │ │ ├── Unlit - Premultiplied Colored 3.shader.meta │ │ │ │ │ ├── Unlit - Premultiplied Colored.shader │ │ │ │ │ ├── Unlit - Premultiplied Colored.shader.meta │ │ │ │ │ ├── Unlit - Text (TextureClip).shader │ │ │ │ │ ├── Unlit - Text (TextureClip).shader.meta │ │ │ │ │ ├── Unlit - Text 1.shader │ │ │ │ │ ├── Unlit - Text 1.shader.meta │ │ │ │ │ ├── Unlit - Text 2.shader │ │ │ │ │ ├── Unlit - Text 2.shader.meta │ │ │ │ │ ├── Unlit - Text 3.shader │ │ │ │ │ ├── Unlit - Text 3.shader.meta │ │ │ │ │ ├── Unlit - Text.shader │ │ │ │ │ ├── Unlit - Text.shader.meta │ │ │ │ │ ├── Unlit - Transparent Colored (Packed) (TextureClip).shader │ │ │ │ │ ├── Unlit - Transparent Colored (Packed) (TextureClip).shader.meta │ │ │ │ │ ├── Unlit - Transparent Colored (TextureClip).shader │ │ │ │ │ ├── Unlit - Transparent Colored (TextureClip).shader.meta │ │ │ │ │ ├── Unlit - Transparent Colored 1.shader │ │ │ │ │ ├── Unlit - Transparent Colored 1.shader.meta │ │ │ │ │ ├── Unlit - Transparent Colored 2.shader │ │ │ │ │ ├── Unlit - Transparent Colored 2.shader.meta │ │ │ │ │ ├── Unlit - Transparent Colored 3.shader │ │ │ │ │ ├── Unlit - Transparent Colored 3.shader.meta │ │ │ │ │ ├── Unlit - Transparent Colored.shader │ │ │ │ │ ├── Unlit - Transparent Colored.shader.meta │ │ │ │ │ ├── Unlit - Transparent Masked 1.shader │ │ │ │ │ ├── Unlit - Transparent Masked 1.shader.meta │ │ │ │ │ ├── Unlit - Transparent Masked 2.shader │ │ │ │ │ ├── Unlit - Transparent Masked 2.shader.meta │ │ │ │ │ ├── Unlit - Transparent Masked 3.shader │ │ │ │ │ ├── Unlit - Transparent Masked 3.shader.meta │ │ │ │ │ ├── Unlit - Transparent Masked.shader │ │ │ │ │ ├── Unlit - Transparent Masked.shader.meta │ │ │ │ │ ├── Unlit - Transparent Packed 1.shader │ │ │ │ │ ├── Unlit - Transparent Packed 1.shader.meta │ │ │ │ │ ├── Unlit - Transparent Packed 2.shader │ │ │ │ │ ├── Unlit - Transparent Packed 2.shader.meta │ │ │ │ │ ├── Unlit - Transparent Packed 3.shader │ │ │ │ │ ├── Unlit - Transparent Packed 3.shader.meta │ │ │ │ │ ├── Unlit - Transparent Packed.shader │ │ │ │ │ └── Unlit - Transparent Packed.shader.meta │ │ │ │ ├── Shaders.meta │ │ │ │ ├── StreamingAssets/ │ │ │ │ │ ├── LottieSamples/ │ │ │ │ │ │ ├── alright_sticker.json │ │ │ │ │ │ ├── alright_sticker.json.meta │ │ │ │ │ │ ├── black_friday_animation.json │ │ │ │ │ │ ├── black_friday_animation.json.meta │ │ │ │ │ │ ├── body_movin.json │ │ │ │ │ │ ├── body_movin.json.meta │ │ │ │ │ │ ├── butterfly_loading.json │ │ │ │ │ │ ├── butterfly_loading.json.meta │ │ │ │ │ │ ├── check_animation.json │ │ │ │ │ │ ├── check_animation.json.meta │ │ │ │ │ │ ├── concept_floral_branch_butterfly_and_tree.json │ │ │ │ │ │ ├── concept_floral_branch_butterfly_and_tree.json.meta │ │ │ │ │ │ ├── confetti.json │ │ │ │ │ │ ├── confetti.json.meta │ │ │ │ │ │ ├── favourite_app_icon.json │ │ │ │ │ │ ├── favourite_app_icon.json.meta │ │ │ │ │ │ ├── glow_loading.json │ │ │ │ │ │ ├── glow_loading.json.meta │ │ │ │ │ │ ├── hamburger_arrow_transition.json │ │ │ │ │ │ ├── hamburger_arrow_transition.json.meta │ │ │ │ │ │ ├── hubit.json │ │ │ │ │ │ ├── hubit.json.meta │ │ │ │ │ │ ├── lottiefiles_sticker_2.json │ │ │ │ │ │ ├── lottiefiles_sticker_2.json.meta │ │ │ │ │ │ ├── lottiefiles_sticker_5.json │ │ │ │ │ │ ├── lottiefiles_sticker_5.json.meta │ │ │ │ │ │ ├── marketing.json │ │ │ │ │ │ ├── marketing.json.meta │ │ │ │ │ │ ├── motorcycle.json │ │ │ │ │ │ ├── motorcycle.json.meta │ │ │ │ │ │ ├── phone.json │ │ │ │ │ │ ├── phone.json.meta │ │ │ │ │ │ ├── power_sticker.json │ │ │ │ │ │ ├── power_sticker.json.meta │ │ │ │ │ │ ├── preloader.json │ │ │ │ │ │ ├── preloader.json.meta │ │ │ │ │ │ ├── squid_game/ │ │ │ │ │ │ │ ├── 0.json │ │ │ │ │ │ │ ├── 0.json.meta │ │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ │ ├── 1.json.meta │ │ │ │ │ │ │ ├── 10.json │ │ │ │ │ │ │ ├── 10.json.meta │ │ │ │ │ │ │ ├── 11.json │ │ │ │ │ │ │ ├── 11.json.meta │ │ │ │ │ │ │ ├── 12.json │ │ │ │ │ │ │ ├── 12.json.meta │ │ │ │ │ │ │ ├── 13.json │ │ │ │ │ │ │ ├── 13.json.meta │ │ │ │ │ │ │ ├── 14.json │ │ │ │ │ │ │ ├── 14.json.meta │ │ │ │ │ │ │ ├── 15.json │ │ │ │ │ │ │ ├── 15.json.meta │ │ │ │ │ │ │ ├── 16.json │ │ │ │ │ │ │ ├── 16.json.meta │ │ │ │ │ │ │ ├── 17.json │ │ │ │ │ │ │ ├── 17.json.meta │ │ │ │ │ │ │ ├── 18.json │ │ │ │ │ │ │ ├── 18.json.meta │ │ │ │ │ │ │ ├── 19.json │ │ │ │ │ │ │ ├── 19.json.meta │ │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ │ ├── 2.json.meta │ │ │ │ │ │ │ ├── 20.json │ │ │ │ │ │ │ ├── 20.json.meta │ │ │ │ │ │ │ ├── 21.json │ │ │ │ │ │ │ ├── 21.json.meta │ │ │ │ │ │ │ ├── 22.json │ │ │ │ │ │ │ ├── 22.json.meta │ │ │ │ │ │ │ ├── 23.json │ │ │ │ │ │ │ ├── 23.json.meta │ │ │ │ │ │ │ ├── 24.json │ │ │ │ │ │ │ ├── 24.json.meta │ │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ │ ├── 3.json.meta │ │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ │ ├── 4.json.meta │ │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ │ ├── 5.json.meta │ │ │ │ │ │ │ ├── 6.json │ │ │ │ │ │ │ ├── 6.json.meta │ │ │ │ │ │ │ ├── 7.json │ │ │ │ │ │ │ ├── 7.json.meta │ │ │ │ │ │ │ ├── 8.json │ │ │ │ │ │ │ ├── 8.json.meta │ │ │ │ │ │ │ ├── 9.json │ │ │ │ │ │ │ └── 9.json.meta │ │ │ │ │ │ ├── squid_game.meta │ │ │ │ │ │ ├── sticker.json │ │ │ │ │ │ ├── sticker.json.meta │ │ │ │ │ │ ├── taking_the_duggy_out.json │ │ │ │ │ │ └── taking_the_duggy_out.json.meta │ │ │ │ │ └── LottieSamples.meta │ │ │ │ └── StreamingAssets.meta │ │ │ └── SceneUI.meta │ │ ├── Tests/ │ │ │ ├── Audio/ │ │ │ │ ├── pause.mp3.meta │ │ │ │ ├── start.mp3.meta │ │ │ │ └── stop.mp3.meta │ │ │ ├── Audio.meta │ │ │ ├── Resources/ │ │ │ │ ├── body_movin.json │ │ │ │ ├── body_movin.json.meta │ │ │ │ ├── video_player_icon.json │ │ │ │ └── video_player_icon.json.meta │ │ │ ├── Resources.meta │ │ │ ├── Runtime/ │ │ │ │ ├── LottiePlugin.Tests.Runtime.asmdef │ │ │ │ ├── LottiePlugin.Tests.Runtime.asmdef.meta │ │ │ │ ├── src/ │ │ │ │ │ ├── AnimatedImageTests.cs │ │ │ │ │ └── AnimatedImageTests.cs.meta │ │ │ │ └── src.meta │ │ │ └── Runtime.meta │ │ ├── Tests.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── LottiePlugin.meta │ ├── Scenes/ │ │ ├── Main.unity │ │ └── Main.unity.meta │ ├── Scenes.meta │ ├── StreamingAssets/ │ │ ├── LottieSamples/ │ │ │ ├── alright_sticker.json │ │ │ ├── alright_sticker.json.meta │ │ │ ├── black_friday_animation.json │ │ │ ├── black_friday_animation.json.meta │ │ │ ├── body_movin.json │ │ │ ├── body_movin.json.meta │ │ │ ├── butterfly_loading.json │ │ │ ├── butterfly_loading.json.meta │ │ │ ├── check_animation.json │ │ │ ├── check_animation.json.meta │ │ │ ├── concept_floral_branch_butterfly_and_tree.json │ │ │ ├── concept_floral_branch_butterfly_and_tree.json.meta │ │ │ ├── confetti.json │ │ │ ├── confetti.json.meta │ │ │ ├── favourite_app_icon.json │ │ │ ├── favourite_app_icon.json.meta │ │ │ ├── glow_loading.json │ │ │ ├── glow_loading.json.meta │ │ │ ├── hamburger_arrow_transition.json │ │ │ ├── hamburger_arrow_transition.json.meta │ │ │ ├── hubit.json │ │ │ ├── hubit.json.meta │ │ │ ├── lottiefiles_sticker_2.json │ │ │ ├── lottiefiles_sticker_2.json.meta │ │ │ ├── lottiefiles_sticker_5.json │ │ │ ├── lottiefiles_sticker_5.json.meta │ │ │ ├── marketing.json │ │ │ ├── marketing.json.meta │ │ │ ├── motorcycle.json │ │ │ ├── motorcycle.json.meta │ │ │ ├── phone.json │ │ │ ├── phone.json.meta │ │ │ ├── power_sticker.json │ │ │ ├── power_sticker.json.meta │ │ │ ├── preloader.json │ │ │ ├── preloader.json.meta │ │ │ ├── squid_game/ │ │ │ │ ├── 0.json │ │ │ │ ├── 0.json.meta │ │ │ │ ├── 1.json │ │ │ │ ├── 1.json.meta │ │ │ │ ├── 10.json │ │ │ │ ├── 10.json.meta │ │ │ │ ├── 11.json │ │ │ │ ├── 11.json.meta │ │ │ │ ├── 12.json │ │ │ │ ├── 12.json.meta │ │ │ │ ├── 13.json │ │ │ │ ├── 13.json.meta │ │ │ │ ├── 14.json │ │ │ │ ├── 14.json.meta │ │ │ │ ├── 15.json │ │ │ │ ├── 15.json.meta │ │ │ │ ├── 16.json │ │ │ │ ├── 16.json.meta │ │ │ │ ├── 17.json │ │ │ │ ├── 17.json.meta │ │ │ │ ├── 18.json │ │ │ │ ├── 18.json.meta │ │ │ │ ├── 19.json │ │ │ │ ├── 19.json.meta │ │ │ │ ├── 2.json │ │ │ │ ├── 2.json.meta │ │ │ │ ├── 20.json │ │ │ │ ├── 20.json.meta │ │ │ │ ├── 21.json │ │ │ │ ├── 21.json.meta │ │ │ │ ├── 22.json │ │ │ │ ├── 22.json.meta │ │ │ │ ├── 23.json │ │ │ │ ├── 23.json.meta │ │ │ │ ├── 24.json │ │ │ │ ├── 24.json.meta │ │ │ │ ├── 3.json │ │ │ │ ├── 3.json.meta │ │ │ │ ├── 4.json │ │ │ │ ├── 4.json.meta │ │ │ │ ├── 5.json │ │ │ │ ├── 5.json.meta │ │ │ │ ├── 6.json │ │ │ │ ├── 6.json.meta │ │ │ │ ├── 7.json │ │ │ │ ├── 7.json.meta │ │ │ │ ├── 8.json │ │ │ │ ├── 8.json.meta │ │ │ │ ├── 9.json │ │ │ │ └── 9.json.meta │ │ │ ├── squid_game.meta │ │ │ ├── sticker.json │ │ │ ├── sticker.json.meta │ │ │ ├── taking_the_duggy_out.json │ │ │ └── taking_the_duggy_out.json.meta │ │ └── LottieSamples.meta │ ├── StreamingAssets.meta │ ├── TextMesh Pro/ │ │ ├── Documentation/ │ │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ │ ├── Documentation.meta │ │ ├── Fonts/ │ │ │ ├── LiberationSans - OFL.txt │ │ │ ├── LiberationSans - OFL.txt.meta │ │ │ └── LiberationSans.ttf.meta │ │ ├── Fonts.meta │ │ ├── Resources/ │ │ │ ├── Fonts & Materials/ │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ │ ├── LiberationSans SDF.asset │ │ │ │ └── LiberationSans SDF.asset.meta │ │ │ ├── Fonts & Materials.meta │ │ │ ├── LineBreaking Following Characters.txt │ │ │ ├── LineBreaking Following Characters.txt.meta │ │ │ ├── LineBreaking Leading Characters.txt │ │ │ ├── LineBreaking Leading Characters.txt.meta │ │ │ ├── Sprite Assets/ │ │ │ │ ├── EmojiOne.asset │ │ │ │ └── EmojiOne.asset.meta │ │ │ ├── Sprite Assets.meta │ │ │ ├── Style Sheets/ │ │ │ │ ├── Default Style Sheet.asset │ │ │ │ └── Default Style Sheet.asset.meta │ │ │ ├── Style Sheets.meta │ │ │ ├── TMP Settings.asset │ │ │ └── TMP Settings.asset.meta │ │ ├── Resources.meta │ │ ├── Shaders/ │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ │ ├── TMP_Bitmap-Mobile.shader │ │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ │ ├── TMP_Bitmap.shader │ │ │ ├── TMP_Bitmap.shader.meta │ │ │ ├── TMP_SDF Overlay.shader │ │ │ ├── TMP_SDF Overlay.shader.meta │ │ │ ├── TMP_SDF SSD.shader │ │ │ ├── TMP_SDF SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile Masking.shader │ │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ │ ├── TMP_SDF-Mobile SSD.shader │ │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile.shader │ │ │ ├── TMP_SDF-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface.shader │ │ │ ├── TMP_SDF-Surface.shader.meta │ │ │ ├── TMP_SDF.shader │ │ │ ├── TMP_SDF.shader.meta │ │ │ ├── TMP_Sprite.shader │ │ │ ├── TMP_Sprite.shader.meta │ │ │ ├── TMPro.cginc │ │ │ ├── TMPro.cginc.meta │ │ │ ├── TMPro_Mobile.cginc │ │ │ ├── TMPro_Mobile.cginc.meta │ │ │ ├── TMPro_Properties.cginc │ │ │ ├── TMPro_Properties.cginc.meta │ │ │ ├── TMPro_Surface.cginc │ │ │ └── TMPro_Surface.cginc.meta │ │ ├── Shaders.meta │ │ ├── Sprites/ │ │ │ ├── EmojiOne Attribution.txt │ │ │ ├── EmojiOne Attribution.txt.meta │ │ │ ├── EmojiOne.json │ │ │ ├── EmojiOne.json.meta │ │ │ └── EmojiOne.png.meta │ │ └── Sprites.meta │ └── TextMesh Pro.meta ├── Packages/ │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings/ │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── XRSettings.asset └── UserSettings/ ├── AndroidLogcatSettings.asset ├── EditorUserSettings.asset ├── Search.index └── Search.settings