├── .gitattributes
├── .gitignore
├── README.md
├── images
└── walkthrough.gif
└── src
├── Walkthrough.sln
└── Walkthrough
├── Walkthrough.Android
├── Assets
│ ├── AboutAssets.txt
│ ├── acrobatics.json
│ ├── biking_is_cool.json
│ ├── bikingishard.json
│ └── so_excited.json
├── MainActivity.cs
├── Properties
│ ├── AndroidManifest.xml
│ └── AssemblyInfo.cs
├── Resources
│ ├── AboutResources.txt
│ ├── Resource.designer.cs
│ ├── layout
│ │ ├── Tabbar.axml
│ │ └── Toolbar.axml
│ ├── mipmap-anydpi-v26
│ │ ├── icon.xml
│ │ └── icon_round.xml
│ ├── mipmap-hdpi
│ │ ├── Icon.png
│ │ └── launcher_foreground.png
│ ├── mipmap-mdpi
│ │ ├── icon.png
│ │ └── launcher_foreground.png
│ ├── mipmap-xhdpi
│ │ ├── Icon.png
│ │ └── launcher_foreground.png
│ ├── mipmap-xxhdpi
│ │ ├── Icon.png
│ │ └── launcher_foreground.png
│ ├── mipmap-xxxhdpi
│ │ ├── Icon.png
│ │ └── launcher_foreground.png
│ └── values
│ │ ├── colors.xml
│ │ └── styles.xml
└── Walkthrough.Android.csproj
├── Walkthrough.iOS
├── AppDelegate.cs
├── Assets.xcassets
│ └── AppIcon.appiconset
│ │ ├── Contents.json
│ │ ├── Icon120.png
│ │ ├── Icon152.png
│ │ ├── Icon167.png
│ │ ├── Icon180.png
│ │ ├── Icon20.png
│ │ ├── Icon29.png
│ │ ├── Icon40.png
│ │ ├── Icon58.png
│ │ ├── Icon60.png
│ │ ├── Icon76.png
│ │ ├── Icon80.png
│ │ └── Icon87.png
├── Entitlements.plist
├── Info.plist
├── Main.cs
├── Properties
│ └── AssemblyInfo.cs
├── Resources
│ ├── Default-568h@2x.png
│ ├── Default-Portrait.png
│ ├── Default-Portrait@2x.png
│ ├── Default.png
│ ├── Default@2x.png
│ ├── LaunchScreen.storyboard
│ ├── acrobatics.json
│ ├── biking_is_cool.json
│ ├── bikingishard.json
│ └── so_excited.json
└── Walkthrough.iOS.csproj
└── Walkthrough
├── App.xaml
├── App.xaml.cs
├── Views
└── Walkthrough
│ ├── AcrobaticsView.xaml
│ ├── AcrobaticsView.xaml.cs
│ ├── BikingCoolView.xaml
│ ├── BikingCoolView.xaml.cs
│ ├── BikingHardView.xaml
│ ├── BikingHardView.xaml.cs
│ ├── IAnimatedView.cs
│ ├── SoExcitedView.xaml
│ ├── SoExcitedView.xaml.cs
│ ├── WalkthroughView.xaml
│ └── WalkthroughView.xaml.cs
└── Walkthrough.csproj
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
4 | # Custom for Visual Studio
5 | *.cs diff=csharp
6 |
7 | # Standard to msysgit
8 | *.doc diff=astextplain
9 | *.DOC diff=astextplain
10 | *.docx diff=astextplain
11 | *.DOCX diff=astextplain
12 | *.dot diff=astextplain
13 | *.DOT diff=astextplain
14 | *.pdf diff=astextplain
15 | *.PDF diff=astextplain
16 | *.rtf diff=astextplain
17 | *.RTF diff=astextplain
18 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | ## Ignore Visual Studio temporary files, build results, and
2 | ## files generated by popular Visual Studio add-ons.
3 |
4 | # User-specific files
5 | *.suo
6 | *.user
7 | *.userosscache
8 | *.sln.docstates
9 |
10 | # User-specific files (MonoDevelop/Xamarin Studio)
11 | *.userprefs
12 |
13 | # Build results
14 | [Dd]ebug/
15 | [Dd]ebugPublic/
16 | [Rr]elease/
17 | [Rr]eleases/
18 | x64/
19 | x86/
20 | bld/
21 | [Bb]in/
22 | [Oo]bj/
23 | [Ll]og/
24 |
25 | # Visual Studio 2015 cache/options directory
26 | .vs/
27 | # Uncomment if you have tasks that create the project's static files in wwwroot
28 | #wwwroot/
29 |
30 | # MSTest test Results
31 | [Tt]est[Rr]esult*/
32 | [Bb]uild[Ll]og.*
33 |
34 | # NUNIT
35 | *.VisualState.xml
36 | TestResult.xml
37 |
38 | # Build Results of an ATL Project
39 | [Dd]ebugPS/
40 | [Rr]eleasePS/
41 | dlldata.c
42 |
43 | # DNX
44 | project.lock.json
45 | artifacts/
46 |
47 | *_i.c
48 | *_p.c
49 | *_i.h
50 | *.ilk
51 | *.meta
52 | *.obj
53 | *.pch
54 | *.pdb
55 | *.pgc
56 | *.pgd
57 | *.rsp
58 | *.sbr
59 | *.tlb
60 | *.tli
61 | *.tlh
62 | *.tmp
63 | *.tmp_proj
64 | *.log
65 | *.vspscc
66 | *.vssscc
67 | .builds
68 | *.pidb
69 | *.svclog
70 | *.scc
71 |
72 | # Chutzpah Test files
73 | _Chutzpah*
74 |
75 | # Visual C++ cache files
76 | ipch/
77 | *.aps
78 | *.ncb
79 | *.opendb
80 | *.opensdf
81 | *.sdf
82 | *.cachefile
83 | *.VC.db
84 | *.VC.VC.opendb
85 |
86 | # Visual Studio profiler
87 | *.psess
88 | *.vsp
89 | *.vspx
90 | *.sap
91 |
92 | # TFS 2012 Local Workspace
93 | $tf/
94 |
95 | # Guidance Automation Toolkit
96 | *.gpState
97 |
98 | # ReSharper is a .NET coding add-in
99 | _ReSharper*/
100 | *.[Rr]e[Ss]harper
101 | *.DotSettings.user
102 |
103 | # JustCode is a .NET coding add-in
104 | .JustCode
105 |
106 | # TeamCity is a build add-in
107 | _TeamCity*
108 |
109 | # DotCover is a Code Coverage Tool
110 | *.dotCover
111 |
112 | # NCrunch
113 | _NCrunch_*
114 | .*crunch*.local.xml
115 | nCrunchTemp_*
116 |
117 | # MightyMoose
118 | *.mm.*
119 | AutoTest.Net/
120 |
121 | # Web workbench (sass)
122 | .sass-cache/
123 |
124 | # Installshield output folder
125 | [Ee]xpress/
126 |
127 | # DocProject is a documentation generator add-in
128 | DocProject/buildhelp/
129 | DocProject/Help/*.HxT
130 | DocProject/Help/*.HxC
131 | DocProject/Help/*.hhc
132 | DocProject/Help/*.hhk
133 | DocProject/Help/*.hhp
134 | DocProject/Help/Html2
135 | DocProject/Help/html
136 |
137 | # Click-Once directory
138 | publish/
139 |
140 | # Publish Web Output
141 | *.[Pp]ublish.xml
142 | *.azurePubxml
143 | # TODO: Comment the next line if you want to checkin your web deploy settings
144 | # but database connection strings (with potential passwords) will be unencrypted
145 | *.pubxml
146 | *.publishproj
147 |
148 | # Microsoft Azure Web App publish settings. Comment the next line if you want to
149 | # checkin your Azure Web App publish settings, but sensitive information contained
150 | # in these scripts will be unencrypted
151 | PublishScripts/
152 |
153 | # NuGet Packages
154 | *.nupkg
155 | # The packages folder can be ignored because of Package Restore
156 | **/packages/*
157 | # except build/, which is used as an MSBuild target.
158 | !**/packages/build/
159 | # Uncomment if necessary however generally it will be regenerated when needed
160 | #!**/packages/repositories.config
161 | # NuGet v3's project.json files produces more ignoreable files
162 | *.nuget.props
163 | *.nuget.targets
164 |
165 | # Microsoft Azure Build Output
166 | csx/
167 | *.build.csdef
168 |
169 | # Microsoft Azure Emulator
170 | ecf/
171 | rcf/
172 |
173 | # Windows Store app package directories and files
174 | AppPackages/
175 | BundleArtifacts/
176 | Package.StoreAssociation.xml
177 | _pkginfo.txt
178 |
179 | # Visual Studio cache files
180 | # files ending in .cache can be ignored
181 | *.[Cc]ache
182 | # but keep track of directories ending in .cache
183 | !*.[Cc]ache/
184 |
185 | # Others
186 | ClientBin/
187 | ~$*
188 | *~
189 | *.dbmdl
190 | *.dbproj.schemaview
191 | *.pfx
192 | *.publishsettings
193 | node_modules/
194 | orleans.codegen.cs
195 |
196 | # Since there are multiple workflows, uncomment next line to ignore bower_components
197 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
198 | #bower_components/
199 |
200 | # RIA/Silverlight projects
201 | Generated_Code/
202 |
203 | # Backup & report files from converting an old project file
204 | # to a newer Visual Studio version. Backup files are not needed,
205 | # because we have git ;-)
206 | _UpgradeReport_Files/
207 | Backup*/
208 | UpgradeLog*.XML
209 | UpgradeLog*.htm
210 |
211 | # SQL Server files
212 | *.mdf
213 | *.ldf
214 |
215 | # Business Intelligence projects
216 | *.rdl.data
217 | *.bim.layout
218 | *.bim_*.settings
219 |
220 | # Microsoft Fakes
221 | FakesAssemblies/
222 |
223 | # GhostDoc plugin setting file
224 | *.GhostDoc.xml
225 |
226 | # Node.js Tools for Visual Studio
227 | .ntvs_analysis.dat
228 |
229 | # Visual Studio 6 build log
230 | *.plg
231 |
232 | # Visual Studio 6 workspace options file
233 | *.opt
234 |
235 | # Visual Studio LightSwitch build output
236 | **/*.HTMLClient/GeneratedArtifacts
237 | **/*.DesktopClient/GeneratedArtifacts
238 | **/*.DesktopClient/ModelManifest.xml
239 | **/*.Server/GeneratedArtifacts
240 | **/*.Server/ModelManifest.xml
241 | _Pvt_Extensions
242 |
243 | # Paket dependency manager
244 | .paket/paket.exe
245 | paket-files/
246 |
247 | # FAKE - F# Make
248 | .fake/
249 |
250 | # JetBrains Rider
251 | .idea/
252 | *.sln.iml
253 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Xamarin.Forms Mobile App Walkthrough Sample
2 |
3 | **WalkthroughApp** is a Xamarin.Forms application that makes use [CarouselView](https://openweathermap.org/api) and [Lottie](https://github.com/martijn00/LottieXamarin), to demonstrate the possibilities of creating a fluid and powerful **Walkthrough** without requiere Custom Renderers.
4 |
5 |
6 |
7 | ### Supported platforms:
8 |
9 | - Android
10 | - iOS
11 |
12 | This project uses some third-party assets with a license that requires attribution:
13 |
14 | - [Yue XI](https://www.lottiefiles.com/u/1724) resources from LottieFiles.
15 |
16 |
17 | ## Xamarin.Forms App
18 |
19 | [Xamarin.Forms](https://www.xamarin.com/forms) allows you to build native UIs for iOS, Android, Windows, macOS and Linux from a single, shared codebase. You can dive into mobile development with Xamarin.Forms by following our [free self-guided learning](https://university.xamarin.com/classes/track/self-guided) from Xamarin University. This project exercises the following patterns and features:
20 |
21 | * Xamarin.Forms
22 | * [XAML UI](https://developer.xamarin.com/guides/xamarin-forms/xaml/xaml-basics/)
23 | * [Data Binding](https://developer.xamarin.com/guides/xamarin-forms/xaml/xaml-basics/data_binding_basics/)
24 | * [MVVM](https://developer.xamarin.com/guides/xamarin-forms/xaml/xaml-basics/data_bindings_to_mvvm/)
25 | * [Styles](https://developer.xamarin.com/guides/xamarin-forms/user-interface/styles/)
26 | * [CarouselView](https://github.com/alexrainman/CarouselView)
27 | * [Lottie](https://github.com/martijn00/LottieXamarin)
28 | * [Animations](https://github.com/jsuarezruiz/Xamanimation)
29 |
30 | ## Copyright and license
31 |
32 | Code released under the [MIT license](https://opensource.org/licenses/MIT).
--------------------------------------------------------------------------------
/images/walkthrough.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/images/walkthrough.gif
--------------------------------------------------------------------------------
/src/Walkthrough.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 15
4 | VisualStudioVersion = 15.0.27428.2015
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Walkthrough", "Walkthrough\Walkthrough\Walkthrough.csproj", "{53BA091C-45D6-4706-98A1-19D496AB2AF9}"
7 | EndProject
8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Walkthrough.Android", "Walkthrough\Walkthrough.Android\Walkthrough.Android.csproj", "{929EE228-06F0-4E20-9997-C69945F16C5F}"
9 | EndProject
10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Walkthrough.iOS", "Walkthrough\Walkthrough.iOS\Walkthrough.iOS.csproj", "{C4129FBD-0712-47BA-B580-327427793F8F}"
11 | EndProject
12 | Global
13 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
14 | Ad-Hoc|Any CPU = Ad-Hoc|Any CPU
15 | Ad-Hoc|ARM = Ad-Hoc|ARM
16 | Ad-Hoc|iPhone = Ad-Hoc|iPhone
17 | Ad-Hoc|iPhoneSimulator = Ad-Hoc|iPhoneSimulator
18 | Ad-Hoc|x64 = Ad-Hoc|x64
19 | Ad-Hoc|x86 = Ad-Hoc|x86
20 | AppStore|Any CPU = AppStore|Any CPU
21 | AppStore|ARM = AppStore|ARM
22 | AppStore|iPhone = AppStore|iPhone
23 | AppStore|iPhoneSimulator = AppStore|iPhoneSimulator
24 | AppStore|x64 = AppStore|x64
25 | AppStore|x86 = AppStore|x86
26 | Debug|Any CPU = Debug|Any CPU
27 | Debug|ARM = Debug|ARM
28 | Debug|iPhone = Debug|iPhone
29 | Debug|iPhoneSimulator = Debug|iPhoneSimulator
30 | Debug|x64 = Debug|x64
31 | Debug|x86 = Debug|x86
32 | Release|Any CPU = Release|Any CPU
33 | Release|ARM = Release|ARM
34 | Release|iPhone = Release|iPhone
35 | Release|iPhoneSimulator = Release|iPhoneSimulator
36 | Release|x64 = Release|x64
37 | Release|x86 = Release|x86
38 | EndGlobalSection
39 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
40 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|Any CPU.ActiveCfg = Debug|Any CPU
41 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|Any CPU.Build.0 = Debug|Any CPU
42 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|Any CPU.Deploy.0 = Debug|Any CPU
43 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU
44 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|ARM.Build.0 = Debug|Any CPU
45 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|ARM.Deploy.0 = Debug|Any CPU
46 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
47 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
48 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|iPhone.Deploy.0 = Debug|Any CPU
49 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Debug|Any CPU
50 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|iPhoneSimulator.Build.0 = Debug|Any CPU
51 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Debug|Any CPU
52 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
53 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|x64.Build.0 = Debug|Any CPU
54 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|x64.Deploy.0 = Debug|Any CPU
55 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|x86.ActiveCfg = Debug|Any CPU
56 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|x86.Build.0 = Debug|Any CPU
57 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Ad-Hoc|x86.Deploy.0 = Debug|Any CPU
58 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|Any CPU.ActiveCfg = Debug|Any CPU
59 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|Any CPU.Build.0 = Debug|Any CPU
60 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|Any CPU.Deploy.0 = Debug|Any CPU
61 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|ARM.ActiveCfg = Debug|Any CPU
62 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|ARM.Build.0 = Debug|Any CPU
63 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|ARM.Deploy.0 = Debug|Any CPU
64 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
65 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|iPhone.Build.0 = Debug|Any CPU
66 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|iPhone.Deploy.0 = Debug|Any CPU
67 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU
68 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|iPhoneSimulator.Build.0 = Debug|Any CPU
69 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|iPhoneSimulator.Deploy.0 = Debug|Any CPU
70 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|x64.ActiveCfg = Debug|Any CPU
71 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|x64.Build.0 = Debug|Any CPU
72 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|x64.Deploy.0 = Debug|Any CPU
73 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|x86.ActiveCfg = Debug|Any CPU
74 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|x86.Build.0 = Debug|Any CPU
75 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.AppStore|x86.Deploy.0 = Debug|Any CPU
76 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
77 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|Any CPU.Build.0 = Debug|Any CPU
78 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
79 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|ARM.ActiveCfg = Debug|Any CPU
80 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|ARM.Build.0 = Debug|Any CPU
81 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|ARM.Deploy.0 = Debug|Any CPU
82 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|iPhone.ActiveCfg = Debug|Any CPU
83 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|iPhone.Build.0 = Debug|Any CPU
84 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|iPhone.Deploy.0 = Debug|Any CPU
85 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
86 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
87 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
88 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|x64.ActiveCfg = Debug|Any CPU
89 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|x64.Build.0 = Debug|Any CPU
90 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|x64.Deploy.0 = Debug|Any CPU
91 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|x86.ActiveCfg = Debug|Any CPU
92 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|x86.Build.0 = Debug|Any CPU
93 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Debug|x86.Deploy.0 = Debug|Any CPU
94 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|Any CPU.ActiveCfg = Release|Any CPU
95 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|Any CPU.Build.0 = Release|Any CPU
96 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|Any CPU.Deploy.0 = Release|Any CPU
97 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|ARM.ActiveCfg = Release|Any CPU
98 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|ARM.Build.0 = Release|Any CPU
99 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|ARM.Deploy.0 = Release|Any CPU
100 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|iPhone.ActiveCfg = Release|Any CPU
101 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|iPhone.Build.0 = Release|Any CPU
102 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|iPhone.Deploy.0 = Release|Any CPU
103 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
104 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
105 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
106 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|x64.ActiveCfg = Release|Any CPU
107 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|x64.Build.0 = Release|Any CPU
108 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|x64.Deploy.0 = Release|Any CPU
109 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|x86.ActiveCfg = Release|Any CPU
110 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|x86.Build.0 = Release|Any CPU
111 | {53BA091C-45D6-4706-98A1-19D496AB2AF9}.Release|x86.Deploy.0 = Release|Any CPU
112 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
113 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
114 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU
115 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
116 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
117 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|ARM.Deploy.0 = Release|Any CPU
118 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
119 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
120 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU
121 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
122 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
123 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU
124 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
125 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|x64.Build.0 = Release|Any CPU
126 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|x64.Deploy.0 = Release|Any CPU
127 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
128 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|x86.Build.0 = Release|Any CPU
129 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Ad-Hoc|x86.Deploy.0 = Release|Any CPU
130 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
131 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|Any CPU.Build.0 = Release|Any CPU
132 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|Any CPU.Deploy.0 = Release|Any CPU
133 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|ARM.ActiveCfg = Release|Any CPU
134 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|ARM.Build.0 = Release|Any CPU
135 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|ARM.Deploy.0 = Release|Any CPU
136 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|iPhone.ActiveCfg = Release|Any CPU
137 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|iPhone.Build.0 = Release|Any CPU
138 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|iPhone.Deploy.0 = Release|Any CPU
139 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
140 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
141 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU
142 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|x64.ActiveCfg = Release|Any CPU
143 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|x64.Build.0 = Release|Any CPU
144 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|x64.Deploy.0 = Release|Any CPU
145 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|x86.ActiveCfg = Release|Any CPU
146 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|x86.Build.0 = Release|Any CPU
147 | {929EE228-06F0-4E20-9997-C69945F16C5F}.AppStore|x86.Deploy.0 = Release|Any CPU
148 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
149 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|Any CPU.Build.0 = Debug|Any CPU
150 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
151 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|ARM.ActiveCfg = Debug|Any CPU
152 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|ARM.Build.0 = Debug|Any CPU
153 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|ARM.Deploy.0 = Debug|Any CPU
154 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|iPhone.ActiveCfg = Debug|Any CPU
155 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|iPhone.Build.0 = Debug|Any CPU
156 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|iPhone.Deploy.0 = Debug|Any CPU
157 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
158 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
159 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
160 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|x64.ActiveCfg = Debug|Any CPU
161 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|x64.Build.0 = Debug|Any CPU
162 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|x64.Deploy.0 = Debug|Any CPU
163 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|x86.ActiveCfg = Debug|Any CPU
164 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|x86.Build.0 = Debug|Any CPU
165 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Debug|x86.Deploy.0 = Debug|Any CPU
166 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|Any CPU.ActiveCfg = Release|Any CPU
167 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|Any CPU.Build.0 = Release|Any CPU
168 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|Any CPU.Deploy.0 = Release|Any CPU
169 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|ARM.ActiveCfg = Release|Any CPU
170 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|ARM.Build.0 = Release|Any CPU
171 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|ARM.Deploy.0 = Release|Any CPU
172 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|iPhone.ActiveCfg = Release|Any CPU
173 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|iPhone.Build.0 = Release|Any CPU
174 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|iPhone.Deploy.0 = Release|Any CPU
175 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
176 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
177 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
178 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|x64.ActiveCfg = Release|Any CPU
179 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|x64.Build.0 = Release|Any CPU
180 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|x64.Deploy.0 = Release|Any CPU
181 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|x86.ActiveCfg = Release|Any CPU
182 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|x86.Build.0 = Release|Any CPU
183 | {929EE228-06F0-4E20-9997-C69945F16C5F}.Release|x86.Deploy.0 = Release|Any CPU
184 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone
185 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|Any CPU.Build.0 = Ad-Hoc|iPhone
186 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|Any CPU.Deploy.0 = Ad-Hoc|iPhone
187 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhone
188 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|ARM.Build.0 = Ad-Hoc|iPhone
189 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|ARM.Deploy.0 = Ad-Hoc|iPhone
190 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone
191 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone
192 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|iPhone.Deploy.0 = Ad-Hoc|iPhone
193 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator
194 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator
195 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Ad-Hoc|iPhoneSimulator
196 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|x64.ActiveCfg = Ad-Hoc|iPhone
197 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|x64.Build.0 = Ad-Hoc|iPhone
198 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|x64.Deploy.0 = Ad-Hoc|iPhone
199 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhone
200 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|x86.Build.0 = Ad-Hoc|iPhone
201 | {C4129FBD-0712-47BA-B580-327427793F8F}.Ad-Hoc|x86.Deploy.0 = Ad-Hoc|iPhone
202 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone
203 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|Any CPU.Build.0 = AppStore|iPhone
204 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|Any CPU.Deploy.0 = AppStore|iPhone
205 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|ARM.ActiveCfg = AppStore|iPhone
206 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|ARM.Build.0 = AppStore|iPhone
207 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|ARM.Deploy.0 = AppStore|iPhone
208 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|iPhone.ActiveCfg = AppStore|iPhone
209 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|iPhone.Build.0 = AppStore|iPhone
210 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|iPhone.Deploy.0 = AppStore|iPhone
211 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator
212 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator
213 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|iPhoneSimulator.Deploy.0 = AppStore|iPhoneSimulator
214 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|x64.ActiveCfg = AppStore|iPhone
215 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|x64.Build.0 = AppStore|iPhone
216 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|x64.Deploy.0 = AppStore|iPhone
217 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|x86.ActiveCfg = AppStore|iPhone
218 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|x86.Build.0 = AppStore|iPhone
219 | {C4129FBD-0712-47BA-B580-327427793F8F}.AppStore|x86.Deploy.0 = AppStore|iPhone
220 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
221 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
222 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|Any CPU.Deploy.0 = Debug|iPhoneSimulator
223 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|ARM.ActiveCfg = Debug|iPhone
224 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|ARM.Build.0 = Debug|iPhone
225 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|ARM.Deploy.0 = Debug|iPhone
226 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|iPhone.ActiveCfg = Debug|iPhone
227 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|iPhone.Build.0 = Debug|iPhone
228 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|iPhone.Deploy.0 = Debug|iPhone
229 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
230 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
231 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|iPhoneSimulator.Deploy.0 = Debug|iPhoneSimulator
232 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|x64.ActiveCfg = Debug|iPhone
233 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|x64.Build.0 = Debug|iPhone
234 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|x64.Deploy.0 = Debug|iPhone
235 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|x86.ActiveCfg = Debug|iPhone
236 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|x86.Build.0 = Debug|iPhone
237 | {C4129FBD-0712-47BA-B580-327427793F8F}.Debug|x86.Deploy.0 = Debug|iPhone
238 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|Any CPU.ActiveCfg = Release|iPhone
239 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|Any CPU.Build.0 = Release|iPhone
240 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|Any CPU.Deploy.0 = Release|iPhone
241 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|ARM.ActiveCfg = Release|iPhone
242 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|ARM.Build.0 = Release|iPhone
243 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|ARM.Deploy.0 = Release|iPhone
244 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|iPhone.ActiveCfg = Release|iPhone
245 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|iPhone.Build.0 = Release|iPhone
246 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|iPhone.Deploy.0 = Release|iPhone
247 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
248 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
249 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|iPhoneSimulator.Deploy.0 = Release|iPhoneSimulator
250 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|x64.ActiveCfg = Release|iPhone
251 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|x64.Build.0 = Release|iPhone
252 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|x64.Deploy.0 = Release|iPhone
253 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|x86.ActiveCfg = Release|iPhone
254 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|x86.Build.0 = Release|iPhone
255 | {C4129FBD-0712-47BA-B580-327427793F8F}.Release|x86.Deploy.0 = Release|iPhone
256 | EndGlobalSection
257 | GlobalSection(SolutionProperties) = preSolution
258 | HideSolutionNode = FALSE
259 | EndGlobalSection
260 | GlobalSection(ExtensibilityGlobals) = postSolution
261 | SolutionGuid = {7E3B4285-2FEF-4A08-8B54-0B42EAC4AFF6}
262 | EndGlobalSection
263 | EndGlobal
264 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with you package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
20 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Assets/so_excited.json:
--------------------------------------------------------------------------------
1 | {"v":"5.0.5","fr":29.9700012207031,"ip":0,"op":71.0000028918893,"w":415,"h":395,"nm":"beaver n2","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"glass leg 2","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-33.77,"ix":10},"p":{"a":0,"k":[-2.268,62.547,0],"ix":2},"a":{"a":0,"k":[-10.446,-45.022,0],"ix":1},"s":{"a":0,"k":[132.435,123.65,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[30.498,3],"ix":2},"p":{"a":0,"k":[22,-3],"ix":3},"r":{"a":0,"k":20,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725501299,0.364705890417,0.976470589638,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-12.422,-41.344],"ix":2},"a":{"a":0,"k":[15.768,-0.051],"ix":1},"s":{"a":0,"k":[71.108,134.323],"ix":3},"r":{"a":0,"k":1.557,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":21.0000008553475,"op":74.0000030140818,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"glass leg","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":16,"s":[0.716],"e":[-33.084]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":19,"s":[-33.084],"e":[-37.284]},{"t":21.0000008553475}],"ix":10},"p":{"a":0,"k":[196.613,156.556,0],"ix":2},"a":{"a":0,"k":[-10.446,-45.022,0],"ix":1},"s":{"a":0,"k":[139.246,125.756,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":16,"s":[10.498,3],"e":[17.498,3]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":18,"s":[17.498,3],"e":[22.498,3]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":19,"s":[22.498,3],"e":[30.498,3]},{"t":21.0000008553475}],"ix":2},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":16,"s":[0,-3],"e":[16,-4],"to":[2.66666674613953,-0.16666667163372],"ti":[-3.33333325386047,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":18,"s":[16,-4],"e":[20,-3],"to":[3.33333325386047,0],"ti":[-1,-0.16666667163372]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":19,"s":[20,-3],"e":[24.989,-0.927],"to":[0.37715372443199,0.062858954072],"ti":[-0.28232377767563,0.00514689832926]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20,"s":[24.989,-0.927],"e":[22,-3],"to":[0.46624040603638,-0.00849978718907],"ti":[-0.20761542022228,0]},{"t":21.0000008553475}],"ix":3},"r":{"a":0,"k":20,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725501299,0.364705890417,0.976470589638,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-12.422,-41.344],"ix":2},"a":{"a":0,"k":[15.768,-0.051],"ix":1},"s":{"a":0,"k":[71.108,134.323],"ix":3},"r":{"a":0,"k":1.557,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":16.0000006516934,"op":21.0000008553475,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"eye left Outlines","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-6.863,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[27.105,59.764,0],"e":[27.007,49.765,0],"to":[-0.01622886396945,-1.66642546653748,0],"ti":[1.39931178092957,3.14899849891663,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":31,"s":[27.007,49.765,0],"e":[24.236,46.286,0],"to":[-2.3070182800293,-5.19169282913208,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":46,"s":[24.236,46.286,0],"e":[26.054,46.733,0],"to":[0,0,0],"ti":[0,0,0]},{"t":68.0000027696968}],"ix":2},"a":{"a":0,"k":[3.798,3.798,0],"ix":1},"s":{"a":0,"k":[99.971,100.029,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.959],[1.959,0],[0,1.959],[-1.96,0]],"o":[[0,1.959],[-1.96,0],[0,-1.959],[1.959,0]],"v":[[3.548,0],[0.001,3.548],[-3.548,0],[0.001,-3.548]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.298000021542,0.301999978458,0.317999985639,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[3.798,3.798],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":74.0000030140818,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"eye right Outlines","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-6.863,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[59.685,46.264,0],"e":[56.992,37.693,0],"to":[-0.44871208071709,-1.42848432064056,0],"ti":[2.48736262321472,2.4224157333374,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":31,"s":[56.992,37.693,0],"e":[53.908,35.894,0],"to":[-0.99522632360458,-0.96924018859863,0],"ti":[0,0,0]},{"t":46.0000018736184}],"ix":2},"a":{"a":0,"k":[4.089,4.09,0],"ix":1},"s":{"a":0,"k":[99.971,100.029,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.928,-0.348],[0.348,-1.928],[1.928,0.348],[-0.348,1.928]],"o":[[1.928,0.348],[-0.347,1.928],[-1.928,-0.348],[0.348,-1.928]],"v":[[0.63,-3.492],[3.491,0.63],[-0.63,3.492],[-3.491,-0.63]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.298000021542,0.301999978458,0.317999985639,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[4.089,4.09],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":74.0000030140818,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"teeth Outlines","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[-5.863],"e":[-2.792]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":15,"s":[-2.792],"e":[-10.563]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":21,"s":[-10.563],"e":[-6.863]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":30,"s":[-6.863],"e":[-12.506]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":31,"s":[-12.506],"e":[-9.583]},{"t":46.0000018736184}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[52.524,74.41,0],"e":[53.722,73.919,0],"to":[0.19964545965195,-0.08189108967781,0],"ti":[-0.44651451706886,0.03227316215634,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":15,"s":[53.722,73.919,0],"e":[55.203,74.217,0],"to":[0.44651451706886,-0.03227316215634,0],"ti":[-0.93012648820877,0.26635083556175,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":18,"s":[55.203,74.217,0],"e":[59.551,72.336,0],"to":[0.93012648820877,-0.26635083556175,0],"ti":[-0.96100914478302,-0.07823108881712,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":21,"s":[59.551,72.336,0],"e":[61.974,72.025,0],"to":[0.24675364792347,0.02008701488376,0],"ti":[-0.33922049403191,-0.06457617133856,0]},{"t":31.0000012626559}],"ix":2},"a":{"a":0,"k":[4.963,4.937,0],"ix":1},"s":{"a":0,"k":[99.971,100.029,100],"ix":6}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"n","pt":{"a":0,"k":{"i":[[0.55,-0.533],[0.221,-0.193],[-1.183,0.401]],"o":[[-0.66,0.639],[-0.19,0.166],[1.16,-0.424]],"v":[[1.522,-0.055],[-0.917,0.541],[1.014,1.448]],"c":true},"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.593,-1.226],[1.881,-2.464],[2.323,3.216],[0.349,3.82]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[7.599,4.319],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.365,-1.077],[1.447,-2.269],[3.372,3.018],[1.563,3.689]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[3.142,5.595],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":74.0000030140818,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"mouse","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[207.5,197.5,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":31,"s":[{"i":[[4.16,-6.15],[-0.952,-2.856],[-5,3.875]],"o":[[-5.75,8.5],[1.25,3.75],[6.111,-4.736]],"v":[[51.75,-58],[38.5,-47.75],[53.75,-47.125]],"c":true}],"e":[{"i":[[4.696,-5.742],[-0.952,-2.856],[-5.964,5.214]],"o":[[-7.929,9.464],[1.25,3.75],[7.762,-6.786]],"v":[[53.464,-59.429],[36.571,-45.857],[55.214,-44.214]],"c":true}]},{"t":46.0000018736184}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.984451591969,0.468986839056,0.493149280548,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":31.0000012626559,"op":137.000005580124,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"glass Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[-1],"e":[15.932]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":10,"s":[15.932],"e":[6.506]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":15,"s":[6.506],"e":[9.47]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":17,"s":[9.47],"e":[-3.585]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":20,"s":[-3.585],"e":[-8.585]},{"t":31.0000012626559}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[185.494,170.346,0],"e":[201.494,160.846,0],"to":[2.66666674613953,-1.58333337306976,0],"ti":[-11.3772068023682,6.28205919265747,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[201.494,160.846,0],"e":[205.951,152.586,0],"to":[5.44313812255859,-3.00549292564392,0],"ti":[-10.5479316711426,5.01084613800049,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":15,"s":[205.951,152.586,0],"e":[224.797,145.267,0],"to":[4.29474878311157,-2.04024124145508,0],"ti":[-7.68743658065796,2.81581783294678,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":17,"s":[224.797,145.267,0],"e":[246.757,134.654,0],"to":[12.8958311080933,-4.72359180450439,0],"ti":[-1.75714933872223,2.62469482421875,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20,"s":[246.757,134.654,0],"e":[231.533,116.908,0],"to":[0.25653281807899,-0.38318905234337,0],"ti":[-0.26205733418465,-0.14393265545368,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":27,"s":[231.533,116.908,0],"e":[233.714,115.084,0],"to":[0.04055711627007,0.02227563410997,0],"ti":[0.21687965095043,-0.08396116644144,0]},{"t":31.0000012626559}],"ix":2},"a":{"a":0,"k":[45.053,40.214,0],"ix":1},"s":{"a":0,"k":[100.424,104.214,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":15,"s":[{"i":[[-1.671,2.601],[-5.259,8.188],[1.67,-2.6],[5.259,-8.187]],"o":[[5.259,-8.188],[1.679,-2.613],[-5.26,8.188],[-1.679,2.614]],"v":[[-5.811,13.495],[9.967,-11.068],[5.811,-13.497],[-9.967,11.067]],"c":true}],"e":[{"i":[[-1.671,2.601],[-5.259,8.188],[1.037,-1.619],[5.259,-8.187]],"o":[[5.259,-8.188],[1.679,-2.613],[-5.25,8.195],[-1.679,2.614]],"v":[[-5.811,13.495],[2.549,-0.541],[-1.074,-3.49],[-9.967,11.066]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":17,"s":[{"i":[[-1.671,2.601],[-5.259,8.188],[1.037,-1.619],[5.259,-8.187]],"o":[[5.259,-8.188],[1.679,-2.613],[-5.25,8.195],[-1.679,2.614]],"v":[[-5.811,13.495],[2.549,-0.541],[-1.074,-3.49],[-9.967,11.066]],"c":true}],"e":[{"i":[[-1.119,0.982],[-2.169,3.126],[0.186,0.036],[2.218,-3.338]],"o":[[3.367,-3.754],[0.403,-0.44],[-2.748,4.242],[-0.954,1.185]],"v":[[-5.414,12.872],[-1.396,7.013],[-5.683,3.87],[-9.867,10.321]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":18,"s":[{"i":[[-1.119,0.982],[-2.169,3.126],[0.186,0.036],[2.218,-3.338]],"o":[[3.367,-3.754],[0.403,-0.44],[-2.748,4.242],[-0.954,1.185]],"v":[[-5.414,12.872],[-1.396,7.013],[-5.683,3.87],[-9.867,10.321]],"c":true}],"e":[{"i":[[-0.567,-0.637],[0.921,-1.936],[-6.976,10.358],[-0.823,1.512]],"o":[[1.475,0.679],[-4.965,10.442],[-0.245,0.29],[-0.23,-0.243]],"v":[[-5.017,12.249],[-5.34,14.566],[-10.292,11.23],[-9.768,9.576]],"c":true}]},{"t":19.0000007738859}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313999998803,0.365000017952,0.976000019148,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[78.211,16.347],"e":[84.211,23.347],"to":[1,1.16666662693024],"ti":[-1.01148462295532,-1.1718761920929]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":15,"s":[84.211,23.347],"e":[84.28,23.378],"to":[1.01148462295532,1.1718761920929],"ti":[0.95315337181091,-0.28470134735107]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":17,"s":[84.28,23.378],"e":[83.132,24.202],"to":[-0.10556744784117,0.03153238072991],"ti":[0.16921927034855,-0.04959060996771]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":18,"s":[83.132,24.202],"e":[78.492,25.055],"to":[-1.35863733291626,0.39815589785576],"ti":[0.85779851675034,-0.24853643774986]},{"t":31.0000012626559}],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[85.078,85.298],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":10,"s":[-0.102],"e":[23.898]},{"t":15.0000006109625}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-2.701,1.352],[-1.712,-0.311],[-0.257,1.035]],"o":[[0,0],[1.201,-0.601],[0.481,0.675],[0,0]],"v":[[-4.532,2.837],[-1.456,-0.009],[2.298,-0.291],[2.784,-0.457]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313999998803,0.365000017952,0.976000019148,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.812,"ix":5},"lc":1,"lj":1,"ml":10,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[43.198,40.688],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,-7.903],[7.549,-0.725],[0.759,7.904],[-7.548,0.726]],"o":[[0.759,7.904],[-7.548,0.726],[-0.76,-7.903],[7.549,-0.725]],"v":[[13.668,-1.314],[1.375,14.311],[-13.667,1.312],[-1.375,-14.311]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313999998803,0.365000017952,0.976000019148,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.812,"ix":5},"lc":1,"lj":1,"ml":10,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[60.636,39.027],"e":[57.636,39.027],"to":[-0.5,0],"ti":[0.5,0]},{"t":31.0000012626559}],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":0,"s":[100,100],"e":[88.217,88.217]},{"t":31.0000012626559}],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.732,-7.455],[7.12,-2.609],[2.732,7.455],[-7.12,2.609]],"o":[[2.732,7.455],[-7.12,2.61],[-2.732,-7.455],[7.12,-2.61]],"v":[[12.892,-4.725],[4.947,13.499],[-12.892,4.725],[-4.947,-13.499]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313999998803,0.365000017952,0.976000019148,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.812,"ix":5},"lc":1,"lj":1,"ml":10,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[27.654,52.29],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":74.0000030140818,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"blush left Outlines","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-6.863,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[33.783,74.473,0],"e":[33.647,70.45,0],"to":[-0.02263244427741,-0.67044281959534,0],"ti":[-0.1162317097187,0.19990482926369,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[33.647,70.45,0],"e":[34.48,73.273,0],"to":[0.1162317097187,-0.19990482926369,0],"ti":[-0.7516832947731,0.22734574973583,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":15,"s":[34.48,73.273,0],"e":[33.959,71.86,0],"to":[0.38120040297508,-0.11529362946749,0],"ti":[-1.0418553352356,0.52706623077393,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":18,"s":[33.959,71.86,0],"e":[37.985,68.576,0],"to":[1.01256334781647,-0.51224768161774,0],"ti":[-0.40185010433197,0.19626654684544,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":21,"s":[37.985,68.576,0],"e":[38.465,68.329,0],"to":[0.81532514095306,-0.39821082353592,0],"ti":[0.00259454967454,-0.04059422016144,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":31,"s":[38.465,68.329,0],"e":[38.636,68.84,0],"to":[-0.00259454967454,0.04059422016144,0],"ti":[0.00619377335533,-0.03953382000327,0]},{"t":72.0000029326201}],"ix":2},"a":{"a":0,"k":[6.982,7.139,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":0,"s":[75,75,100],"e":[114,114,100]},{"t":31.0000012626559}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.169,3.774],[-3.673,-1.138],[1.169,-3.774],[3.673,1.138]],"o":[[1.169,-3.774],[3.674,1.138],[-1.169,3.774],[-3.674,-1.137]],"v":[[-38.911,3.947],[-30.143,-0.826],[-25.607,8.066],[-34.375,12.84]],"c":true},"ix":2},"nm":"Path 4","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":4,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.984313726425,0.470588237047,0.494117647409,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[39.241,1.132],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":74.0000030140818,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"blush Outlines","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-6.863,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[71.322,61.714,0],"e":[71.638,58.639,0],"to":[0.05263872072101,-0.51245701313019,0],"ti":[0.3483764231205,0.30245944857597,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":15,"s":[71.638,58.639,0],"e":[70.523,58.86,0],"to":[-0.18162171542645,-0.15768347680569,0],"ti":[0.7425651550293,-0.22912409901619,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":18,"s":[70.523,58.86,0],"e":[69.992,56.21,0],"to":[-0.68178105354309,0.21036870777607,0],"ti":[0.26264441013336,-0.06189679726958,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":21,"s":[69.992,56.21,0],"e":[68.105,56.304,0],"to":[-0.07953875511885,0.01874471269548,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":31,"s":[68.105,56.304,0],"e":[66.684,55.733,0],"to":[0,0,0],"ti":[0,0,0]},{"t":46.0000018736184}],"ix":2},"a":{"a":0,"k":[8.19,8.346,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":0,"s":[75,75,100],"e":[58,58,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":18,"s":[58,58,100],"e":[80,92,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":31,"s":[80,92,100],"e":[64,73.6,100]},{"t":46.0000018736184}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.839,-2.297],[2.391,3.995],[-3.839,2.297],[-2.391,-3.995]],"o":[[-3.84,2.297],[-2.391,-3.995],[3.839,-2.297],[2.39,3.996]],"v":[[11.307,-4.816],[0.026,-7.891],[2.649,-19.285],[13.93,-16.21]],"c":true},"ix":2},"nm":"Path 4","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.984313726425,0.470588237047,0.494117647409,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1.213,20.396],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":74.0000030140818,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"right ear","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[-3],"e":[13]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":15,"s":[13],"e":[11.246]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":20,"s":[11.246],"e":[-10.798]},{"t":27.0000010997325}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[204.617,119.367,0],"e":[231.571,111.033,0],"to":[3.58883094787598,-1.0555385351181,0],"ti":[-8.62276268005371,2.4527153968811,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[231.571,111.033,0],"e":[238.617,109.367,0],"to":[4.99234580993652,-1.42005574703217,0],"ti":[-1.77227175235748,1.28336918354034,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":15,"s":[238.617,109.367,0],"e":[249.543,103.585,0],"to":[1.28001356124878,-0.92690640687943,0],"ti":[-0.39739298820496,0.76549899578094,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":17,"s":[249.543,103.585,0],"e":[246.827,102.933,0],"to":[0.44108405709267,-0.84966123104095,0],"ti":[1.80664885044098,0.06336387246847,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":18,"s":[246.827,102.933,0],"e":[240.117,101.867,0],"to":[-2.71183013916016,-0.09511094540358,0],"ti":[0.2573798596859,0.77213960886002,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20,"s":[240.117,101.867,0],"e":[216.038,94.912,0],"to":[-0.12574064731598,-0.37722197175026,0],"ti":[0.02462136559188,-0.01152080856264,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":27,"s":[216.038,94.912,0],"e":[215.038,94.412,0],"to":[-0.41150712966919,0.19255205988884,0],"ti":[0.04166666790843,0,0]},{"t":67.0000027289659}],"ix":2},"a":{"a":0,"k":[14.259,9.659,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":15,"s":[100,100,100],"e":[86,86,100]},{"t":20.0000008146167}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[14.604,-1.282],[-11.008,-3.568],[0,0]],"o":[[0,0],[11.007,3.568],[0,0]],"v":[[-14.009,2.659],[3.002,-5.84],[10.564,9.408]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.936999990426,0.517999985639,0.517999985639,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[14.259,9.659],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":74.0000030140818,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"left ear","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":0,"s":[0],"e":[8]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":15,"s":[8],"e":[22.703]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":17,"s":[22.703],"e":[-2.668]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":20,"s":[-2.668],"e":[23.585]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":25,"s":[23.585],"e":[21.066]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":27,"s":[21.066],"e":[11.554]},{"t":31.0000012626559}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":0,"s":[152.369,148.651,0],"e":[169.866,136.32,0],"to":[1.98497271537781,-1.87910747528076,0],"ti":[-4.74475955963135,4.49170589447021,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":10,"s":[169.866,136.32,0],"e":[174.369,130.151,0],"to":[2.72505259513855,-2.5797164440155,0],"ti":[-1.14002728462219,1.07922577857971,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":15,"s":[174.369,130.151,0],"e":[184.565,123.515,0],"to":[1.17494428157806,-1.11228060722351,0],"ti":[-3.28183746337891,1.76366293430328,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":17,"s":[184.565,123.515,0],"e":[192.619,127.401,0],"to":[5.4468674659729,-2.92715215682983,0],"ti":[-0.10400296747684,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":20,"s":[192.619,127.401,0],"e":[188.619,120.901,0],"to":[0.16666667163372,0,0],"ti":[0.08333333581686,-0.16666667163372,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":25,"s":[188.619,120.901,0],"e":[183.869,118.151,0],"to":[-0.08333333581686,0.16666667163372,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":27,"s":[183.869,118.151,0],"e":[189.869,120.151,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":31,"s":[189.869,120.151,0],"e":[192.619,117.651,0],"to":[0,0,0],"ti":[0,0,0]},{"t":67.0000027289659}],"ix":2},"a":{"a":0,"k":[13.306,14.331,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[0.91,-0.45],[1.281,4.258],[-4.171,-2.63]],"o":[[-4.612,2.282],[-2.859,-9.5],[-5.201,5.477]],"v":[[-2.529,8.299],[-11.4,4.091],[1.582,-9.128]],"c":true}],"e":[{"i":[[0.91,-0.45],[1.281,4.258],[-4.171,-2.63]],"o":[[-4.612,2.282],[-2.859,-9.5],[-4.436,7.536]],"v":[[-1.533,8.207],[-11.4,4.091],[1.182,-9.576]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":10,"s":[{"i":[[0.91,-0.45],[1.281,4.258],[-4.171,-2.63]],"o":[[-4.612,2.282],[-2.859,-9.5],[-4.436,7.536]],"v":[[-1.533,8.207],[-11.4,4.091],[1.182,-9.576]],"c":true}],"e":[{"i":[[0.91,-0.45],[1.281,4.258],[-4.171,-2.63]],"o":[[-4.612,2.282],[-2.859,-9.5],[-4.053,8.565]],"v":[[-2.529,8.299],[-11.4,4.091],[0.982,-9.801]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":15,"s":[{"i":[[0.91,-0.45],[1.281,4.258],[-4.171,-2.63]],"o":[[-4.612,2.282],[-2.859,-9.5],[-4.053,8.565]],"v":[[-2.529,8.299],[-11.4,4.091],[0.982,-9.801]],"c":true}],"e":[{"i":[[0.995,-0.203],[0.37,4.431],[-4.171,-2.63]],"o":[[-3.019,0.616],[-0.845,-10.108],[-4.053,8.565]],"v":[[-2.529,8.299],[-11.637,1.603],[0.982,-9.801]],"c":true}]},{"t":20.0000008146167}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.936999990426,0.481999984442,0.481999984442,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[13.306,14.332],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":74.0000030140818,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"head","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-0.066,"ix":10},"p":{"a":0,"k":[263.5,152.5,0],"ix":2},"a":{"a":0,"k":[57,-47,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[22,-9],[1,-30.5],[-0.5,-0.5],[-46.25,5.75],[-2.633,5.596],[-2,5.5],[35,23.5]],"o":[[-11,4.5],[-1,30.5],[0.5,0.5],[46.25,-5.75],[8,-17],[1.709,-4.699],[-9.5,-6]],"v":[[-25.5,-87.502],[-56.5,-42.5],[-40,1.5],[3.25,32.75],[49,1],[72,-35.985],[25.5,-82.002]],"c":true}],"e":[{"i":[[23.461,-3.819],[1,-30.5],[-0.5,-0.5],[-57.25,-3.652],[-2.633,5.596],[0,5.852],[21,26]],"o":[[-21.5,3.5],[-1,30.5],[0.5,0.5],[52.672,3.36],[8,-17],[0,-2],[-8,-8.5]],"v":[[7.5,-102.998],[-38.5,-55.002],[-30,-24.511],[9.25,29.75],[67,0],[75.5,-23],[55,-86.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[{"i":[[23.461,-3.819],[1,-30.5],[-0.5,-0.5],[-57.25,-3.652],[-2.633,5.596],[0,5.852],[21,26]],"o":[[-21.5,3.5],[-1,30.5],[0.5,0.5],[52.672,3.36],[8,-17],[0,-2],[-8,-8.5]],"v":[[7.5,-102.998],[-38.5,-55.002],[-30,-24.511],[9.25,29.75],[67,0],[75.5,-23],[55,-86.5]],"c":true}],"e":[{"i":[[21.567,-3.029],[-0.167,-31.974],[-0.5,-0.5],[-53.663,0.8],[-4.214,1.602],[2.405,4.88],[16.738,21.095]],"o":[[-23.119,3.203],[-0.498,30.499],[0.5,0.5],[53.609,-1.142],[4.262,-18.155],[-0.024,-3.024],[-7.452,-8.595]],"v":[[9.762,-102.737],[-35.906,-52.827],[-28.523,-16.097],[12.09,22.885],[72.167,-7.612],[74.952,-36.415],[53.738,-85.79]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":15,"s":[{"i":[[21.567,-3.029],[-0.167,-31.974],[-0.5,-0.5],[-53.663,0.8],[-4.214,1.602],[2.405,4.88],[16.738,21.095]],"o":[[-23.119,3.203],[-0.498,30.499],[0.5,0.5],[53.609,-1.142],[4.262,-18.155],[-0.024,-3.024],[-7.452,-8.595]],"v":[[9.762,-102.737],[-35.906,-52.827],[-28.523,-16.097],[12.09,22.885],[72.167,-7.612],[74.952,-36.415],[53.738,-85.79]],"c":true}],"e":[{"i":[[20.88,-2.104],[-2.893,-28.554],[-0.5,-0.5],[-54.507,2.432],[-1.471,3.808],[0.26,0.145],[14.292,16.76]],"o":[[-21.605,2.177],[4.051,19.635],[0.5,0.5],[53.983,-2.943],[-0.652,-20.441],[-1.232,-6.381],[-7.233,-8.633]],"v":[[10.661,-98.116],[-29.071,-49.843],[-28.729,-14.841],[20.925,21.553],[79.14,-16.172],[67.736,-44.298],[51.733,-85.508]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":17,"s":[{"i":[[20.88,-2.104],[-2.893,-28.554],[-0.5,-0.5],[-54.507,2.432],[-1.471,3.808],[0.26,0.145],[14.292,16.76]],"o":[[-21.605,2.177],[4.051,19.635],[0.5,0.5],[53.983,-2.943],[-0.652,-20.441],[-1.232,-6.381],[-7.233,-8.633]],"v":[[10.661,-98.116],[-29.071,-49.843],[-28.729,-14.841],[20.925,21.553],[79.14,-16.172],[67.736,-44.298],[51.733,-85.508]],"c":true}],"e":[{"i":[[16.694,-6.043],[-4.927,-31.466],[-0.5,-0.5],[-47.885,8.22],[1.198,3.85],[5.26,3.724],[11.51,4.708]],"o":[[-20.442,8.515],[1.698,16.469],[0.5,0.5],[44.927,-4.931],[-0.302,-21.746],[-0.052,-4.239],[-8.803,-6.461]],"v":[[-6.021,-97.439],[-37.698,-38.552],[-19.458,-7.491],[29.885,19.885],[81.302,-23.424],[63.802,-55.638],[37.99,-92.036]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20,"s":[{"i":[[16.694,-6.043],[-4.927,-31.466],[-0.5,-0.5],[-47.885,8.22],[1.198,3.85],[5.26,3.724],[11.51,4.708]],"o":[[-20.442,8.515],[1.698,16.469],[0.5,0.5],[44.927,-4.931],[-0.302,-21.746],[-0.052,-4.239],[-8.803,-6.461]],"v":[[-6.021,-97.439],[-37.698,-38.552],[-19.458,-7.491],[29.885,19.885],[81.302,-23.424],[63.802,-55.638],[37.99,-92.036]],"c":true}],"e":[{"i":[[9.833,-11.592],[-12.083,-29.637],[-0.5,-0.5],[-27.167,16.348],[4.747,13.485],[8.417,2.448],[12.917,3.212]],"o":[[-14.902,17.568],[16.917,43.638],[0.5,0.5],[16.833,-8.747],[-7.583,-21.543],[-0.083,-5.582],[-11.418,-2.839]],"v":[[-33.833,-88.784],[-43.417,-24.567],[4.667,14.967],[56.667,-5.306],[74.083,-53.739],[45.583,-78.734],[16.583,-101.581]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":25,"s":[{"i":[[9.833,-11.592],[-12.083,-29.637],[-0.5,-0.5],[-27.167,16.348],[4.747,13.485],[8.417,2.448],[12.917,3.212]],"o":[[-14.902,17.568],[16.917,43.638],[0.5,0.5],[16.833,-8.747],[-7.583,-21.543],[-0.083,-5.582],[-11.418,-2.839]],"v":[[-33.833,-88.784],[-43.417,-24.567],[4.667,14.967],[56.667,-5.306],[74.083,-53.739],[45.583,-78.734],[16.583,-101.581]],"c":true}],"e":[{"i":[[9.833,-11.592],[-12.083,-29.637],[-0.5,-0.5],[-34.167,23.374],[0.342,1.106],[8.417,2.448],[12.917,3.212]],"o":[[-14.902,17.568],[10.917,28.582],[0.5,0.5],[31.833,-20.792],[-7.583,-24.555],[-0.083,-5.582],[-11.418,-2.839]],"v":[[-33.837,-87.781],[-41.438,-18.537],[-6.333,7.941],[51.667,-4.302],[74.583,-51.732],[45.583,-78.734],[16.583,-101.581]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":27,"s":[{"i":[[9.833,-11.592],[-12.083,-29.637],[-0.5,-0.5],[-34.167,23.374],[0.342,1.106],[8.417,2.448],[12.917,3.212]],"o":[[-14.902,17.568],[10.917,28.582],[0.5,0.5],[31.833,-20.792],[-7.583,-24.555],[-0.083,-5.582],[-11.418,-2.839]],"v":[[-33.837,-87.781],[-41.438,-18.537],[-6.333,7.941],[51.667,-4.302],[74.583,-51.732],[45.583,-78.734],[16.583,-101.581]],"c":true}],"e":[{"i":[[8.393,-10.684],[-12.083,-29.637],[-0.5,-0.5],[-34.167,23.374],[0.342,1.106],[8.417,2.448],[12.917,3.212]],"o":[[-14.231,18.115],[10.917,28.582],[0.5,0.5],[31.833,-20.792],[-7.583,-24.555],[-0.083,-5.582],[-11.418,-2.839]],"v":[[-33.833,-88.784],[-43.417,-24.567],[-8.333,10.952],[45.667,2.724],[74.583,-51.732],[45.583,-78.734],[16.583,-101.581]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":44,"s":[{"i":[[8.393,-10.684],[-12.083,-29.637],[-0.5,-0.5],[-34.167,23.374],[0.342,1.106],[8.417,2.448],[12.917,3.212]],"o":[[-14.231,18.115],[10.917,28.582],[0.5,0.5],[31.833,-20.792],[-7.583,-24.555],[-0.083,-5.582],[-11.418,-2.839]],"v":[[-33.833,-88.784],[-43.417,-24.567],[-8.333,10.952],[45.667,2.724],[74.583,-51.732],[45.583,-78.734],[16.583,-101.581]],"c":true}],"e":[{"i":[[9.646,-12.941],[-10.079,-26.252],[-0.5,-0.5],[-34.167,23.374],[1.91,10.098],[8.417,2.448],[12.917,3.212]],"o":[[-12.017,16.122],[10.917,28.582],[0.5,0.5],[31.833,-20.792],[-3.029,-16.012],[-0.083,-5.582],[-11.418,-2.839]],"v":[[-33.584,-88.031],[-43.417,-24.567],[-8.333,10.952],[45.667,2.724],[72.587,-55.247],[45.583,-78.734],[16.583,-101.581]],"c":true}]},{"t":69.0000028104276}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976470589638,0.57647061348,0.57647061348,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,99.625],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":74.0000030140818,"st":0,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"Layer 7 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[185.429,266.075,0],"ix":2},"a":{"a":0,"k":[70.037,81.338,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":-7,"s":[{"i":[[0,0],[-0.992,-34.375],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-2.848,4.746],[-0.342,5.862],[10.086,-4.529],[14.383,6.164],[0,0],[2.033,3.228]],"o":[[-25.209,10.839],[0.838,29.052],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[18.384,-30.637],[0.054,-0.927],[-15.615,5.066],[-18.111,-7.762],[-3.31,-4.845],[0,0]],"v":[[-32.001,-85.088],[-75.564,-17.442],[-32.34,36.894],[3.277,54.192],[50.487,75.196],[53.709,65.025],[51.646,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.501,-14.439],[69.731,-74.504],[48.856,-41.051],[-3.88,-40.728],[-16.817,-69.189],[-24.725,-81.088]],"c":true}],"e":[{"i":[[0,0],[-0.892,-39.375],[-12.966,-7.961],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-2.848,4.746],[-0.342,5.862],[13.851,-4.875],[14.383,6.164],[0,0],[-0.058,2.378]],"o":[[-25.209,10.839],[0.658,29.055],[10.743,6.596],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[18.384,-30.637],[0.054,-0.927],[-15.615,5.066],[-18.111,-7.762],[-1.421,-2.949],[0,0]],"v":[[-27.275,-86.313],[-76.665,-18.692],[-34.09,37.144],[3.277,54.192],[50.487,75.196],[53.709,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.501,-8.139],[79.181,-64.704],[51.181,-45.926],[1.719,-42.128],[-13.318,-74.089],[-15.275,-85.638]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[0,0],[-0.892,-39.375],[-12.966,-7.961],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-2.848,4.746],[-0.342,5.862],[13.851,-4.875],[14.383,6.164],[0,0],[-0.058,2.378]],"o":[[-25.209,10.839],[0.658,29.055],[10.743,6.596],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[18.384,-30.637],[0.054,-0.927],[-15.615,5.066],[-18.111,-7.762],[-1.421,-2.949],[0,0]],"v":[[-27.275,-86.313],[-76.665,-18.692],[-34.09,37.144],[3.277,54.192],[50.487,75.196],[53.709,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.501,-8.139],[79.181,-64.704],[51.181,-45.926],[1.719,-42.128],[-13.318,-74.089],[-15.275,-85.638]],"c":true}],"e":[{"i":[[0,0],[-1.002,-35.252],[-12.021,-7.754],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-2.848,4.746],[-0.342,5.862],[14.389,-4.925],[14.383,6.164],[0,0],[-0.357,2.256]],"o":[[-25.209,10.839],[0.877,29.048],[10.564,6.864],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[18.384,-30.637],[0.054,-0.927],[-15.615,5.066],[-18.111,-7.762],[-1.152,-2.678],[0,0]],"v":[[-27.851,-85.821],[-76.715,-18.025],[-33.507,37.061],[3.277,54.192],[50.487,75.196],[53.709,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.501,-7.239],[80.531,-63.304],[56.656,-42.051],[2.52,-42.328],[-12.818,-74.789],[-13.925,-86.288]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":1,"s":[{"i":[[0,0],[-1.002,-35.252],[-12.021,-7.754],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-2.848,4.746],[-0.342,5.862],[14.389,-4.925],[14.383,6.164],[0,0],[-0.357,2.256]],"o":[[-25.209,10.839],[0.877,29.048],[10.564,6.864],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[18.384,-30.637],[0.054,-0.927],[-15.615,5.066],[-18.111,-7.762],[-1.152,-2.678],[0,0]],"v":[[-27.851,-85.821],[-76.715,-18.025],[-33.507,37.061],[3.277,54.192],[50.487,75.196],[53.709,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.501,-7.239],[80.531,-63.304],[56.656,-42.051],[2.52,-42.328],[-12.818,-74.789],[-13.925,-86.288]],"c":true}],"e":[{"i":[[0,0],[-1.223,-27.007],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-2.848,4.746],[-0.342,5.862],[15.465,-5.024],[14.383,6.164],[0,0],[-0.954,2.013]],"o":[[-30.595,12.15],[1.314,29.034],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[18.384,-30.637],[0.054,-0.927],[-15.615,5.066],[-18.111,-7.762],[-0.612,-2.136],[0,0]],"v":[[-27.251,-85.838],[-75.064,-18.942],[-34.34,37.894],[3.277,54.192],[50.487,75.196],[53.709,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.5,-5.439],[83.231,-60.504],[58.606,-42.301],[4.12,-42.728],[-11.818,-76.189],[-11.225,-87.588]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":3,"s":[{"i":[[0,0],[-1.223,-27.007],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-2.848,4.746],[-0.342,5.862],[15.465,-5.024],[14.383,6.164],[0,0],[-0.954,2.013]],"o":[[-30.595,12.15],[1.314,29.034],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[18.384,-30.637],[0.054,-0.927],[-15.615,5.066],[-18.111,-7.762],[-0.612,-2.136],[0,0]],"v":[[-27.251,-85.838],[-75.064,-18.942],[-34.34,37.894],[3.277,54.192],[50.487,75.196],[53.709,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.5,-5.439],[83.231,-60.504],[58.606,-42.301],[4.12,-42.728],[-11.818,-76.189],[-11.225,-87.588]],"c":true}],"e":[{"i":[[0,0],[-1.223,-27.007],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-2.848,4.746],[-0.342,5.862],[15.465,-5.024],[14.383,6.164],[0,0],[-0.954,2.013]],"o":[[-33.806,13.807],[1.314,29.034],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[18.384,-30.637],[0.054,-0.927],[-15.615,5.066],[-18.111,-7.762],[-0.612,-2.136],[0,0]],"v":[[-26,-85.124],[-73.689,-17.567],[-35.091,36.894],[3.277,54.192],[50.487,75.196],[53.709,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.5,-5.439],[83.588,-60.147],[58.891,-42.515],[4.477,-42.942],[-10.803,-77.446],[-11.583,-87.088]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":4,"s":[{"i":[[0,0],[-1.223,-27.007],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-2.848,4.746],[-0.342,5.862],[15.465,-5.024],[14.383,6.164],[0,0],[-0.954,2.013]],"o":[[-33.806,13.807],[1.314,29.034],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[18.384,-30.637],[0.054,-0.927],[-15.615,5.066],[-18.111,-7.762],[-0.612,-2.136],[0,0]],"v":[[-26,-85.124],[-73.689,-17.567],[-35.091,36.894],[3.277,54.192],[50.487,75.196],[53.709,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.5,-5.439],[83.588,-60.147],[58.891,-42.515],[4.477,-42.942],[-10.803,-77.446],[-11.583,-87.088]],"c":true}],"e":[{"i":[[0,0],[-1.223,-27.007],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-2.848,4.746],[-0.342,5.862],[15.465,-5.024],[14.383,6.164],[0,0],[-0.954,2.013]],"o":[[-25.209,10.839],[1.314,29.034],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[18.384,-30.637],[0.054,-0.927],[-15.615,5.066],[-18.111,-7.762],[-0.612,-2.136],[0,0]],"v":[[-25.251,-80.767],[-68.564,-17.442],[-32.34,36.894],[3.277,54.192],[50.487,75.196],[53.708,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.5,-5.439],[85.016,-58.718],[60.034,-43.372],[5.905,-43.799],[-6.746,-82.475],[-13.011,-85.088]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":8,"s":[{"i":[[0,0],[-1.223,-27.007],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-2.848,4.746],[-0.342,5.862],[15.465,-5.024],[14.383,6.164],[0,0],[-0.954,2.013]],"o":[[-25.209,10.839],[1.314,29.034],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[18.384,-30.637],[0.054,-0.927],[-15.615,5.066],[-18.111,-7.762],[-0.612,-2.136],[0,0]],"v":[[-25.251,-80.767],[-68.564,-17.442],[-32.34,36.894],[3.277,54.192],[50.487,75.196],[53.708,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.5,-5.439],[85.016,-58.718],[60.034,-43.372],[5.905,-43.799],[-6.746,-82.475],[-13.011,-85.088]],"c":true}],"e":[{"i":[[0,0],[-1.223,-27.007],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-2.848,4.746],[-0.342,5.862],[15.465,-5.024],[14.383,6.164],[0,0],[-0.954,2.013]],"o":[[-25.209,10.839],[1.314,29.034],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[18.384,-30.637],[0.054,-0.927],[-15.615,5.066],[-18.111,-7.762],[-0.239,-0.128],[0,0]],"v":[[-25.501,-82.088],[-69.564,-17.192],[-35.09,37.894],[3.277,54.192],[50.487,75.196],[53.709,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.5,-5.439],[85.731,-58.004],[63.106,-42.301],[8.62,-43.728],[-10.318,-75.189],[-10.225,-86.588]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[{"i":[[0,0],[-1.223,-27.007],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-2.848,4.746],[-0.342,5.862],[15.465,-5.024],[14.383,6.164],[0,0],[-0.954,2.013]],"o":[[-25.209,10.839],[1.314,29.034],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[18.384,-30.637],[0.054,-0.927],[-15.615,5.066],[-18.111,-7.762],[-0.239,-0.128],[0,0]],"v":[[-25.501,-82.088],[-69.564,-17.192],[-35.09,37.894],[3.277,54.192],[50.487,75.196],[53.709,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.5,-5.439],[85.731,-58.004],[63.106,-42.301],[8.62,-43.728],[-10.318,-75.189],[-10.225,-86.588]],"c":true}],"e":[{"i":[[0,0],[-1.232,-29.566],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-3.479,4.226],[5.072,8.183],[34.526,-7.395],[18.229,11.412],[0,0],[-0.954,2.013]],"o":[[-25.209,10.839],[1.218,29.038],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[24.789,-29.383],[-0.353,-0.731],[-17.773,4.349],[-14.921,-8.308],[-0.675,-1.007],[0,0]],"v":[[-25.625,-86.463],[-71.314,-21.567],[-33.716,37.394],[3.277,54.192],[50.487,75.196],[53.708,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.5,-5.439],[86.731,-67.754],[46.606,-46.551],[9.62,-54.978],[-6.568,-79.689],[-11.475,-89.338]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":15,"s":[{"i":[[0,0],[-1.232,-29.566],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-3.479,4.226],[5.072,8.183],[34.526,-7.395],[18.229,11.412],[0,0],[-0.954,2.013]],"o":[[-25.209,10.839],[1.218,29.038],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[24.789,-29.383],[-0.353,-0.731],[-17.773,4.349],[-14.921,-8.308],[-0.675,-1.007],[0,0]],"v":[[-25.625,-86.463],[-71.314,-21.567],[-33.716,37.394],[3.277,54.192],[50.487,75.196],[53.708,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.5,-5.439],[86.731,-67.754],[46.606,-46.551],[9.62,-54.978],[-6.568,-79.689],[-11.475,-89.338]],"c":true}],"e":[{"i":[[0,0],[-1.236,-30.59],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-3.732,4.018],[4.429,5.884],[42.151,-8.344],[19.767,13.512],[0,0],[-0.954,2.013]],"o":[[-25.209,10.839],[1.18,29.04],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[27.35,-28.881],[-0.515,-0.652],[-18.636,4.062],[-13.645,-8.527],[-0.85,-1.359],[0,0]],"v":[[-25.675,-88.213],[-72.014,-23.317],[-33.166,37.194],[3.277,54.192],[50.487,75.196],[53.708,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.5,-5.439],[88.331,-67.254],[40.006,-48.251],[10.02,-59.478],[-1.068,-83.989],[-4.975,-90.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":17,"s":[{"i":[[0,0],[-1.236,-30.59],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-3.732,4.018],[4.429,5.884],[42.151,-8.344],[19.767,13.512],[0,0],[-0.954,2.013]],"o":[[-25.209,10.839],[1.18,29.04],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[27.35,-28.881],[-0.515,-0.652],[-18.636,4.062],[-13.645,-8.527],[-0.85,-1.359],[0,0]],"v":[[-25.675,-88.213],[-72.014,-23.317],[-33.166,37.194],[3.277,54.192],[50.487,75.196],[53.708,65.025],[51.647,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.5,-5.439],[88.331,-67.254],[40.006,-48.251],[10.02,-59.478],[-1.068,-83.989],[-4.975,-90.438]],"c":true}],"e":[{"i":[[0,0],[-1.242,-32.125],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-4.111,3.707],[3.463,2.437],[53.588,-9.766],[22.074,16.661],[0,0],[-0.954,2.013]],"o":[[-25.209,10.839],[1.123,29.042],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[31.193,-28.128],[-0.759,-0.534],[-19.931,3.632],[-11.731,-8.854],[-1.112,-1.886],[0,0]],"v":[[-25.75,-90.838],[-73.064,-25.942],[-32.341,36.894],[3.277,54.192],[50.486,75.196],[53.708,65.025],[51.646,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.501,-5.439],[90.731,-66.504],[30.106,-50.801],[10.62,-66.228],[-2.818,-84.189],[-12.725,-92.088]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20,"s":[{"i":[[0,0],[-1.242,-32.125],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-4.111,3.707],[3.463,2.437],[53.588,-9.766],[22.074,16.661],[0,0],[-0.954,2.013]],"o":[[-25.209,10.839],[1.123,29.042],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[31.193,-28.128],[-0.759,-0.534],[-19.931,3.632],[-11.731,-8.854],[-1.112,-1.886],[0,0]],"v":[[-25.75,-90.838],[-73.064,-25.942],[-32.341,36.894],[3.277,54.192],[50.486,75.196],[53.708,65.025],[51.646,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.501,-5.439],[90.731,-66.504],[30.106,-50.801],[10.62,-66.228],[-2.818,-84.189],[-12.725,-92.088]],"c":true}],"e":[{"i":[[0,0],[-1.242,-32.125],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-4.169,3.633],[3.749,2.294],[50.126,-11.127],[5.892,2.933],[0,0],[-0.954,2.267]],"o":[[-25.209,10.839],[1.123,29.042],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[33.259,-28.717],[-0.779,-0.492],[-19.934,4.987],[-13.158,-6.549],[-1.112,-0.299],[0,0]],"v":[[-25.75,-90.838],[-73.064,-25.942],[-32.341,36.894],[3.277,54.192],[50.486,75.196],[53.708,65.025],[51.646,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.501,-5.439],[89.231,-68.433],[25.927,-62.73],[7.012,-71.871],[-0.675,-85.796],[-9.44,-93.838]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":21,"s":[{"i":[[0,0],[-1.242,-32.125],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-4.169,3.633],[3.749,2.294],[50.126,-11.127],[5.892,2.933],[0,0],[-0.954,2.267]],"o":[[-25.209,10.839],[1.123,29.042],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[33.259,-28.717],[-0.779,-0.492],[-19.934,4.987],[-13.158,-6.549],[-1.112,-0.299],[0,0]],"v":[[-25.75,-90.838],[-73.064,-25.942],[-32.341,36.894],[3.277,54.192],[50.486,75.196],[53.708,65.025],[51.646,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.501,-5.439],[89.231,-68.433],[25.927,-62.73],[7.012,-71.871],[-0.675,-85.796],[-9.44,-93.838]],"c":true}],"e":[{"i":[[0,0],[-1.242,-32.125],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-4.521,3.193],[5.463,1.437],[34.653,-5.737],[6.035,3.29],[0,0],[-0.954,2.013]],"o":[[-25.209,10.839],[1.123,29.042],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[45.654,-32.249],[-0.898,-0.236],[-3.701,0.613],[-12.905,-7.034],[-1.112,-1.886],[0,0]],"v":[[-25.75,-90.838],[-73.064,-25.942],[-32.34,36.894],[3.277,54.192],[50.486,75.196],[53.708,65.025],[51.646,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.501,-5.439],[80.231,-80.004],[15.856,-82.051],[-2.13,-80.228],[-13.818,-86.939],[-16.975,-87.838]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":27,"s":[{"i":[[0,0],[-1.242,-32.125],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-4.521,3.193],[5.463,1.437],[34.653,-5.737],[6.035,3.29],[0,0],[-0.954,2.013]],"o":[[-25.209,10.839],[1.123,29.042],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[45.654,-32.249],[-0.898,-0.236],[-3.701,0.613],[-12.905,-7.034],[-1.112,-1.886],[0,0]],"v":[[-25.75,-90.838],[-73.064,-25.942],[-32.34,36.894],[3.277,54.192],[50.486,75.196],[53.708,65.025],[51.646,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.501,-5.439],[80.231,-80.004],[15.856,-82.051],[-2.13,-80.228],[-13.818,-86.939],[-16.975,-87.838]],"c":true}],"e":[{"i":[[0,0],[-1.038,-32.132],[-10.13,-7.341],[-13.081,-3.9],[-7.505,5.892],[0.043,1.707],[1.19,2.06],[3.255,7.963],[1.685,7.764],[2.029,2.065],[-4.521,3.193],[5.463,1.437],[34.653,-5.737],[6.035,3.29],[0,0],[-0.954,2.013]],"o":[[-25.209,10.839],[0.969,30.004],[10.207,7.399],[15.331,17.493],[3.412,-2.68],[-0.072,-2.866],[-3.047,-5.271],[-4.193,-10.261],[-0.461,-2.126],[5.804,-4.415],[45.654,-32.249],[-0.898,-0.236],[-3.701,0.613],[-12.905,-7.034],[-1.112,-1.886],[0,0]],"v":[[-25.751,-90.838],[-74.314,-25.442],[-32.34,36.894],[3.277,54.192],[50.486,75.196],[53.708,65.025],[51.646,57.816],[39.652,40.825],[38.669,14.84],[34.919,8.443],[48.501,-5.439],[80.23,-80.004],[15.856,-82.051],[-2.13,-80.228],[-13.818,-86.939],[-16.975,-87.838]],"c":true}]},{"t":44.0000017921567}],"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":-7,"s":[0,0.945,0.482,0.482,0.5,0.933,0.449,0.48,1,0.922,0.416,0.478],"e":[0,0.976,0.576,0.576,0.293,0.949,0.496,0.527,1,0.922,0.416,0.478]},{"t":13.0000005295009}],"ix":9}},"s":{"a":0,"k":[0,0],"ix":5},"e":{"a":0,"k":[205.551,62.645],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929411768913,0.443137258291,0.494117647409,0.780392169952],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[71.305,81.834],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":-7.00000028511585,"op":74.0000030140818,"st":-7.00000028511585,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"body Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[215.042,212.344,0],"ix":2},"a":{"a":0,"k":[105.653,119.584,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[-4.385,-6.973],[-1.226,-27.084],[-10.129,-7.341],[-31.99,21.326],[16.813,44.069],[8.368,8.625]],"o":[[-25.311,10.785],[1.313,29.033],[30.302,21.963],[40.813,-27.209],[-3.649,-9.565],[-9.804,-10.105]],"v":[[-60.402,-30.423],[-104.176,33.323],[-67.953,87.658],[43.305,98.008],[72.002,-25.723],[58.394,-55.47]],"c":true}],"e":[{"i":[[27.275,-9.755],[-1.226,-27.084],[-10.129,-7.341],[-31.99,21.326],[16.801,44.063],[5.521,11.704]],"o":[[-25.311,10.785],[1.313,29.033],[30.302,21.963],[40.805,-27.204],[-3.649,-9.569],[-7.1,-15.754]],"v":[[-52.554,-28.59],[-97.249,34.323],[-67.953,87.658],[43.305,98.008],[71.356,-22.363],[59.392,-56.141]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[{"i":[[27.275,-9.755],[-1.226,-27.084],[-10.129,-7.341],[-31.99,21.326],[16.801,44.063],[5.521,11.704]],"o":[[-25.311,10.785],[1.313,29.033],[30.302,21.963],[40.805,-27.204],[-3.649,-9.569],[-7.1,-15.754]],"v":[[-52.554,-28.59],[-97.249,34.323],[-67.953,87.658],[43.305,98.008],[71.356,-22.363],[59.392,-56.141]],"c":true}],"e":[{"i":[[-4.385,-6.973],[-0.771,-35.167],[-10.129,-7.341],[-31.99,21.326],[16.796,44.06],[4.098,13.244]],"o":[[-25.311,10.785],[0.637,29.056],[30.302,21.963],[40.8,-27.201],[-3.649,-9.572],[-5.748,-18.578]],"v":[[-41.454,-31.423],[-96.754,31.323],[-67.953,87.658],[43.305,98.008],[71.033,-20.682],[59.891,-56.476]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":15,"s":[{"i":[[-4.385,-6.973],[-0.771,-35.167],[-10.129,-7.341],[-31.99,21.326],[16.796,44.06],[4.098,13.244]],"o":[[-25.311,10.785],[0.637,29.056],[30.302,21.963],[40.8,-27.201],[-3.649,-9.572],[-5.748,-18.578]],"v":[[-41.454,-31.423],[-96.754,31.323],[-67.953,87.658],[43.305,98.008],[71.033,-20.682],[59.891,-56.476]],"c":true}],"e":[{"i":[[-4.385,-6.973],[-0.771,-38.667],[-10.129,-7.341],[-31.99,21.326],[16.796,44.06],[4.098,13.244]],"o":[[-25.311,10.785],[0.58,29.057],[30.302,21.963],[40.8,-27.201],[-3.649,-9.572],[-5.748,-18.578]],"v":[[-42.902,-8.423],[-96.259,30.823],[-66.964,86.158],[43.305,98.008],[71.033,-20.682],[59.891,-56.476]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":17,"s":[{"i":[[-4.385,-6.973],[-0.771,-38.667],[-10.129,-7.341],[-31.99,21.326],[16.796,44.06],[4.098,13.244]],"o":[[-25.311,10.785],[0.58,29.057],[30.302,21.963],[40.8,-27.201],[-3.649,-9.572],[-5.748,-18.578]],"v":[[-42.902,-8.423],[-96.259,30.823],[-66.964,86.158],[43.305,98.008],[71.033,-20.682],[59.891,-56.476]],"c":true}],"e":[{"i":[[4.444,-5.422],[-1.226,-27.084],[-10.129,-7.341],[-21.574,9.648],[11.585,22.378],[51.217,4.638]],"o":[[-42.566,8.078],[1.313,29.033],[30.302,21.963],[44.778,-20.024],[-4.706,-9.091],[-64.868,-5.874]],"v":[[-39.619,-39.923],[-101.207,28.823],[-63.005,83.658],[25.491,89.508],[64.085,-28.223],[24.25,3.03]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20,"s":[{"i":[[4.444,-5.422],[-1.226,-27.084],[-10.129,-7.341],[-21.574,9.648],[11.585,22.378],[51.217,4.638]],"o":[[-42.566,8.078],[1.313,29.033],[30.302,21.963],[44.778,-20.024],[-4.706,-9.091],[-64.868,-5.874]],"v":[[-39.619,-39.923],[-101.207,28.823],[-63.005,83.658],[25.491,89.508],[64.085,-28.223],[24.25,3.03]],"c":true}],"e":[{"i":[[4.418,-5.443],[-1.355,-27.077],[-10.164,-7.291],[-21.717,9.306],[17.489,28.78],[51.238,4.386]],"o":[[-42.526,8.288],[1.452,29.025],[30.406,21.813],[43.984,-18.897],[-4.652,-8.285],[-64.894,-5.555]],"v":[[-39.953,-39.766],[-101.21,29.281],[-62.747,83.925],[25.774,89.339],[60.977,-29.96],[15.481,-8.56]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":22,"s":[{"i":[[4.418,-5.443],[-1.355,-27.077],[-10.164,-7.291],[-21.717,9.306],[17.489,28.78],[51.238,4.386]],"o":[[-42.526,8.288],[1.452,29.025],[30.406,21.813],[43.984,-18.897],[-4.652,-8.285],[-64.894,-5.555]],"v":[[-39.953,-39.766],[-101.21,29.281],[-62.747,83.925],[25.774,89.339],[60.977,-29.96],[15.481,-8.56]],"c":true}],"e":[{"i":[[4.353,-5.497],[-1.678,-27.059],[-10.25,-7.166],[-22.074,8.451],[32.249,44.785],[51.288,3.754]],"o":[[-42.425,8.812],[1.799,29.006],[30.665,21.437],[41.998,-16.079],[-4.515,-6.27],[-64.957,-4.755]],"v":[[-40.787,-39.373],[-101.216,30.425],[-62.102,84.593],[26.48,88.916],[53.208,-34.302],[12.438,-25.336]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":27,"s":[{"i":[[4.353,-5.497],[-1.678,-27.059],[-10.25,-7.166],[-22.074,8.451],[32.249,44.785],[51.288,3.754]],"o":[[-42.425,8.812],[1.799,29.006],[30.665,21.437],[41.998,-16.079],[-4.515,-6.27],[-64.957,-4.755]],"v":[[-40.787,-39.373],[-101.216,30.425],[-62.102,84.593],[26.48,88.916],[53.208,-34.302],[12.438,-25.336]],"c":true}],"e":[{"i":[[4.353,-5.497],[-1.678,-27.059],[-10.25,-7.166],[-22.074,8.451],[32.249,44.785],[51.288,3.754]],"o":[[-42.425,8.812],[1.799,29.006],[30.665,21.437],[41.998,-16.079],[-4.515,-6.27],[-64.957,-4.755]],"v":[[-40.787,-39.373],[-101.216,30.425],[-62.102,84.593],[26.48,88.916],[47.324,-34.302],[6.554,-25.336]],"c":true}]},{"t":44.0000017921567}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976470589638,0.57647061348,0.57647061348,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[105.652,119.584],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[101.965,100.425],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":74.0000030140818,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"Layer 16 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":4,"s":[283.791,274.096,0],"e":[254.791,277.096,0],"to":[-4.83333349227905,0.5,0],"ti":[4.83333349227905,-0.5,0]},{"t":20.0000008146167}],"ix":2},"a":{"a":0,"k":[30.875,60.135,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.31,-0.044],[-28.761,-20.085],[-4.325,5.022],[0.564,4.838],[-1.952,17.562],[11.602,-0.002]],"o":[[-20.659,2.912],[11.425,7.977],[3.694,-4.289],[-2.494,-21.449],[2.707,-24.365],[-0.32,0]],"v":[[-0.28,-59.818],[-1.864,51.909],[21.29,54.394],[17.525,40.979],[27.918,-7.348],[0.666,-59.883]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"mm","mm":4,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.960784316063,0.529411792755,0.54509806633,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[30.875,60.136],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":74.0000030140818,"st":0,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"tail Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[100],"e":[91]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":27,"s":[91],"e":[89]},{"t":44.0000017921567}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[0],"e":[-55.159]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":20,"s":[-55.159],"e":[-89]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":27,"s":[-89],"e":[-94.919]},{"t":44.0000017921567}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[173.952,138.253,0],"e":[146.452,166.253,0],"to":[-4.58333349227905,4.66666650772095,0],"ti":[6.58333349227905,-11.8333330154419,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20,"s":[146.452,166.253,0],"e":[134.452,209.253,0],"to":[-6.58333349227905,11.8333330154419,0],"ti":[1.66666662693024,-2.33333325386047,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":27,"s":[134.452,209.253,0],"e":[136.452,216.253,0],"to":[-1.30678021907806,1.82949221134186,0],"ti":[0.33333334326744,-1,0]},{"t":44.0000017921567}],"ix":2},"a":{"a":0,"k":[78.813,88.203,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[14.768,-14.53],[-4.1,-44.641],[-5.598,-4.96],[-20.404,19.394],[0.318,36.222],[16.513,7.487],[8.129,0]],"o":[[-5.885,5.787],[3.426,37.312],[39.318,-25.355],[28.258,-26.86],[-0.234,-26.482],[-7.943,-3.601],[-26.61,0.002]],"v":[[-43.921,-56.941],[-74.463,23.268],[-41.377,87.954],[17.162,28.443],[78.245,-36.242],[47.702,-82.816],[23.447,-87.954]],"c":true}],"e":[{"i":[[11.234,-17.407],[-5.25,-44.52],[-11.649,-0.804],[-5.178,4.83],[1.678,38.616],[17.306,3.081],[8.291,-3.11]],"o":[[-12.182,18.876],[1.368,11.601],[13.265,-2.869],[28.508,-26.595],[-1.398,-32.158],[-8.586,-1.529],[-24.915,9.346]],"v":[[-51.965,-52.782],[-69.512,27.795],[-33.381,47.394],[1.225,25.992],[59.229,-50.9],[27.752,-97.116],[-7.135,-92.281]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":44,"s":[{"i":[[11.234,-17.407],[-5.25,-44.52],[-11.649,-0.804],[-5.178,4.83],[1.678,38.616],[17.306,3.081],[8.291,-3.11]],"o":[[-12.182,18.876],[1.368,11.601],[13.265,-2.869],[28.508,-26.595],[-1.398,-32.158],[-8.586,-1.529],[-24.915,9.346]],"v":[[-51.965,-52.782],[-69.512,27.795],[-33.381,47.394],[1.225,25.992],[59.229,-50.9],[27.752,-97.116],[-7.135,-92.281]],"c":true}],"e":[{"i":[[11.234,-17.407],[-5.25,-44.52],[-11.649,-0.804],[-5.178,4.83],[1.629,40.629],[17.306,3.081],[8.291,-3.11]],"o":[[-12.182,18.876],[1.368,11.601],[13.265,-2.869],[28.508,-26.595],[-1.289,-32.162],[-8.586,-1.529],[-24.915,9.346]],"v":[[-51.965,-52.782],[-69.512,27.795],[-33.381,47.394],[1.225,25.992],[59.229,-50.9],[27.752,-97.116],[-7.135,-92.281]],"c":true}]},{"t":67.0000027289659}],"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.920680165291,0.441554158926,0.441554158926,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[78.813,88.203],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":74.0000030140818,"st":0,"bm":0}],"markers":[]}
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/MainActivity.cs:
--------------------------------------------------------------------------------
1 | using Android.App;
2 | using Android.Content.PM;
3 | using Android.OS;
4 | using Lottie.Forms.Droid;
5 |
6 | namespace Walkthrough.Droid
7 | {
8 | [Activity(Label = "Walkthrough", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
9 | public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
10 | {
11 | protected override void OnCreate(Bundle bundle)
12 | {
13 | TabLayoutResource = Resource.Layout.Tabbar;
14 | ToolbarResource = Resource.Layout.Toolbar;
15 |
16 | base.OnCreate(bundle);
17 |
18 | global::Xamarin.Forms.Forms.Init(this, bundle);
19 | AnimationViewRenderer.Init();
20 |
21 | LoadApplication(new App());
22 | }
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 | using Android.App;
5 |
6 | // General Information about an assembly is controlled through the following
7 | // set of attributes. Change these attribute values to modify the information
8 | // associated with an assembly.
9 | [assembly: AssemblyTitle("Walkthrough.Android")]
10 | [assembly: AssemblyDescription("")]
11 | [assembly: AssemblyConfiguration("")]
12 | [assembly: AssemblyCompany("")]
13 | [assembly: AssemblyProduct("Walkthrough.Android")]
14 | [assembly: AssemblyCopyright("Copyright © 2014")]
15 | [assembly: AssemblyTrademark("")]
16 | [assembly: AssemblyCulture("")]
17 | [assembly: ComVisible(false)]
18 |
19 | // Version information for an assembly consists of the following four values:
20 | //
21 | // Major Version
22 | // Minor Version
23 | // Build Number
24 | // Revision
25 | //
26 | // You can specify all the values or you can default the Build and Revision Numbers
27 | // by using the '*' as shown below:
28 | // [assembly: AssemblyVersion("1.0.*")]
29 | [assembly: AssemblyVersion("1.0.0.0")]
30 | [assembly: AssemblyFileVersion("1.0.0.0")]
31 |
32 | // Add some common permissions, these can be removed if not needed
33 | [assembly: UsesPermission(Android.Manifest.Permission.Internet)]
34 | [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)]
35 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/AboutResources.txt:
--------------------------------------------------------------------------------
1 | Images, layout descriptions, binary blobs and string dictionaries can be included
2 | in your application as resource files. Various Android APIs are designed to
3 | operate on the resource IDs instead of dealing with images, strings or binary blobs
4 | directly.
5 |
6 | For example, a sample Android app that contains a user interface layout (main.xml),
7 | an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
8 | would keep its resources in the "Resources" directory of the application:
9 |
10 | Resources/
11 | drawable-hdpi/
12 | icon.png
13 |
14 | drawable-ldpi/
15 | icon.png
16 |
17 | drawable-mdpi/
18 | icon.png
19 |
20 | layout/
21 | main.xml
22 |
23 | values/
24 | strings.xml
25 |
26 | In order to get the build system to recognize Android resources, set the build action to
27 | "AndroidResource". The native Android APIs do not operate directly with filenames, but
28 | instead operate on resource IDs. When you compile an Android application that uses resources,
29 | the build system will package the resources for distribution and generate a class called
30 | "Resource" that contains the tokens for each one of the resources included. For example,
31 | for the above Resources layout, this is what the Resource class would expose:
32 |
33 | public class Resource {
34 | public class drawable {
35 | public const int icon = 0x123;
36 | }
37 |
38 | public class layout {
39 | public const int main = 0x456;
40 | }
41 |
42 | public class strings {
43 | public const int first_string = 0xabc;
44 | public const int second_string = 0xbcd;
45 | }
46 | }
47 |
48 | You would then use R.drawable.icon to reference the drawable/icon.png file, or Resource.layout.main
49 | to reference the layout/main.xml file, or Resource.strings.first_string to reference the first
50 | string in the dictionary file values/strings.xml.
51 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/layout/Tabbar.axml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/layout/Toolbar.axml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/mipmap-anydpi-v26/icon.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/mipmap-anydpi-v26/icon_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/mipmap-hdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.Android/Resources/mipmap-hdpi/Icon.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/mipmap-hdpi/launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.Android/Resources/mipmap-hdpi/launcher_foreground.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/mipmap-mdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.Android/Resources/mipmap-mdpi/icon.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/mipmap-mdpi/launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.Android/Resources/mipmap-mdpi/launcher_foreground.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/mipmap-xhdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.Android/Resources/mipmap-xhdpi/Icon.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/mipmap-xhdpi/launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.Android/Resources/mipmap-xhdpi/launcher_foreground.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/mipmap-xxhdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.Android/Resources/mipmap-xxhdpi/Icon.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/mipmap-xxhdpi/launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.Android/Resources/mipmap-xxhdpi/launcher_foreground.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/mipmap-xxxhdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.Android/Resources/mipmap-xxxhdpi/Icon.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FFFFFF
4 | #3F51B5
5 | #303F9F
6 | #FF4081
7 |
8 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Resources/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
7 |
26 |
27 |
30 |
31 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.Android/Walkthrough.Android.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | AnyCPU
6 | {929EE228-06F0-4E20-9997-C69945F16C5F}
7 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
8 | {c9e5eea5-ca05-42a1-839b-61506e0a37df}
9 | Library
10 | Walkthrough.Droid
11 | Walkthrough.Android
12 | True
13 | Resources\Resource.designer.cs
14 | Resource
15 | Properties\AndroidManifest.xml
16 | Resources
17 | Assets
18 | false
19 | v8.1
20 |
21 |
22 |
23 |
24 | true
25 | full
26 | false
27 | bin\Debug
28 | DEBUG;
29 | prompt
30 | 4
31 | None
32 |
33 |
34 | true
35 | pdbonly
36 | true
37 | bin\Release
38 | prompt
39 | 4
40 | true
41 | false
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 | 5.2.0
53 |
54 |
55 | 2.5.2.1
56 |
57 |
58 | 1.1.0
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 | {060DF97C-67E8-4C9F-BA88-6EDDE036CCE1}
109 | Walkthrough
110 |
111 |
112 |
113 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/AppDelegate.cs:
--------------------------------------------------------------------------------
1 | using CarouselView.FormsPlugin.iOS;
2 | using Foundation;
3 | using Lottie.Forms.iOS.Renderers;
4 | using UIKit;
5 |
6 | namespace Walkthrough.iOS
7 | {
8 | // The UIApplicationDelegate for the application. This class is responsible for launching the
9 | // User Interface of the application, as well as listening (and optionally responding) to
10 | // application events from iOS.
11 | [Register("AppDelegate")]
12 | public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
13 | {
14 | //
15 | // This method is invoked when the application has loaded and is ready to run. In this
16 | // method you should instantiate the window, load the UI into it and then make the window
17 | // visible.
18 | //
19 | // You have 17 seconds to return from this method, or iOS will terminate your application.
20 | //
21 | public override bool FinishedLaunching(UIApplication app, NSDictionary options)
22 | {
23 | global::Xamarin.Forms.Forms.Init();
24 |
25 | CarouselViewRenderer.Init();
26 | AnimationViewRenderer.Init();
27 |
28 | LoadApplication(new App());
29 |
30 | return base.FinishedLaunching(app, options);
31 | }
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images": [
3 | {
4 | "scale": "2x",
5 | "size": "20x20",
6 | "idiom": "iphone",
7 | "filename": "Icon40.png"
8 | },
9 | {
10 | "scale": "3x",
11 | "size": "20x20",
12 | "idiom": "iphone",
13 | "filename": "Icon60.png"
14 | },
15 | {
16 | "scale": "2x",
17 | "size": "29x29",
18 | "idiom": "iphone",
19 | "filename": "Icon58.png"
20 | },
21 | {
22 | "scale": "3x",
23 | "size": "29x29",
24 | "idiom": "iphone",
25 | "filename": "Icon87.png"
26 | },
27 | {
28 | "scale": "2x",
29 | "size": "40x40",
30 | "idiom": "iphone",
31 | "filename": "Icon80.png"
32 | },
33 | {
34 | "scale": "3x",
35 | "size": "40x40",
36 | "idiom": "iphone",
37 | "filename": "Icon120.png"
38 | },
39 | {
40 | "scale": "2x",
41 | "size": "60x60",
42 | "idiom": "iphone",
43 | "filename": "Icon120.png"
44 | },
45 | {
46 | "scale": "3x",
47 | "size": "60x60",
48 | "idiom": "iphone",
49 | "filename": "Icon180.png"
50 | },
51 | {
52 | "scale": "1x",
53 | "size": "20x20",
54 | "idiom": "ipad",
55 | "filename": "Icon20.png"
56 | },
57 | {
58 | "scale": "2x",
59 | "size": "20x20",
60 | "idiom": "ipad",
61 | "filename": "Icon40.png"
62 | },
63 | {
64 | "scale": "1x",
65 | "size": "29x29",
66 | "idiom": "ipad",
67 | "filename": "Icon29.png"
68 | },
69 | {
70 | "scale": "2x",
71 | "size": "29x29",
72 | "idiom": "ipad",
73 | "filename": "Icon58.png"
74 | },
75 | {
76 | "scale": "1x",
77 | "size": "40x40",
78 | "idiom": "ipad",
79 | "filename": "Icon40.png"
80 | },
81 | {
82 | "scale": "2x",
83 | "size": "40x40",
84 | "idiom": "ipad",
85 | "filename": "Icon80.png"
86 | },
87 | {
88 | "scale": "1x",
89 | "size": "76x76",
90 | "idiom": "ipad",
91 | "filename": "Icon76.png"
92 | },
93 | {
94 | "scale": "2x",
95 | "size": "76x76",
96 | "idiom": "ipad",
97 | "filename": "Icon152.png"
98 | },
99 | {
100 | "scale": "2x",
101 | "size": "83.5x83.5",
102 | "idiom": "ipad",
103 | "filename": "Icon167.png"
104 | },
105 | {
106 | "scale": "1x",
107 | "size": "1024x1024",
108 | "idiom": "ios-marketing"
109 | }
110 | ],
111 | "properties": {},
112 | "info": {
113 | "version": 1,
114 | "author": "xcode"
115 | }
116 | }
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | UIDeviceFamily
6 |
7 | 1
8 | 2
9 |
10 | UISupportedInterfaceOrientations
11 |
12 | UIInterfaceOrientationPortrait
13 | UIInterfaceOrientationLandscapeLeft
14 | UIInterfaceOrientationLandscapeRight
15 |
16 | UISupportedInterfaceOrientations~ipad
17 |
18 | UIInterfaceOrientationPortrait
19 | UIInterfaceOrientationPortraitUpsideDown
20 | UIInterfaceOrientationLandscapeLeft
21 | UIInterfaceOrientationLandscapeRight
22 |
23 | MinimumOSVersion
24 | 8.0
25 | CFBundleDisplayName
26 | Walkthrough
27 | CFBundleIdentifier
28 | com.companyname.Walkthrough
29 | CFBundleVersion
30 | 1.0
31 | UILaunchStoryboardName
32 | LaunchScreen
33 | CFBundleName
34 | Walkthrough
35 | XSAppIconAssets
36 | Assets.xcassets/AppIcon.appiconset
37 |
38 |
39 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Main.cs:
--------------------------------------------------------------------------------
1 | using UIKit;
2 |
3 | namespace Walkthrough.iOS
4 | {
5 | public class Application
6 | {
7 | // This is the main entry point of the application.
8 | static void Main(string[] args)
9 | {
10 | // if you want to use a different Application Delegate class from "AppDelegate"
11 | // you can specify it here.
12 | UIApplication.Main(args, null, "AppDelegate");
13 | }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("Walkthrough.iOS")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("Walkthrough.iOS")]
13 | [assembly: AssemblyCopyright("Copyright © 2014")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Setting ComVisible to false makes the types in this assembly not visible
18 | // to COM components. If you need to access a type in this assembly from
19 | // COM, set the ComVisible attribute to true on that type.
20 | [assembly: ComVisible(false)]
21 |
22 | // The following GUID is for the ID of the typelib if this project is exposed to COM
23 | [assembly: Guid("72bdc44f-c588-44f3-b6df-9aace7daafdd")]
24 |
25 | // Version information for an assembly consists of the following four values:
26 | //
27 | // Major Version
28 | // Minor Version
29 | // Build Number
30 | // Revision
31 | //
32 | // You can specify all the values or you can default the Build and Revision Numbers
33 | // by using the '*' as shown below:
34 | // [assembly: AssemblyVersion("1.0.*")]
35 | [assembly: AssemblyVersion("1.0.0.0")]
36 | [assembly: AssemblyFileVersion("1.0.0.0")]
37 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Resources/Default.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Resources/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-walkthrough/38d9d542c6cdab5eff5de91a294d385521816bb5/src/Walkthrough/Walkthrough.iOS/Resources/Default@2x.png
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Resources/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough.iOS/Walkthrough.iOS.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | iPhoneSimulator
6 | 8.0.30703
7 | 2.0
8 | {C4129FBD-0712-47BA-B580-327427793F8F}
9 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
10 | {6143fdea-f3c2-4a09-aafa-6e230626515e}
11 | Exe
12 | Walkthrough.iOS
13 | Resources
14 | Walkthrough.iOS
15 |
16 |
17 |
18 |
19 | true
20 | full
21 | false
22 | bin\iPhoneSimulator\Debug
23 | DEBUG
24 | prompt
25 | 4
26 | false
27 | x86_64
28 | None
29 | true
30 |
31 |
32 | none
33 | true
34 | bin\iPhoneSimulator\Release
35 | prompt
36 | 4
37 | None
38 | x86_64
39 | false
40 |
41 |
42 | true
43 | full
44 | false
45 | bin\iPhone\Debug
46 | DEBUG
47 | prompt
48 | 4
49 | false
50 | ARM64
51 | iPhone Developer
52 | true
53 | Entitlements.plist
54 |
55 |
56 | none
57 | true
58 | bin\iPhone\Release
59 | prompt
60 | 4
61 | ARM64
62 | false
63 | iPhone Developer
64 | Entitlements.plist
65 |
66 |
67 | none
68 | True
69 | bin\iPhone\Ad-Hoc
70 | prompt
71 | 4
72 | False
73 | ARM64
74 | True
75 | Automatic:AdHoc
76 | iPhone Distribution
77 | Entitlements.plist
78 |
79 |
80 | none
81 | True
82 | bin\iPhone\AppStore
83 | prompt
84 | 4
85 | False
86 | ARM64
87 | Automatic:AppStore
88 | iPhone Distribution
89 | Entitlements.plist
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 | false
106 |
107 |
108 | false
109 |
110 |
111 | false
112 |
113 |
114 | false
115 |
116 |
117 | false
118 |
119 |
120 | false
121 |
122 |
123 | false
124 |
125 |
126 | false
127 |
128 |
129 | false
130 |
131 |
132 | false
133 |
134 |
135 | false
136 |
137 |
138 | false
139 |
140 |
141 | false
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 | 5.2.0
153 |
154 |
155 | 2.5.2.1
156 |
157 |
158 | 1.1.0
159 |
160 |
161 |
162 |
163 |
164 |
165 | {060DF97C-67E8-4C9F-BA88-6EDDE036CCE1}
166 | Walkthrough
167 |
168 |
169 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough/App.xaml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 | #98A5D2
11 | #40C2F3
13 | #E3EAE2
15 | #1DB890
17 |
18 |
34 |
35 |
54 |
55 |
56 |
57 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using Walkthrough.Views;
2 | using Xamarin.Forms;
3 |
4 | namespace Walkthrough
5 | {
6 | public partial class App : Application
7 | {
8 | public App ()
9 | {
10 | InitializeComponent();
11 |
12 | MainPage = new WalkthroughView();
13 | }
14 |
15 | protected override void OnStart ()
16 | {
17 | // Handle when your app starts
18 | }
19 |
20 | protected override void OnSleep ()
21 | {
22 | // Handle when your app sleeps
23 | }
24 |
25 | protected override void OnResume ()
26 | {
27 | // Handle when your app resumes
28 | }
29 | }
30 | }
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough/Views/Walkthrough/AcrobaticsView.xaml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
16 |
17 |
20 |
23 |
27 |
28 |
29 |
30 |
31 |
34 |
35 |
37 |
39 |
40 |
51 |
58 |
61 |
74 |
75 |
76 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough/Views/Walkthrough/AcrobaticsView.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamanimation;
2 |
3 | namespace Walkthrough.Views.Walkthrough
4 | {
5 | public partial class AcrobaticsView : IAnimatedView
6 | {
7 | public AcrobaticsView()
8 | {
9 | InitializeComponent();
10 | }
11 |
12 | public void StartAnimation()
13 | {
14 | if (Resources["BackgroundColorAnimation"] is ColorAnimation backgroundColorAnimation)
15 | {
16 | backgroundColorAnimation.Begin();
17 | }
18 |
19 | if (Resources["InfoPanelAnimation"] is StoryBoard infoPanelAnimation)
20 | {
21 | infoPanelAnimation.Begin();
22 | }
23 | }
24 | }
25 | }
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough/Views/Walkthrough/BikingCoolView.xaml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
16 |
17 |
20 |
23 |
27 |
28 |
29 |
30 |
31 |
34 |
35 |
37 |
39 |
40 |
50 |
57 |
60 |
73 |
74 |
75 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough/Views/Walkthrough/BikingCoolView.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamanimation;
2 |
3 | namespace Walkthrough.Views.Walkthrough
4 | {
5 | public partial class BikingCoolView : IAnimatedView
6 | {
7 | public BikingCoolView()
8 | {
9 | InitializeComponent ();
10 | }
11 |
12 | public void StartAnimation()
13 | {
14 | if (Resources["BackgroundColorAnimation"] is ColorAnimation backgroundColorAnimation)
15 | {
16 | backgroundColorAnimation.Begin();
17 | }
18 |
19 | if (Resources["InfoPanelAnimation"] is StoryBoard animation)
20 | {
21 | animation.Begin();
22 | }
23 | }
24 | }
25 | }
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough/Views/Walkthrough/BikingHardView.xaml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
14 |
17 |
21 |
22 |
23 |
24 |
25 |
28 |
29 |
31 |
33 |
34 |
44 |
51 |
54 |
67 |
68 |
69 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough/Views/Walkthrough/BikingHardView.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamanimation;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Walkthrough.Views.Walkthrough
5 | {
6 | public partial class BikingHardView : IAnimatedView
7 | {
8 | public BikingHardView ()
9 | {
10 | InitializeComponent ();
11 | }
12 |
13 | public void StartAnimation()
14 | {
15 | if (Resources["InfoPanelAnimation"] is StoryBoard animation)
16 | {
17 | animation.Begin();
18 | }
19 | }
20 | }
21 | }
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough/Views/Walkthrough/IAnimatedView.cs:
--------------------------------------------------------------------------------
1 | namespace Walkthrough.Views.Walkthrough
2 | {
3 | public interface IAnimatedView
4 | {
5 | void StartAnimation();
6 | }
7 | }
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough/Views/Walkthrough/SoExcitedView.xaml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
16 |
17 |
20 |
23 |
27 |
28 |
29 |
30 |
31 |
34 |
35 |
37 |
39 |
40 |
50 |
57 |
60 |
73 |
74 |
75 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough/Views/Walkthrough/SoExcitedView.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamanimation;
2 |
3 | namespace Walkthrough.Views.Walkthrough
4 | {
5 | public partial class SoExcitedView : IAnimatedView
6 | {
7 | public SoExcitedView ()
8 | {
9 | InitializeComponent ();
10 | }
11 |
12 | public void StartAnimation()
13 | {
14 | if (Resources["BackgroundColorAnimation"] is ColorAnimation backgroundColorAnimation)
15 | {
16 | backgroundColorAnimation.Begin();
17 | }
18 |
19 | if (Resources["InfoPanelAnimation"] is StoryBoard animation)
20 | {
21 | animation.Begin();
22 | }
23 | }
24 | }
25 | }
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough/Views/Walkthrough/WalkthroughView.xaml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
28 |
30 |
31 |
43 |
49 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough/Views/Walkthrough/WalkthroughView.xaml.cs:
--------------------------------------------------------------------------------
1 | using Walkthrough.Views.Walkthrough;
2 | using Xamarin.Forms;
3 | using Xamarin.Forms.Xaml;
4 |
5 | namespace Walkthrough.Views
6 | {
7 | [XamlCompilation(XamlCompilationOptions.Compile)]
8 | public partial class WalkthroughView : ContentPage
9 | {
10 | private View[] _views;
11 |
12 | public WalkthroughView()
13 | {
14 | InitializeComponent();
15 |
16 | _views = new View[]
17 | {
18 | new BikingHardView(),
19 | new AcrobaticsView(),
20 | new SoExcitedView(),
21 | new BikingCoolView()
22 | };
23 |
24 | Carousel.ItemsSource = _views;
25 | }
26 |
27 |
28 | private void OnCarouselPositionSelected(object sender, CarouselView.FormsPlugin.Abstractions.PositionSelectedEventArgs e)
29 | {
30 | var currentView = _views[e.NewValue];
31 |
32 | if (currentView is IAnimatedView animatedView)
33 | {
34 | animatedView.StartAnimation();
35 | }
36 | }
37 | }
38 | }
--------------------------------------------------------------------------------
/src/Walkthrough/Walkthrough/Walkthrough.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netstandard2.0
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | BikingCoolView.xaml
17 |
18 |
19 |
20 |
21 |
22 | MSBuild:UpdateDesignTimeXaml
23 |
24 |
25 | MSBuild:UpdateDesignTimeXaml
26 |
27 |
28 | MSBuild:UpdateDesignTimeXaml
29 |
30 |
31 | MSBuild:UpdateDesignTimeXaml
32 |
33 |
34 | MSBuild:UpdateDesignTimeXaml
35 |
36 |
37 |
--------------------------------------------------------------------------------