diff --git a/TMessagesProj/build.gradle b/TMessagesProj/build.gradle index f8722ad66..da7e524df 100644 --- a/TMessagesProj/build.gradle +++ b/TMessagesProj/build.gradle @@ -3,8 +3,8 @@ import cn.hutool.core.util.RuntimeUtil apply plugin: 'com.android.application' apply plugin: 'kotlin-android' -def verName = "7.4.2" -def verCode = 198 +def verName = "7.5.0-preview-2244" +def verCode = 200 if (System.getenv("DEBUG_BUILD") == "true") { verName += "-" + RuntimeUtil.execForStr("git log --pretty=format:'%h' -n 1)") diff --git a/TMessagesProj/jni/voip/tgcalls/NetworkManager.cpp b/TMessagesProj/jni/voip/tgcalls/NetworkManager.cpp index e1fd6624f..49b36e65e 100644 --- a/TMessagesProj/jni/voip/tgcalls/NetworkManager.cpp +++ b/TMessagesProj/jni/voip/tgcalls/NetworkManager.cpp @@ -136,6 +136,9 @@ void NetworkManager::start() { if (!_enableP2P) { flags |= cricket::PORTALLOCATOR_DISABLE_UDP; flags |= cricket::PORTALLOCATOR_DISABLE_STUN; + uint32_t candidateFilter = _portAllocator->candidate_filter(); + candidateFilter &= ~(cricket::CF_REFLEXIVE); + _portAllocator->SetCandidateFilter(candidateFilter); } if (_proxy) { diff --git a/TMessagesProj/src/main/AndroidManifest.xml b/TMessagesProj/src/main/AndroidManifest.xml index a42fd269c..086e68eb2 100644 --- a/TMessagesProj/src/main/AndroidManifest.xml +++ b/TMessagesProj/src/main/AndroidManifest.xml @@ -284,13 +284,46 @@ + + + + + + + + + + + + + + + + + + + - - + + - - + + - + + + + + + + + + diff --git a/TMessagesProj/src/main/java/com/google/zxing/qrcode/QRCodeWriter.java b/TMessagesProj/src/main/java/com/google/zxing/qrcode/QRCodeWriter.java index 91bbd1f3b..3dad97212 100755 --- a/TMessagesProj/src/main/java/com/google/zxing/qrcode/QRCodeWriter.java +++ b/TMessagesProj/src/main/java/com/google/zxing/qrcode/QRCodeWriter.java @@ -26,16 +26,13 @@ import android.graphics.drawable.GradientDrawable; import com.google.zxing.BarcodeFormat; import com.google.zxing.EncodeHintType; import com.google.zxing.WriterException; -import com.google.zxing.qrcode.encoder.ByteMatrix; import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel; +import com.google.zxing.qrcode.encoder.ByteMatrix; import com.google.zxing.qrcode.encoder.Encoder; import com.google.zxing.qrcode.encoder.QRCode; import org.telegram.messenger.ApplicationLoader; import org.telegram.messenger.R; -import org.telegram.messenger.SvgHelper; -import org.telegram.ui.ActionBar.Theme; -import org.telegram.ui.Components.RLottieDrawable; import java.util.Arrays; import java.util.Map; @@ -48,23 +45,25 @@ import java.util.function.Function; */ public final class QRCodeWriter { - private static final int QUIET_ZONE_SIZE = 4; - private ByteMatrix input; - private float[] radii = new float[8]; - private int imageBloks; - private int imageBlockX; - private int sideQuadSize; + private static final int QUIET_ZONE_SIZE = 4; + private ByteMatrix input; + private float[] radii = new float[8]; + private int imageBloks; + private int imageBlockX; + private int sideQuadSize; - public Bitmap encode(String contents, BarcodeFormat format, int width, int height, Map hints, Bitmap bitmap, Context context) throws WriterException { - return encode(contents, format, width, height, hints, bitmap, context, null); + private int imageSize; + + public Bitmap encode(String contents, BarcodeFormat format, int width, int height, Map hints, Bitmap bitmap, Context context) throws WriterException { + return encode(contents, format, width, height, hints, bitmap, context, null); + } + + public Bitmap encode(String contents, BarcodeFormat format, int width, int height, Map hints, Bitmap bitmap, Context context, Function iconF) throws WriterException { + + if (contents.isEmpty()) { + throw new IllegalArgumentException("Found empty contents"); } - public Bitmap encode(String contents, BarcodeFormat format, int width, int height, Map hints, Bitmap bitmap, Context context, Function iconF) throws WriterException { - - if (contents.isEmpty()) { - throw new IllegalArgumentException("Found empty contents"); - } - if (width < 0 || height < 0) { throw new IllegalArgumentException("Requested dimensions are too small: " + width + 'x' + height); } @@ -123,8 +122,8 @@ public final class QRCodeWriter { if (imageBloks % 2 != inputWidth % 2) { imageBloks++; } - imageBlockX = (inputWidth - imageBloks) / 2; - int imageSize = imageBloks * multiple - 24; + imageBlockX = (inputWidth - imageBloks) / 2; + imageSize = imageBloks * multiple - 24; int imageX = (size - imageSize) / 2; for (int a = 0; a < 3; a++) { @@ -233,14 +232,18 @@ public final class QRCodeWriter { private boolean has(int x, int y) { if (x >= imageBlockX && x < imageBlockX + imageBloks && y >= imageBlockX && y < imageBlockX + imageBloks) { - return false; + return false; } - if ((x < sideQuadSize || x >= input.getWidth() - sideQuadSize) && y < sideQuadSize) { - return false; - } - if (x < sideQuadSize && y >= input.getHeight() - sideQuadSize) { - return false; - } - return x >= 0 && y >= 0 && x < input.getWidth() && y < input.getHeight() && input.get(x, y) == 1; + if ((x < sideQuadSize || x >= input.getWidth() - sideQuadSize) && y < sideQuadSize) { + return false; + } + if (x < sideQuadSize && y >= input.getHeight() - sideQuadSize) { + return false; + } + return x >= 0 && y >= 0 && x < input.getWidth() && y < input.getHeight() && input.get(x, y) == 1; } + + public int getImageSize() { + return imageSize; + } } diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/AndroidUtilities.java b/TMessagesProj/src/main/java/org/telegram/messenger/AndroidUtilities.java index 21e63eb12..84e419183 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/AndroidUtilities.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/AndroidUtilities.java @@ -2188,22 +2188,13 @@ public class AndroidUtilities { }*/ public static void startAppCenter(Activity context) { + } private static long lastUpdateCheckTime; public static void checkForUpdates() { - /*try { - if (BuildVars.DEBUG_VERSION) { - if (SystemClock.elapsedRealtime() - lastUpdateCheckTime < 60 * 60 * 1000) { - return; - } - lastUpdateCheckTime = SystemClock.elapsedRealtime(); - Distribute.checkForUpdate(); - } - } catch (Throwable e) { - FileLog.e(e); - }*/ + } public static void addToClipboard(CharSequence str) { @@ -4024,13 +4015,10 @@ public class AndroidUtilities { } } - public static boolean shouldShowUrlInAlert(String url) { + public static boolean checkHostForPunycode(String url) { boolean hasLatin = false; boolean hasNonLatin = false; try { - Uri uri = Uri.parse(url); - url = uri.getHost(); - for (int a = 0, N = url.length(); a < N; a++) { char ch = url.charAt(a); if (ch == '.' || ch == '-' || ch == '/' || ch == '+' || ch >= '0' && ch <= '9') { @@ -4045,13 +4033,23 @@ public class AndroidUtilities { break; } } - } catch (Exception e) { FileLog.e(e); } return hasLatin && hasNonLatin; } + public static boolean shouldShowUrlInAlert(String url) { + try { + Uri uri = Uri.parse(url); + url = uri.getHost(); + return checkHostForPunycode(url); + } catch (Exception e) { + FileLog.e(e); + } + return false; + } + public static void scrollToFragmentRow(ActionBarLayout parentLayout, String rowName) { if (parentLayout == null || rowName == null) { return; diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/ChatObject.java b/TMessagesProj/src/main/java/org/telegram/messenger/ChatObject.java index f6deaa620..48d8aca1a 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/ChatObject.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/ChatObject.java @@ -813,7 +813,7 @@ public class ChatObject { } public static boolean canWriteToChat(TLRPC.Chat chat) { - return !isChannel(chat) || chat.creator || chat.admin_rights != null && chat.admin_rights.post_messages || !chat.broadcast; + return !isChannel(chat) || chat.creator || chat.admin_rights != null && chat.admin_rights.post_messages || !chat.broadcast && !chat.gigagroup || chat.gigagroup && ChatObject.hasAdminRights(chat); } public static String getBannedRightsString(TLRPC.TL_chatBannedRights bannedRights) { diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/ChatsWidgetProvider.java b/TMessagesProj/src/main/java/org/telegram/messenger/ChatsWidgetProvider.java new file mode 100644 index 000000000..8c4ab1646 --- /dev/null +++ b/TMessagesProj/src/main/java/org/telegram/messenger/ChatsWidgetProvider.java @@ -0,0 +1,114 @@ +package org.telegram.messenger; + +import android.app.Activity; +import android.app.PendingIntent; +import android.appwidget.AppWidgetManager; +import android.appwidget.AppWidgetProvider; +import android.content.Context; +import android.content.Intent; +import android.content.SharedPreferences; +import android.net.Uri; +import android.os.Bundle; +import android.widget.RemoteViews; + +import org.telegram.ui.EditWidgetActivity; +import org.telegram.ui.LaunchActivity; + +import java.util.ArrayList; + +public class ChatsWidgetProvider extends AppWidgetProvider { + + @Override + public void onReceive(Context context, Intent intent) { + super.onReceive(context, intent); + } + + @Override + public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) { + super.onUpdate(context, appWidgetManager, appWidgetIds); + for (int i = 0; i < appWidgetIds.length; i++) { + int appWidgetId = appWidgetIds[i]; + updateWidget(context, appWidgetManager, appWidgetId, false); + } + } + + @Override + public void onAppWidgetOptionsChanged(Context context, AppWidgetManager appWidgetManager, int appWidgetId, Bundle newOptions) { + updateWidget(context, appWidgetManager, appWidgetId, true); + super.onAppWidgetOptionsChanged(context, appWidgetManager, appWidgetId, newOptions); + } + + @Override + public void onDeleted(Context context, int[] appWidgetIds) { + super.onDeleted(context, appWidgetIds); + SharedPreferences preferences = context.getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE); + SharedPreferences.Editor editor = preferences.edit(); + for (int a = 0; a < appWidgetIds.length; a++) { + int accountId = preferences.getInt("account" + appWidgetIds[a], -1); + if (accountId >= 0) { + AccountInstance accountInstance = AccountInstance.getInstance(accountId); + accountInstance.getMessagesStorage().clearWidgetDialogs(appWidgetIds[a]); + } + editor.remove("account" + appWidgetIds[a]); + editor.remove("type" + appWidgetIds[a]); + editor.remove("deleted" + appWidgetIds[a]); + } + editor.commit(); + } + + private static int getCellsForSize(int size) { + int n = 2; + while (70 * n - 30 < size) { + ++n; + } + return n - 1; + } + + public static void updateWidget(Context context, AppWidgetManager appWidgetManager, int appWidgetId, boolean edit) { + Bundle options = appWidgetManager.getAppWidgetOptions(appWidgetId); + int minHeight = options.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT); + int rows = getCellsForSize(minHeight); + + Intent intent2 = new Intent(context, ChatsWidgetService.class); + intent2.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId); + intent2.setData(Uri.parse(intent2.toUri(Intent.URI_INTENT_SCHEME))); + + SharedPreferences preferences = context.getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE); + boolean deleted = preferences.getBoolean("deleted" + appWidgetId, false); + int id; + if (!deleted) { + int accountId = preferences.getInt("account" + appWidgetId, -1); + ArrayList selectedDialogs = new ArrayList<>(); + if (accountId >= 0) { + AccountInstance.getInstance(accountId).getMessagesStorage().getWidgetDialogIds(appWidgetId, EditWidgetActivity.TYPE_CHATS, selectedDialogs, null, null, false); + } + + if (rows == 1 || selectedDialogs.size() <= 1) { + id = R.layout.shortcut_widget_layout_1; + } else if (rows == 2 || selectedDialogs.size() <= 2) { + id = R.layout.shortcut_widget_layout_2; + } else if (rows == 3 || selectedDialogs.size() <= 3) { + id = R.layout.shortcut_widget_layout_3; + } else { + id = R.layout.shortcut_widget_layout_4; + } + } else { + id = R.layout.shortcut_widget_layout_1; + } + RemoteViews rv = new RemoteViews(context.getPackageName(), id); + rv.setRemoteAdapter(appWidgetId, R.id.list_view, intent2); + rv.setEmptyView(R.id.list_view, R.id.empty_view); + + Intent intent = new Intent(ApplicationLoader.applicationContext, LaunchActivity.class); + intent.setAction("com.tmessages.openchat" + Math.random() + Integer.MAX_VALUE); + intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); + intent.addCategory(Intent.CATEGORY_LAUNCHER); + PendingIntent contentIntent = PendingIntent.getActivity(ApplicationLoader.applicationContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT); + + rv.setPendingIntentTemplate(R.id.list_view, contentIntent); + appWidgetManager.updateAppWidget(appWidgetId, rv); + if (edit) { + appWidgetManager.notifyAppWidgetViewDataChanged(appWidgetId, R.id.list_view); + } + } +} diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/ShortcutWidgetService.java b/TMessagesProj/src/main/java/org/telegram/messenger/ChatsWidgetService.java similarity index 79% rename from TMessagesProj/src/main/java/org/telegram/messenger/ShortcutWidgetService.java rename to TMessagesProj/src/main/java/org/telegram/messenger/ChatsWidgetService.java index 0841a7930..bf9e66af3 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/ShortcutWidgetService.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/ChatsWidgetService.java @@ -27,20 +27,21 @@ import org.telegram.tgnet.TLRPC; import org.telegram.ui.ActionBar.Theme; import org.telegram.ui.Components.AvatarDrawable; import org.telegram.ui.Components.ForegroundColorSpanThemable; +import org.telegram.ui.EditWidgetActivity; import java.io.File; import java.util.ArrayList; -public class ShortcutWidgetService extends RemoteViewsService { +public class ChatsWidgetService extends RemoteViewsService { @Override public RemoteViewsFactory onGetViewFactory(Intent intent) { - return new ShortcutRemoteViewsFactory(getApplicationContext(), intent); + return new ChatsRemoteViewsFactory(getApplicationContext(), intent); } } -class ShortcutRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactory { +class ChatsRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactory { - private ArrayList dids = new ArrayList<>(); + private ArrayList dids = new ArrayList<>(); private Context mContext; private int appWidgetId; private AccountInstance accountInstance; @@ -48,8 +49,9 @@ class ShortcutRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactor private RectF bitmapRect; private LongSparseArray dialogs = new LongSparseArray<>(); private LongSparseArray messageObjects = new LongSparseArray<>(); + private boolean deleted; - public ShortcutRemoteViewsFactory(Context context, Intent intent) { + public ChatsRemoteViewsFactory(Context context, Intent intent) { mContext = context; Theme.createDialogsResources(context); appWidgetId = intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, AppWidgetManager.INVALID_APPWIDGET_ID); @@ -58,6 +60,7 @@ class ShortcutRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactor if (accountId >= 0) { accountInstance = AccountInstance.getInstance(accountId); } + deleted = preferences.getBoolean("deleted" + appWidgetId, false) || accountInstance == null; } public void onCreate() { @@ -69,33 +72,58 @@ class ShortcutRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactor } public int getCount() { - return dids.size(); + if (deleted) { + return 1; + } + return dids.size() + 1; } public RemoteViews getViewAt(int position) { - Integer id = dids.get(position); - String name; + if (deleted) { + RemoteViews rv = new RemoteViews(mContext.getPackageName(), R.layout.widget_deleted); + rv.setTextViewText(R.id.widget_deleted_text, LocaleController.getString("WidgetLoggedOff", R.string.WidgetLoggedOff)); + return rv; + } else if (position >= dids.size()) { + RemoteViews rv = new RemoteViews(mContext.getPackageName(), R.layout.widget_edititem); + rv.setTextViewText(R.id.widget_edititem_text, LocaleController.getString("TapToEditWidget", R.string.TapToEditWidget)); + Bundle extras = new Bundle(); + extras.putInt("appWidgetId", appWidgetId); + extras.putInt("appWidgetType", EditWidgetActivity.TYPE_CHATS); + extras.putInt("currentAccount", accountInstance.getCurrentAccount()); + Intent fillInIntent = new Intent(); + fillInIntent.putExtras(extras); + rv.setOnClickFillInIntent(R.id.widget_edititem, fillInIntent); + return rv; + } + Long id = dids.get(position); + String name = ""; TLRPC.FileLocation photoPath = null; TLRPC.User user = null; TLRPC.Chat chat = null; if (id > 0) { - user = accountInstance.getMessagesController().getUser(id); - if (UserObject.isUserSelf(user)) { - name = LocaleController.getString("SavedMessages", R.string.SavedMessages); - } else if (UserObject.isReplyUser(user)) { - name = LocaleController.getString("RepliesTitle", R.string.RepliesTitle); - } else { - name = ContactsController.formatName(user.first_name, user.last_name); - } - if (!UserObject.isReplyUser(user) && !UserObject.isUserSelf(user) && user.photo != null && user.photo.photo_small != null && user.photo.photo_small.volume_id != 0 && user.photo.photo_small.local_id != 0) { - photoPath = user.photo.photo_small; + user = accountInstance.getMessagesController().getUser((int) (long) id); + if (user != null) { + if (UserObject.isUserSelf(user)) { + name = LocaleController.getString("SavedMessages", R.string.SavedMessages); + } else if (UserObject.isReplyUser(user)) { + name = LocaleController.getString("RepliesTitle", R.string.RepliesTitle); + } else if (UserObject.isDeleted(user)) { + name = LocaleController.getString("HiddenName", R.string.HiddenName); + } else { + name = ContactsController.formatName(user.first_name, user.last_name); + } + if (!UserObject.isReplyUser(user) && !UserObject.isUserSelf(user) && user != null && user.photo != null && user.photo.photo_small != null && user.photo.photo_small.volume_id != 0 && user.photo.photo_small.local_id != 0) { + photoPath = user.photo.photo_small; + } } } else { - chat = accountInstance.getMessagesController().getChat(-id); - name = chat.title; - if (chat.photo != null && chat.photo.photo_small != null && chat.photo.photo_small.volume_id != 0 && chat.photo.photo_small.local_id != 0) { - photoPath = chat.photo.photo_small; + chat = accountInstance.getMessagesController().getChat(-(int) (long) id); + if (chat != null) { + name = chat.title; + if (chat.photo != null && chat.photo.photo_small != null && chat.photo.photo_small.volume_id != 0 && chat.photo.photo_small.local_id != 0) { + photoPath = chat.photo.photo_small; + } } } RemoteViews rv = new RemoteViews(mContext.getPackageName(), R.layout.shortcut_widget_item); @@ -159,7 +187,7 @@ class ShortcutRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactor } CharSequence messageString; CharSequence messageNameString; - int textColor = 0xff212121; + int textColor = mContext.getResources().getColor(R.color.widget_text); if (message.messageOwner instanceof TLRPC.TL_messageService) { if (ChatObject.isChannel(chat) && (message.messageOwner.action instanceof TLRPC.TL_messageActionHistoryClear || message.messageOwner.action instanceof TLRPC.TL_messageActionChannelMigrateFrom)) { @@ -167,7 +195,7 @@ class ShortcutRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactor } else { messageString = message.messageText; } - textColor = 0xff3c7eb0; + textColor = mContext.getResources().getColor(R.color.widget_action_text); } else { boolean needEmoji = true; if (chat != null && chat.id > 0 && fromChat == null && (!ChatObject.isChannel(chat) || ChatObject.isMegagroup(chat))) { @@ -199,7 +227,7 @@ class ShortcutRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactor } stringBuilder = SpannableStringBuilder.valueOf(String.format(messageFormat, emoji + mess.replace('\n', ' '), messageNameString)); } else if (message.messageOwner.media != null && !message.isMediaEmpty()) { - textColor = 0xff3c7eb0; + textColor = mContext.getResources().getColor(R.color.widget_action_text); String innerMessage; if (message.messageOwner.media instanceof TLRPC.TL_messageMediaPoll) { TLRPC.TL_messageMediaPoll mediaPoll = (TLRPC.TL_messageMediaPoll) message.messageOwner.media; @@ -245,7 +273,7 @@ class ShortcutRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactor } catch (Exception e) { FileLog.e(e); } - messageString = stringBuilder;//Emoji.replaceEmoji(stringBuilder, Theme.dialogs_messagePaint[paintIndex].getFontMetricsInt(), AndroidUtilities.dp(20), false); + messageString = stringBuilder; } else { if (message.messageOwner.media instanceof TLRPC.TL_messageMediaPhoto && message.messageOwner.media.photo instanceof TLRPC.TL_photoEmpty && message.messageOwner.media.ttl_seconds != 0) { messageString = LocaleController.getString("AttachPhotoExpired", R.string.AttachPhotoExpired); @@ -278,23 +306,31 @@ class ShortcutRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactor AndroidUtilities.highlightText(messageString, message.highlightedWords); } if (message.messageOwner.media != null && !message.isMediaEmpty()) { - textColor = 0xff3c7eb0; + textColor = mContext.getResources().getColor(R.color.widget_action_text); } } } } rv.setTextViewText(R.id.shortcut_widget_item_time, LocaleController.stringForMessageListDate(message.messageOwner.date)); - rv.setTextViewText(R.id.shortcut_widget_item_message, messageString); + rv.setTextViewText(R.id.shortcut_widget_item_message, messageString.toString()); rv.setTextColor(R.id.shortcut_widget_item_message, textColor); } else { - if (dialog != null) { + if (dialog != null && dialog.last_message_date != 0) { rv.setTextViewText(R.id.shortcut_widget_item_time, LocaleController.stringForMessageListDate(dialog.last_message_date)); + } else { + rv.setTextViewText(R.id.shortcut_widget_item_time, ""); } + rv.setTextViewText(R.id.shortcut_widget_item_message, ""); } if (dialog != null && dialog.unread_count > 0) { rv.setTextViewText(R.id.shortcut_widget_item_badge, String.format("%d", dialog.unread_count)); rv.setViewVisibility(R.id.shortcut_widget_item_badge, View.VISIBLE); + if (accountInstance.getMessagesController().isDialogMuted(dialog.id)) { + rv.setInt(R.id.shortcut_widget_item_badge, "setBackgroundResource", R.drawable.widget_counter_muted); + } else { + rv.setInt(R.id.shortcut_widget_item_badge, "setBackgroundResource", R.drawable.widget_counter); + } } else { rv.setViewVisibility(R.id.shortcut_widget_item_badge, View.GONE); } @@ -302,9 +338,9 @@ class ShortcutRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactor Bundle extras = new Bundle(); if (id > 0) { - extras.putInt("userId", id); + extras.putInt("userId", (int) (long) id); } else { - extras.putInt("chatId", -id); + extras.putInt("chatId", -(int) (long) id); } extras.putInt("currentAccount", accountInstance.getCurrentAccount()); @@ -322,7 +358,7 @@ class ShortcutRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactor } public int getViewTypeCount() { - return 1; + return 2; } public long getItemId(int position) { @@ -342,7 +378,7 @@ class ShortcutRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactor ArrayList users = new ArrayList<>(); ArrayList chats = new ArrayList<>(); LongSparseArray messages = new LongSparseArray<>(); - accountInstance.getMessagesStorage().getWidgetDialogs(appWidgetId, dids, dialogs, messages, users, chats); + accountInstance.getMessagesStorage().getWidgetDialogs(appWidgetId, 0, dids, dialogs, messages, users, chats); accountInstance.getMessagesController().putUsers(users, true); accountInstance.getMessagesController().putChats(chats, true); messageObjects.clear(); diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/ContactsController.java b/TMessagesProj/src/main/java/org/telegram/messenger/ContactsController.java index 7a19d9356..93dfe1585 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/ContactsController.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/ContactsController.java @@ -30,6 +30,7 @@ import org.telegram.PhoneFormat.PhoneFormat; import org.telegram.messenger.support.SparseLongArray; import org.telegram.tgnet.ConnectionsManager; import org.telegram.tgnet.TLRPC; +import org.telegram.ui.Components.Bulletin; import java.util.ArrayList; import java.util.Arrays; @@ -1091,7 +1092,7 @@ public class ContactsController extends BaseController { } if (!toDelete.isEmpty()) { - deleteContact(toDelete); + deleteContact(toDelete, false); } }); } @@ -2216,7 +2217,7 @@ public class ContactsController extends BaseController { }, ConnectionsManager.RequestFlagFailOnServerErrors | ConnectionsManager.RequestFlagCanCompress); } - public void deleteContact(final ArrayList users) { + public void deleteContact(final ArrayList users, boolean showBulletin) { if (users == null || users.isEmpty()) { return; } @@ -2231,6 +2232,7 @@ public class ContactsController extends BaseController { uids.add(user.id); req.id.add(inputUser); } + String userName = users.get(0).first_name; getConnectionsManager().sendRequest(req, (response, error) -> { if (error != null) { return; @@ -2273,6 +2275,9 @@ public class ContactsController extends BaseController { } getNotificationCenter().postNotificationName(NotificationCenter.updateInterfaces, MessagesController.UPDATE_MASK_NAME); getNotificationCenter().postNotificationName(NotificationCenter.contactsDidLoad); + if (showBulletin) { + NotificationCenter.getGlobalInstance().postNotificationName(NotificationCenter.showBulletin, Bulletin.TYPE_ERROR, LocaleController.formatString("DeletedFromYourContacts", R.string.DeletedFromYourContacts, userName)); + } }); }); } diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/ContactsWidgetProvider.java b/TMessagesProj/src/main/java/org/telegram/messenger/ContactsWidgetProvider.java new file mode 100644 index 000000000..6f5fd33ef --- /dev/null +++ b/TMessagesProj/src/main/java/org/telegram/messenger/ContactsWidgetProvider.java @@ -0,0 +1,116 @@ +package org.telegram.messenger; + +import android.app.Activity; +import android.app.PendingIntent; +import android.appwidget.AppWidgetManager; +import android.appwidget.AppWidgetProvider; +import android.content.Context; +import android.content.Intent; +import android.content.SharedPreferences; +import android.net.Uri; +import android.os.Bundle; +import android.widget.RemoteViews; + +import org.telegram.ui.EditWidgetActivity; +import org.telegram.ui.LaunchActivity; + +import java.util.ArrayList; + +public class ContactsWidgetProvider extends AppWidgetProvider { + + @Override + public void onReceive(Context context, Intent intent) { + super.onReceive(context, intent); + } + + @Override + public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) { + super.onUpdate(context, appWidgetManager, appWidgetIds); + for (int i = 0; i < appWidgetIds.length; i++) { + int appWidgetId = appWidgetIds[i]; + updateWidget(context, appWidgetManager, appWidgetId, false); + } + } + + @Override + public void onDeleted(Context context, int[] appWidgetIds) { + super.onDeleted(context, appWidgetIds); + SharedPreferences preferences = context.getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE); + SharedPreferences.Editor editor = preferences.edit(); + for (int a = 0; a < appWidgetIds.length; a++) { + int accountId = preferences.getInt("account" + appWidgetIds[a], -1); + if (accountId >= 0) { + AccountInstance accountInstance = AccountInstance.getInstance(accountId); + accountInstance.getMessagesStorage().clearWidgetDialogs(appWidgetIds[a]); + } + editor.remove("account" + appWidgetIds[a]); + editor.remove("type" + appWidgetIds[a]); + editor.remove("deleted" + appWidgetIds[a]); + } + editor.commit(); + } + + @Override + public void onAppWidgetOptionsChanged(Context context, AppWidgetManager appWidgetManager, int appWidgetId, Bundle newOptions) { + updateWidget(context, appWidgetManager, appWidgetId, true); + super.onAppWidgetOptionsChanged(context, appWidgetManager, appWidgetId, newOptions); + } + + private static int getCellsForSize(int size) { + int n = 2; + while (86 * n - 30 < size) { + ++n; + } + return n - 1; + } + + public static void updateWidget(Context context, AppWidgetManager appWidgetManager, int appWidgetId, boolean edit) { + Bundle options = appWidgetManager.getAppWidgetOptions(appWidgetId); + int minHeight = options.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT); + int rows = getCellsForSize(minHeight); + + Intent intent2 = new Intent(context, ContactsWidgetService.class); + intent2.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId); + intent2.setData(Uri.parse(intent2.toUri(Intent.URI_INTENT_SCHEME))); + + SharedPreferences preferences = context.getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE); + boolean deleted = preferences.getBoolean("deleted" + appWidgetId, false); + int id; + if (!deleted) { + int accountId = preferences.getInt("account" + appWidgetId, -1); + ArrayList selectedDialogs = new ArrayList<>(); + if (accountId >= 0) { + AccountInstance.getInstance(accountId).getMessagesStorage().getWidgetDialogIds(appWidgetId, EditWidgetActivity.TYPE_CONTACTS, selectedDialogs, null, null, false); + } + int count = (int) Math.ceil(selectedDialogs.size() / 2.0f); + + if (rows == 1 || count <= 1) { + id = R.layout.contacts_widget_layout_1; + } else if (rows == 2 || count <= 2) { + id = R.layout.contacts_widget_layout_2; + } else if (rows == 3 || count <= 3) { + id = R.layout.contacts_widget_layout_3; + } else { + id = R.layout.contacts_widget_layout_4; + } + } else { + id = R.layout.contacts_widget_layout_1; + } + RemoteViews rv = new RemoteViews(context.getPackageName(), id); + rv.setRemoteAdapter(appWidgetId, R.id.list_view, intent2); + rv.setEmptyView(R.id.list_view, R.id.empty_view); + + Intent intent = new Intent(ApplicationLoader.applicationContext, LaunchActivity.class); + intent.setAction("com.tmessages.openchat" + Math.random() + Integer.MAX_VALUE); + intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); + intent.addCategory(Intent.CATEGORY_LAUNCHER); + PendingIntent contentIntent = PendingIntent.getActivity(ApplicationLoader.applicationContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT); + + rv.setPendingIntentTemplate(R.id.list_view, contentIntent); + + appWidgetManager.updateAppWidget(appWidgetId, rv); + if (edit) { + appWidgetManager.notifyAppWidgetViewDataChanged(appWidgetId, R.id.list_view); + } + } +} diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/ContactsWidgetService.java b/TMessagesProj/src/main/java/org/telegram/messenger/ContactsWidgetService.java new file mode 100644 index 000000000..687b37232 --- /dev/null +++ b/TMessagesProj/src/main/java/org/telegram/messenger/ContactsWidgetService.java @@ -0,0 +1,229 @@ +package org.telegram.messenger; + +import android.app.Activity; +import android.appwidget.AppWidgetManager; +import android.content.Context; +import android.content.Intent; +import android.content.SharedPreferences; +import android.graphics.Bitmap; +import android.graphics.BitmapFactory; +import android.graphics.BitmapShader; +import android.graphics.Canvas; +import android.graphics.Color; +import android.graphics.Paint; +import android.graphics.RectF; +import android.graphics.Shader; +import android.os.Bundle; +import android.util.LongSparseArray; +import android.view.View; +import android.widget.RemoteViews; +import android.widget.RemoteViewsService; + +import org.telegram.tgnet.TLRPC; +import org.telegram.ui.ActionBar.Theme; +import org.telegram.ui.Components.AvatarDrawable; +import org.telegram.ui.EditWidgetActivity; + +import java.io.File; +import java.util.ArrayList; + +public class ContactsWidgetService extends RemoteViewsService { + @Override + public RemoteViewsFactory onGetViewFactory(Intent intent) { + return new ContactsRemoteViewsFactory(getApplicationContext(), intent); + } +} + +class ContactsRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactory { + + private ArrayList dids = new ArrayList<>(); + private Context mContext; + private int appWidgetId; + private AccountInstance accountInstance; + private Paint roundPaint; + private RectF bitmapRect; + private LongSparseArray dialogs = new LongSparseArray<>(); + private boolean deleted; + + public ContactsRemoteViewsFactory(Context context, Intent intent) { + mContext = context; + Theme.createDialogsResources(context); + appWidgetId = intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, AppWidgetManager.INVALID_APPWIDGET_ID); + SharedPreferences preferences = context.getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE); + int accountId = preferences.getInt("account" + appWidgetId, -1); + if (accountId >= 0) { + accountInstance = AccountInstance.getInstance(accountId); + } + deleted = preferences.getBoolean("deleted" + appWidgetId, false) || accountInstance == null; + } + + public void onCreate() { + ApplicationLoader.postInitApplication(); + } + + public void onDestroy() { + + } + + public int getCount() { + if (deleted) { + return 1; + } + int count = (int) Math.ceil(dids.size() / 2.0f); + return count + 1; + } + + public RemoteViews getViewAt(int position) { + if (deleted) { + RemoteViews rv = new RemoteViews(mContext.getPackageName(), R.layout.widget_deleted); + rv.setTextViewText(R.id.widget_deleted_text, LocaleController.getString("WidgetLoggedOff", R.string.WidgetLoggedOff)); + return rv; + } else if (position >= getCount() - 1) { + RemoteViews rv = new RemoteViews(mContext.getPackageName(), R.layout.widget_edititem); + rv.setTextViewText(R.id.widget_edititem_text, LocaleController.getString("TapToEditWidgetShort", R.string.TapToEditWidgetShort)); + Bundle extras = new Bundle(); + extras.putInt("appWidgetId", appWidgetId); + extras.putInt("appWidgetType", EditWidgetActivity.TYPE_CONTACTS); + extras.putInt("currentAccount", accountInstance.getCurrentAccount()); + Intent fillInIntent = new Intent(); + fillInIntent.putExtras(extras); + rv.setOnClickFillInIntent(R.id.widget_edititem, fillInIntent); + return rv; + } + RemoteViews rv = new RemoteViews(mContext.getPackageName(), R.layout.contacts_widget_item); + for (int a = 0; a < 2; a++) { + int num = position * 2 + a; + if (num >= dids.size()) { + rv.setViewVisibility(a == 0 ? R.id.contacts_widget_item1 : R.id.contacts_widget_item2, View.INVISIBLE); + } else { + rv.setViewVisibility(a == 0 ? R.id.contacts_widget_item1 : R.id.contacts_widget_item2, View.VISIBLE); + + Long id = dids.get(position * 2 + a); + String name; + + TLRPC.FileLocation photoPath = null; + TLRPC.User user = null; + TLRPC.Chat chat = null; + if (id > 0) { + user = accountInstance.getMessagesController().getUser((int) (long) id); + if (UserObject.isUserSelf(user)) { + name = LocaleController.getString("SavedMessages", R.string.SavedMessages); + } else if (UserObject.isReplyUser(user)) { + name = LocaleController.getString("RepliesTitle", R.string.RepliesTitle); + } else if (UserObject.isDeleted(user)) { + name = LocaleController.getString("HiddenName", R.string.HiddenName); + } else { + name = UserObject.getFirstName(user); + } + if (!UserObject.isReplyUser(user) && !UserObject.isUserSelf(user) && user != null && user.photo != null && user.photo.photo_small != null && user.photo.photo_small.volume_id != 0 && user.photo.photo_small.local_id != 0) { + photoPath = user.photo.photo_small; + } + } else { + chat = accountInstance.getMessagesController().getChat(-(int) (long) id); + name = chat.title; + if (chat.photo != null && chat.photo.photo_small != null && chat.photo.photo_small.volume_id != 0 && chat.photo.photo_small.local_id != 0) { + photoPath = chat.photo.photo_small; + } + } + rv.setTextViewText(a == 0 ? R.id.contacts_widget_item_text1 : R.id.contacts_widget_item_text2, name); + + try { + Bitmap bitmap = null; + if (photoPath != null) { + File path = FileLoader.getPathToAttach(photoPath, true); + bitmap = BitmapFactory.decodeFile(path.toString()); + } + + int size = AndroidUtilities.dp(48); + Bitmap result = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888); + result.eraseColor(Color.TRANSPARENT); + Canvas canvas = new Canvas(result); + if (bitmap == null) { + AvatarDrawable avatarDrawable; + if (user != null) { + avatarDrawable = new AvatarDrawable(user); + if (UserObject.isReplyUser(user)) { + avatarDrawable.setAvatarType(AvatarDrawable.AVATAR_TYPE_REPLIES); + } else if (UserObject.isUserSelf(user)) { + avatarDrawable.setAvatarType(AvatarDrawable.AVATAR_TYPE_SAVED); + } + } else { + avatarDrawable = new AvatarDrawable(chat); + } + avatarDrawable.setBounds(0, 0, size, size); + avatarDrawable.draw(canvas); + } else { + BitmapShader shader = new BitmapShader(bitmap, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP); + if (roundPaint == null) { + roundPaint = new Paint(Paint.ANTI_ALIAS_FLAG); + bitmapRect = new RectF(); + } + float scale = size / (float) bitmap.getWidth(); + canvas.save(); + canvas.scale(scale, scale); + roundPaint.setShader(shader); + bitmapRect.set(0, 0, bitmap.getWidth(), bitmap.getHeight()); + canvas.drawRoundRect(bitmapRect, bitmap.getWidth(), bitmap.getHeight(), roundPaint); + canvas.restore(); + } + canvas.setBitmap(null); + rv.setImageViewBitmap(a == 0 ? R.id.contacts_widget_item_avatar1 : R.id.contacts_widget_item_avatar2, result); + } catch (Throwable e) { + FileLog.e(e); + } + + TLRPC.Dialog dialog = dialogs.get(id); + + if (dialog != null && dialog.unread_count > 0) { + rv.setTextViewText(a == 0 ? R.id.contacts_widget_item_badge1 : R.id.contacts_widget_item_badge2, String.format("%d", dialog.unread_count)); + rv.setViewVisibility(a == 0 ? R.id.contacts_widget_item_badge_bg1 : R.id.contacts_widget_item_badge_bg2, View.VISIBLE); + } else { + rv.setViewVisibility(a == 0 ? R.id.contacts_widget_item_badge_bg1 : R.id.contacts_widget_item_badge_bg2, View.GONE); + } + + Bundle extras = new Bundle(); + + if (id > 0) { + extras.putInt("userId", (int) (long) id); + } else { + extras.putInt("chatId", -(int) (long) id); + } + extras.putInt("currentAccount", accountInstance.getCurrentAccount()); + + Intent fillInIntent = new Intent(); + fillInIntent.putExtras(extras); + rv.setOnClickFillInIntent(a == 0 ? R.id.contacts_widget_item1 : R.id.contacts_widget_item2, fillInIntent); + } + } + return rv; + } + + public RemoteViews getLoadingView() { + return null; + } + + public int getViewTypeCount() { + return 2; + } + + public long getItemId(int position) { + return position; + } + + public boolean hasStableIds() { + return true; + } + + public void onDataSetChanged() { + dids.clear(); + if (accountInstance == null || !accountInstance.getUserConfig().isClientActivated()) { + return; + } + ArrayList users = new ArrayList<>(); + ArrayList chats = new ArrayList<>(); + LongSparseArray messages = new LongSparseArray<>(); + accountInstance.getMessagesStorage().getWidgetDialogs(appWidgetId, 1, dids, dialogs, messages, users, chats); + accountInstance.getMessagesController().putUsers(users, true); + accountInstance.getMessagesController().putChats(chats, true); + } +} diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/FeedWidgetProvider.java b/TMessagesProj/src/main/java/org/telegram/messenger/FeedWidgetProvider.java index 1769fb873..60c37345a 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/FeedWidgetProvider.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/FeedWidgetProvider.java @@ -10,7 +10,6 @@ import android.content.SharedPreferences; import android.net.Uri; import android.widget.RemoteViews; -import org.telegram.ui.FeedWidgetConfigActivity; import org.telegram.ui.LaunchActivity; public class FeedWidgetProvider extends AppWidgetProvider { @@ -33,7 +32,7 @@ public class FeedWidgetProvider extends AppWidgetProvider { public void onDeleted(Context context, int[] appWidgetIds) { super.onDeleted(context, appWidgetIds); for (int a = 0; a < appWidgetIds.length; a++) { - SharedPreferences preferences = context.getSharedPreferences("feed_widget", Activity.MODE_PRIVATE); + SharedPreferences preferences = context.getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE); preferences.edit().remove("account" + appWidgetIds[a]).remove("dialogId" + appWidgetIds[a]).commit(); } } @@ -48,7 +47,7 @@ public class FeedWidgetProvider extends AppWidgetProvider { Intent intent = new Intent(ApplicationLoader.applicationContext, LaunchActivity.class); intent.setAction("com.tmessages.openchat" + Math.random() + Integer.MAX_VALUE); - intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK); + intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); intent.addCategory(Intent.CATEGORY_LAUNCHER); PendingIntent contentIntent = PendingIntent.getActivity(ApplicationLoader.applicationContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT); diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/FeedWidgetService.java b/TMessagesProj/src/main/java/org/telegram/messenger/FeedWidgetService.java index ceb21c7c8..1a6231914 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/FeedWidgetService.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/FeedWidgetService.java @@ -14,6 +14,8 @@ import android.view.View; import android.widget.RemoteViews; import android.widget.RemoteViewsService; +import androidx.core.content.FileProvider; + import org.telegram.tgnet.ConnectionsManager; import org.telegram.tgnet.TLRPC; @@ -22,8 +24,6 @@ import java.util.ArrayList; import java.util.List; import java.util.concurrent.CountDownLatch; -import androidx.core.content.FileProvider; - public class FeedWidgetService extends RemoteViewsService { @Override public RemoteViewsFactory onGetViewFactory(Intent intent) { @@ -44,7 +44,7 @@ class FeedRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactory, N public FeedRemoteViewsFactory(Context context, Intent intent) { mContext = context; appWidgetId = intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, AppWidgetManager.INVALID_APPWIDGET_ID); - SharedPreferences preferences = context.getSharedPreferences("feed_widget", Activity.MODE_PRIVATE); + SharedPreferences preferences = context.getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE); int accountId = preferences.getInt("account" + appWidgetId, -1); if (accountId >= 0) { dialogId = preferences.getLong("dialogId" + appWidgetId, 0); diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/FileLoadOperation.java b/TMessagesProj/src/main/java/org/telegram/messenger/FileLoadOperation.java index 7598b1fda..b29d5b696 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/FileLoadOperation.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/FileLoadOperation.java @@ -16,9 +16,9 @@ import org.telegram.tgnet.NativeByteBuffer; import org.telegram.tgnet.TLObject; import org.telegram.tgnet.TLRPC; +import java.io.File; import java.io.FileInputStream; import java.io.RandomAccessFile; -import java.io.File; import java.nio.channels.FileChannel; import java.util.ArrayList; import java.util.Arrays; @@ -1218,7 +1218,12 @@ public class FileLoadOperation { FileLog.e(e); } } else { - renameResult = cacheFileTemp.renameTo(cacheFileFinal); + try { + renameResult = cacheFileTemp.renameTo(cacheFileFinal); + } catch (Exception e) { + renameResult = false; + FileLog.e(e); + } } if (!renameResult) { if (BuildVars.LOGS_ENABLED) { diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/FileLoader.java b/TMessagesProj/src/main/java/org/telegram/messenger/FileLoader.java index d0a640565..da903e13b 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/FileLoader.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/FileLoader.java @@ -890,7 +890,7 @@ public class FileLoader extends BaseController { } else if (message.media instanceof TLRPC.TL_messageMediaPhoto) { ArrayList sizes = message.media.photo.sizes; if (sizes.size() > 0) { - TLRPC.PhotoSize sizeFull = getClosestPhotoSizeWithSize(sizes, AndroidUtilities.getPhotoSize()); + TLRPC.PhotoSize sizeFull = getClosestPhotoSizeWithSize(sizes, AndroidUtilities.getPhotoSize(), false, null, true); if (sizeFull != null) { return getAttachFileName(sizeFull); } @@ -937,7 +937,7 @@ public class FileLoader extends BaseController { } else if (message.media instanceof TLRPC.TL_messageMediaPhoto) { ArrayList sizes = message.media.photo.sizes; if (sizes.size() > 0) { - TLRPC.PhotoSize sizeFull = getClosestPhotoSizeWithSize(sizes, AndroidUtilities.getPhotoSize()); + TLRPC.PhotoSize sizeFull = getClosestPhotoSizeWithSize(sizes, AndroidUtilities.getPhotoSize(), false, null, true); if (sizeFull != null) { return getPathToAttach(sizeFull, message.media.ttl_seconds != 0); } @@ -1041,10 +1041,10 @@ public class FileLoader extends BaseController { } public static TLRPC.PhotoSize getClosestPhotoSizeWithSize(ArrayList sizes, int side, boolean byMinSide) { - return getClosestPhotoSizeWithSize(sizes, side, byMinSide, null); + return getClosestPhotoSizeWithSize(sizes, side, byMinSide, null, false); } - public static TLRPC.PhotoSize getClosestPhotoSizeWithSize(ArrayList sizes, int side, boolean byMinSide, TLRPC.PhotoSize toIgnore) { + public static TLRPC.PhotoSize getClosestPhotoSizeWithSize(ArrayList sizes, int side, boolean byMinSide, TLRPC.PhotoSize toIgnore, boolean ignoreStripped) { if (sizes == null || sizes.isEmpty()) { return null; } @@ -1052,7 +1052,7 @@ public class FileLoader extends BaseController { TLRPC.PhotoSize closestObject = null; for (int a = 0; a < sizes.size(); a++) { TLRPC.PhotoSize obj = sizes.get(a); - if (obj == null || obj == toIgnore || obj instanceof TLRPC.TL_photoSizeEmpty || obj instanceof TLRPC.TL_photoPathSize) { + if (obj == null || obj == toIgnore || obj instanceof TLRPC.TL_photoSizeEmpty || obj instanceof TLRPC.TL_photoPathSize || ignoreStripped && obj instanceof TLRPC.TL_photoStrippedSize) { continue; } if (byMinSide) { diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/ImageLoader.java b/TMessagesProj/src/main/java/org/telegram/messenger/ImageLoader.java index 6b483492a..7583c02cd 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/ImageLoader.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/ImageLoader.java @@ -21,7 +21,6 @@ import android.graphics.drawable.Drawable; import android.net.Uri; import android.os.AsyncTask; import android.os.Build; -import android.os.Environment; import android.os.SystemClock; import android.provider.MediaStore; import android.text.TextUtils; @@ -819,15 +818,15 @@ public class ImageLoader { } if (args.length >= 5) { if ("c1".equals(args[4])) { - colors = new int[]{0xf77e41, 0xca907a, 0xffb139, 0xedc5a5, 0xffd140, 0xf7e3c3, 0xffdf79, 0xfbefd6}; + colors = new int[]{0xf77e41, 0xcb7b55, 0xffb139, 0xf6b689, 0xffd140, 0xffcda7, 0xffdf79, 0xffdfc5}; } else if ("c2".equals(args[4])) { - colors = new int[]{0xf77e41, 0xaa7c60, 0xffb139, 0xc8a987, 0xffd140, 0xddc89f, 0xffdf79, 0xe6d6b2}; + colors = new int[]{0xf77e41, 0xa45a38, 0xffb139, 0xdf986b, 0xffd140, 0xedb183, 0xffdf79, 0xf4c3a0}; } else if ("c3".equals(args[4])) { - colors = new int[]{0xf77e41, 0x8c6148, 0xffb139, 0xad8562, 0xffd140, 0xc49e76, 0xffdf79, 0xd4b188}; + colors = new int[]{0xf77e41, 0x703a17, 0xffb139, 0xab673d, 0xffd140, 0xc37f4e, 0xffdf79, 0xd89667}; } else if ("c4".equals(args[4])) { - colors = new int[]{0xf77e41, 0x6e3c2c, 0xffb139, 0x925a34, 0xffd140, 0xa16e46, 0xffdf79, 0xac7a52}; + colors = new int[]{0xf77e41, 0x4a2409, 0xffb139, 0x7d3e0e, 0xffd140, 0x965529, 0xffdf79, 0xa96337}; } else if ("c5".equals(args[4])) { - colors = new int[]{0xf77e41, 0x291c12, 0xffb139, 0x472a22, 0xffd140, 0x573b30, 0xffdf79, 0x68493c}; + colors = new int[]{0xf77e41, 0x200f0a, 0xffb139, 0x412924, 0xffd140, 0x593d37, 0xffdf79, 0x63453f}; } } } diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/MediaDataController.java b/TMessagesProj/src/main/java/org/telegram/messenger/MediaDataController.java index bc3eb7a87..89d0442d7 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/MediaDataController.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/MediaDataController.java @@ -34,7 +34,6 @@ import android.text.TextUtils; import android.text.style.CharacterStyle; import android.util.LongSparseArray; import android.util.SparseArray; -import android.widget.Toast; import androidx.core.content.pm.ShortcutInfoCompat; import androidx.core.content.pm.ShortcutManagerCompat; @@ -307,9 +306,9 @@ public class MediaDataController extends BaseController { int maxCount; if (type == TYPE_FAVE) { if (remove) { - Toast.makeText(ApplicationLoader.applicationContext, LocaleController.getString("RemovedFromFavorites", R.string.RemovedFromFavorites), Toast.LENGTH_SHORT).show(); + NotificationCenter.getGlobalInstance().postNotificationName(NotificationCenter.showBulletin, Bulletin.TYPE_STICKER, document, StickerSetBulletinLayout.TYPE_REMOVED_FROM_FAVORITES); } else { - Toast.makeText(ApplicationLoader.applicationContext, LocaleController.getString("AddedToFavorites", R.string.AddedToFavorites), Toast.LENGTH_SHORT).show(); + NotificationCenter.getGlobalInstance().postNotificationName(NotificationCenter.showBulletin, Bulletin.TYPE_STICKER, document, StickerSetBulletinLayout.TYPE_ADDED_TO_FAVORITES); } TLRPC.TL_messages_faveSticker req = new TLRPC.TL_messages_faveSticker(); req.id = new TLRPC.TL_inputDocument(); @@ -330,7 +329,7 @@ public class MediaDataController extends BaseController { maxCount = NekoConfig.unlimitedFavedStickers ? Integer.MAX_VALUE : getMessagesController().maxFaveStickersCount; } else { if (type == TYPE_IMAGE && remove) { - Toast.makeText(ApplicationLoader.applicationContext, LocaleController.getString("RemovedFromRecent", R.string.RemovedFromRecent), Toast.LENGTH_SHORT).show(); + NotificationCenter.getGlobalInstance().postNotificationName(NotificationCenter.showBulletin, Bulletin.TYPE_STICKER, document, StickerSetBulletinLayout.TYPE_REMOVED_FROM_RECENT); TLRPC.TL_messages_saveRecentSticker req = new TLRPC.TL_messages_saveRecentSticker(); req.id = new TLRPC.TL_inputDocument(); req.id.id = document.id; @@ -3921,16 +3920,26 @@ public class MediaDataController extends BaseController { getMessagesController().putUsers(users, isCache); getMessagesController().putChats(chats, isCache); }); + int checkedCount = 0; for (int a = 0, N = results.size(); a < N; a++) { - messageObjects.add(new MessageObject(currentAccount, results.get(a), usersDict, chatsDict, false, false)); + TLRPC.Message message = results.get(a); + if (message.media instanceof TLRPC.TL_messageMediaDocument || message.media instanceof TLRPC.TL_messageMediaPhoto) { + checkedCount++; + } + messageObjects.add(new MessageObject(currentAccount, message, usersDict, chatsDict, false, checkedCount < 30)); } return messageObjects; } else { AndroidUtilities.runOnUIThread(() -> { getMessagesController().putUsers(users, isCache); getMessagesController().putChats(chats, isCache); + int checkedCount = 0; for (int a = 0, N = results.size(); a < N; a++) { - messageObjects.add(new MessageObject(currentAccount, results.get(a), usersDict, chatsDict, false, false)); + TLRPC.Message message = results.get(a); + if (message.media instanceof TLRPC.TL_messageMediaDocument || message.media instanceof TLRPC.TL_messageMediaPhoto) { + checkedCount++; + } + messageObjects.add(new MessageObject(currentAccount, message, usersDict, chatsDict, false, checkedCount < 30)); } AndroidUtilities.runOnUIThread(() -> getNotificationCenter().postNotificationName(NotificationCenter.didLoadPinnedMessages, messageObjects.get(0).getDialogId(), null, true, messageObjects, null, 0, -1, false)); }); diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/MessageObject.java b/TMessagesProj/src/main/java/org/telegram/messenger/MessageObject.java index c30e26e56..45e609d71 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/MessageObject.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/MessageObject.java @@ -1140,11 +1140,6 @@ public class MessageObject { int offset = str.indexOf("%1$s"); rights = new StringBuilder(String.format(str, getUserName(whoUser, messageOwner.entities, offset))); } else { - String str = LocaleController.getString("EventLogPromoted", R.string.EventLogPromoted); - int offset = str.indexOf("%1$s"); - rights = new StringBuilder(String.format(str, getUserName(whoUser, messageOwner.entities, offset))); - rights.append("\n"); - TLRPC.TL_chatAdminRights o = prev_participant.admin_rights; TLRPC.TL_chatAdminRights n = new_participant.admin_rights; if (o == null) { @@ -1153,6 +1148,15 @@ public class MessageObject { if (n == null) { n = new TLRPC.TL_chatAdminRights(); } + String str; + if (n.other) { + str = LocaleController.getString("EventLogPromotedNoRights", R.string.EventLogPromotedNoRights); + } else { + str = LocaleController.getString("EventLogPromoted", R.string.EventLogPromoted); + } + int offset = str.indexOf("%1$s"); + rights = new StringBuilder(String.format(str, getUserName(whoUser, messageOwner.entities, offset))); + rights.append("\n"); if (!TextUtils.equals(prev_participant.rank, new_participant.rank)) { if (TextUtils.isEmpty(new_participant.rank)) { rights.append('\n').append('-').append(' '); @@ -1194,7 +1198,7 @@ public class MessageObject { rights.append(LocaleController.getString("EventLogPromotedBanUsers", R.string.EventLogPromotedBanUsers)); } if (o.manage_call != n.manage_call) { - rights.append('\n').append(n.ban_users ? '+' : '-').append(' '); + rights.append('\n').append(n.manage_call ? '+' : '-').append(' '); rights.append(LocaleController.getString("EventLogPromotedManageCall", R.string.EventLogPromotedManageCall)); } } @@ -1672,6 +1676,51 @@ public class MessageObject { } else { messageText = replaceWithLink(LocaleController.getString("EventLogVoiceChatAllowedToSpeak", R.string.EventLogVoiceChatAllowedToSpeak), "un1", fromUser); } + } else if (event.action instanceof TLRPC.TL_channelAdminLogEventActionParticipantJoinByInvite) { + TLRPC.TL_channelAdminLogEventActionParticipantJoinByInvite action = (TLRPC.TL_channelAdminLogEventActionParticipantJoinByInvite) event.action; + messageText = replaceWithLink(LocaleController.getString("ActionInviteUser", R.string.ActionInviteUser), "un1", fromUser); + } else if (event.action instanceof TLRPC.TL_channelAdminLogEventActionExportedInviteDelete) { + TLRPC.TL_channelAdminLogEventActionExportedInviteDelete action = (TLRPC.TL_channelAdminLogEventActionExportedInviteDelete) event.action; + messageText = replaceWithLink(LocaleController.formatString("ActionDeletedInviteLink", R.string.ActionDeletedInviteLink, action.invite.link), "un1", fromUser); + } else if (event.action instanceof TLRPC.TL_channelAdminLogEventActionExportedInviteRevoke) { + TLRPC.TL_channelAdminLogEventActionExportedInviteRevoke action = (TLRPC.TL_channelAdminLogEventActionExportedInviteRevoke) event.action; + messageText = replaceWithLink(LocaleController.formatString("ActionRevokedInviteLink", R.string.ActionRevokedInviteLink, action.invite.link), "un1", fromUser); + } else if (event.action instanceof TLRPC.TL_channelAdminLogEventActionExportedInviteEdit) { + TLRPC.TL_channelAdminLogEventActionExportedInviteEdit action = (TLRPC.TL_channelAdminLogEventActionExportedInviteEdit) event.action; + if (action.prev_invite.link != null && action.prev_invite.link.equals(action.new_invite.link)) { + messageText = replaceWithLink(LocaleController.formatString("ActionEditedInviteLinkToSame", R.string.ActionEditedInviteLinkToSame, action.prev_invite.link), "un1", fromUser); + } else { + messageText = replaceWithLink(LocaleController.formatString("ActionEditedInviteLink", R.string.ActionEditedInviteLink, action.prev_invite.link, action.new_invite.link), "un1", fromUser); + } + } else if (event.action instanceof TLRPC.TL_channelAdminLogEventActionParticipantVolume) { + TLRPC.TL_channelAdminLogEventActionParticipantVolume action = (TLRPC.TL_channelAdminLogEventActionParticipantVolume) event.action; + double vol = ChatObject.getParticipantVolume(action.participant) / 100.0; + TLRPC.User user = MessagesController.getInstance(currentAccount).getUser(action.participant.user_id); + messageText = replaceWithLink(LocaleController.formatString("ActionVolumeChanged", R.string.ActionVolumeChanged, (int) (vol > 0 ? Math.max(vol, 1) : 0)), "un1", fromUser); + messageText = replaceWithLink(messageText, "un2", user); + } else if (event.action instanceof TLRPC.TL_channelAdminLogEventActionChangeHistoryTTL) { + TLRPC.TL_channelAdminLogEventActionChangeHistoryTTL action = (TLRPC.TL_channelAdminLogEventActionChangeHistoryTTL) event.action; + if (!chat.megagroup) { + if (action.new_value != 0) { + messageText = LocaleController.formatString("ActionTTLChannelChanged", R.string.ActionTTLChannelChanged, LocaleController.formatTTLString(action.new_value)); + } else { + messageText = LocaleController.getString("ActionTTLChannelDisabled", R.string.ActionTTLChannelDisabled); + } + } else if (action.new_value == 0) { + messageText = replaceWithLink(LocaleController.getString("ActionTTLDisabled", R.string.ActionTTLDisabled), "un1", fromUser); + } else { + String time; + if (action.new_value > 24 * 60 * 60) { + time = LocaleController.formatPluralString("Days", action.new_value / (24 * 60 * 60)); + } else if (action.new_value >= 60 * 60) { + time = LocaleController.formatPluralString("Hours", action.new_value / (60 * 60)); + } else if (action.new_value >= 60) { + time = LocaleController.formatPluralString("Minutes", action.new_value / 60); + } else { + time = LocaleController.formatPluralString("Seconds", action.new_value); + } + messageText = replaceWithLink(LocaleController.formatString("ActionTTLChanged", R.string.ActionTTLChanged, time), "un1", fromUser); + } } else { messageText = "unsupported " + event.action; } @@ -2540,6 +2589,28 @@ public class MessageObject { messageText = LocaleController.formatString("MessageLifetimeRemoved", R.string.MessageLifetimeRemoved, UserObject.getFirstName(fromUser)); } } + } else if (messageOwner.action instanceof TLRPC.TL_messageActionSetMessagesTTL) { + TLRPC.TL_messageActionSetMessagesTTL action = (TLRPC.TL_messageActionSetMessagesTTL) messageOwner.action; + TLRPC.Chat chat = messageOwner.peer_id != null && messageOwner.peer_id.channel_id != 0 ? getChat(chats, sChats, messageOwner.peer_id.channel_id) : null; + if (chat != null && !chat.megagroup) { + if (action.period != 0) { + messageText = LocaleController.formatString("ActionTTLChannelChanged", R.string.ActionTTLChannelChanged, LocaleController.formatTTLString(action.period)); + } else { + messageText = LocaleController.getString("ActionTTLChannelDisabled", R.string.ActionTTLChannelDisabled); + } + } else if (action.period != 0) { + if (isOut()) { + messageText = LocaleController.formatString("ActionTTLYouChanged", R.string.ActionTTLYouChanged, LocaleController.formatTTLString(action.period)); + } else { + messageText = replaceWithLink(LocaleController.formatString("ActionTTLChanged", R.string.ActionTTLChanged, LocaleController.formatTTLString(action.period)), "un1", fromObject); + } + } else { + if (isOut()) { + messageText = LocaleController.getString("ActionTTLYouDisabled", R.string.ActionTTLYouDisabled); + } else { + messageText = replaceWithLink(LocaleController.getString("ActionTTLDisabled", R.string.ActionTTLDisabled), "un1", fromObject); + } + } } else if (messageOwner.action instanceof TLRPC.TL_messageActionLoginUnknownLocation) { String date; long time = ((long) messageOwner.date) * 1000; @@ -5542,6 +5613,9 @@ public class MessageObject { if (inScheduleMode && !chat.megagroup) { return chat.creator || chat.admin_rights != null && (chat.admin_rights.delete_messages || message.out); } + if (message.out && message instanceof TLRPC.TL_messageService) { + return message.id != 1 && ChatObject.canUserDoAdminAction(chat, ChatObject.ACTION_DELETE_MESSAGES); + } return inScheduleMode || message.id != 1 && (chat.creator || chat.admin_rights != null && (chat.admin_rights.delete_messages || message.out && (chat.megagroup || chat.admin_rights.post_messages)) || chat.megagroup && message.out && message.from_id instanceof TLRPC.TL_peerUser); } return inScheduleMode || isOut(message) || !ChatObject.isChannel(chat); diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/MessagesController.java b/TMessagesProj/src/main/java/org/telegram/messenger/MessagesController.java index ef6e070c1..c599f86b5 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/MessagesController.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/MessagesController.java @@ -9,6 +9,7 @@ package org.telegram.messenger; import android.app.Activity; +import android.appwidget.AppWidgetManager; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; @@ -23,7 +24,6 @@ import android.util.LongSparseArray; import android.util.SparseArray; import android.util.SparseBooleanArray; import android.util.SparseIntArray; -import android.widget.Toast; import androidx.core.app.NotificationManagerCompat; @@ -41,7 +41,9 @@ import org.telegram.ui.ActionBar.BaseFragment; import org.telegram.ui.ActionBar.Theme; import org.telegram.ui.ChatActivity; import org.telegram.ui.Components.AlertsCreator; +import org.telegram.ui.Components.BulletinFactory; import org.telegram.ui.DialogsActivity; +import org.telegram.ui.EditWidgetActivity; import org.telegram.ui.ProfileActivity; import java.io.File; @@ -52,6 +54,7 @@ import java.util.Comparator; import java.util.HashMap; import java.util.HashSet; import java.util.Locale; +import java.util.Map; import java.util.Set; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.CountDownLatch; @@ -187,6 +190,7 @@ public class MessagesController extends BaseController implements NotificationCe private boolean gettingNewDeleteTask; private int currentDeletingTaskTime; private ArrayList currentDeletingTaskMids; + private boolean currentDeletingTaskMedia; private int currentDeletingTaskChannelId; private Runnable currentDeleteTaskRunnable; @@ -309,6 +313,8 @@ public class MessagesController extends BaseController implements NotificationCe public boolean suggestStickersApiOnly; public ArrayList gifSearchEmojies = new ArrayList<>(); public HashSet diceEmojies; + public Set autologinDomains; + public String autologinToken; public HashMap diceSuccess = new HashMap<>(); public HashMap emojiSounds = new HashMap<>(); @@ -854,6 +860,15 @@ public class MessagesController extends BaseController implements NotificationCe exportPrivateUri.add("@s.whatsapp.net/"); } + autologinDomains = mainPreferences.getStringSet("autologinDomains", null); + if (autologinDomains != null) { + autologinDomains = new HashSet<>(autologinDomains); + } else { + autologinDomains = new HashSet<>(); + } + + autologinToken = mainPreferences.getString("autologinToken", null); + Set emojies = mainPreferences.getStringSet("diceEmojies", null); if (emojies == null) { diceEmojies = new HashSet<>(); @@ -1505,6 +1520,36 @@ public class MessagesController extends BaseController implements NotificationCe } break; } + case "autologin_domains": { + HashSet newDomains = new HashSet<>(); + if (value.value instanceof TLRPC.TL_jsonArray) { + TLRPC.TL_jsonArray array = (TLRPC.TL_jsonArray) value.value; + for (int b = 0, N2 = array.value.size(); b < N2; b++) { + TLRPC.JSONValue val = array.value.get(b); + if (val instanceof TLRPC.TL_jsonString) { + TLRPC.TL_jsonString string = (TLRPC.TL_jsonString) val; + newDomains.add(string.value); + } + } + } + if (!autologinDomains.equals(newDomains)) { + autologinDomains = newDomains; + editor.putStringSet("autologinDomains", autologinDomains); + changed = true; + } + break; + } + case "autologin_token": { + if (value.value instanceof TLRPC.TL_jsonString) { + TLRPC.TL_jsonString string = (TLRPC.TL_jsonString) value.value; + if (!string.value.equals(autologinToken)) { + autologinToken = string.value; + editor.putString("autologinToken", autologinToken); + changed = true; + } + } + break; + } case "emojies_send_dice": { HashSet newEmojies = new HashSet<>(); if (value.value instanceof TLRPC.TL_jsonArray) { @@ -1759,20 +1804,29 @@ public class MessagesController extends BaseController implements NotificationCe })); } - public void removeSuggestion(String suggestion) { - if (suggestion == null) { + public void removeSuggestion(long did, String suggestion) { + if (TextUtils.isEmpty(suggestion)) { return; } - if (pendingSuggestions.remove(suggestion)) { - SharedPreferences.Editor editor = mainPreferences.edit(); - editor.putStringSet("pendingSuggestions", pendingSuggestions); - editor.commit(); - TLRPC.TL_help_dismissSuggestion req = new TLRPC.TL_help_dismissSuggestion(); - req.suggestion = suggestion; - getConnectionsManager().sendRequest(req, (response, error) -> { - - }); + if (did == 0) { + if (pendingSuggestions.remove(suggestion)) { + SharedPreferences.Editor editor = mainPreferences.edit(); + editor.putStringSet("pendingSuggestions", pendingSuggestions); + editor.commit(); + } else { + return; + } } + TLRPC.TL_help_dismissSuggestion req = new TLRPC.TL_help_dismissSuggestion(); + req.suggestion = suggestion; + if (did == 0) { + req.peer = new TLRPC.TL_inputPeerEmpty(); + } else { + req.peer = getInputPeer((int) did); + } + getConnectionsManager().sendRequest(req, (response, error) -> { + + }); } public void updateConfig(final TLRPC.TL_config config) { @@ -2393,6 +2447,8 @@ public class MessagesController extends BaseController implements NotificationCe getLocationController().cleanup(); getMediaDataController().cleanup(); + showFiltersTooltip = false; + DialogsActivity.dialogsLoaded[currentAccount] = false; SharedPreferences.Editor editor = notificationsPreferences.edit(); @@ -2400,7 +2456,52 @@ public class MessagesController extends BaseController implements NotificationCe editor = emojiPreferences.edit(); editor.putLong("lastGifLoadTime", 0).putLong("lastStickersLoadTime", 0).putLong("lastStickersLoadTimeMask", 0).putLong("lastStickersLoadTimeFavs", 0).commit(); editor = mainPreferences.edit(); - editor.remove("archivehint").remove("proximityhint").remove("archivehint_l").remove("gifhint").remove("soundHint").remove("dcDomainName2").remove("webFileDatacenterId").remove("themehint").commit(); + editor.remove("archivehint").remove("proximityhint").remove("archivehint_l").remove("gifhint").remove("soundHint").remove("dcDomainName2").remove("webFileDatacenterId").remove("themehint").remove("showFiltersTooltip").commit(); + + SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE); + SharedPreferences.Editor widgetEditor = null; + AppWidgetManager appWidgetManager = null; + ArrayList chatsWidgets = null; + ArrayList contactsWidgets = null; + Map values = preferences.getAll(); + for (Map.Entry entry : values.entrySet()) { + String key = entry.getKey(); + if (key.startsWith("account")) { + Integer value = (Integer) entry.getValue(); + if (value == currentAccount) { + int widgetId = Utilities.parseInt(key); + if (widgetEditor == null) { + widgetEditor = preferences.edit(); + appWidgetManager = AppWidgetManager.getInstance(ApplicationLoader.applicationContext); + } + widgetEditor.putBoolean("deleted" + widgetId, true); + if (preferences.getInt("type" + widgetId, 0) == EditWidgetActivity.TYPE_CHATS) { + if (chatsWidgets == null) { + chatsWidgets = new ArrayList<>(); + } + chatsWidgets.add(widgetId); + } else { + if (contactsWidgets == null) { + contactsWidgets = new ArrayList<>(); + } + contactsWidgets.add(widgetId); + } + } + } + } + if (widgetEditor != null) { + widgetEditor.commit(); + } + if (chatsWidgets != null) { + for (int a = 0, N = chatsWidgets.size(); a < N; a++) { + ChatsWidgetProvider.updateWidget(ApplicationLoader.applicationContext, appWidgetManager, chatsWidgets.get(a), true); + } + } + if (contactsWidgets != null) { + for (int a = 0, N = contactsWidgets.size(); a < N; a++) { + ContactsWidgetProvider.updateWidget(ApplicationLoader.applicationContext, appWidgetManager, contactsWidgets.get(a), true); + } + } lastScheduledServerQueryTime.clear(); lastServerQueryTime.clear(); @@ -2513,6 +2614,7 @@ public class MessagesController extends BaseController implements NotificationCe currentDeletingTaskTime = 0; currentDeletingTaskMids = null; + currentDeletingTaskMedia = false; currentDeletingTaskChannelId = 0; gettingNewDeleteTask = false; loadingBlockedPeers = false; @@ -3460,6 +3562,7 @@ public class MessagesController extends BaseController implements NotificationCe } else if (currentUser != null) { req.peer = getInputPeer(currentUser.id); } + req.message = ""; req.reason = new TLRPC.TL_inputReportReasonGeoIrrelevant(); getConnectionsManager().sendRequest(req, (response, error) -> { @@ -3651,7 +3754,9 @@ public class MessagesController extends BaseController implements NotificationCe getNewDeleteTask(null, 0); } }); - AndroidUtilities.runOnUIThread(() -> getNotificationCenter().postNotificationName(NotificationCenter.didCreatedNewDeleteTask, mids)); + if (mids != null) { + AndroidUtilities.runOnUIThread(() -> getNotificationCenter().postNotificationName(NotificationCenter.didCreatedNewDeleteTask, mids)); + } } public void getNewDeleteTask(final ArrayList oldTask, final int channelId) { @@ -3672,15 +3777,17 @@ public class MessagesController extends BaseController implements NotificationCe currentDeleteTaskRunnable = null; final ArrayList mids = new ArrayList<>(currentDeletingTaskMids); AndroidUtilities.runOnUIThread(() -> { - if (!mids.isEmpty() && mids.get(0) > 0) { + if (currentDeletingTaskMedia) { getMessagesStorage().emptyMessagesMedia(mids); } else { - deleteMessages(mids, null, null, 0, 0, false, false); + deleteMessages(mids, null, null, 0, 0, false, false, !mids.isEmpty() && mids.get(0) > 0); } Utilities.stageQueue.postRunnable(() -> { getNewDeleteTask(mids, currentDeletingTaskChannelId); currentDeletingTaskTime = 0; currentDeletingTaskMids = null; + currentDeletingTaskMedia = false; + currentDeletingTaskChannelId = 0; }); }); return true; @@ -3688,12 +3795,14 @@ public class MessagesController extends BaseController implements NotificationCe return false; } - public void processLoadedDeleteTask(final int taskTime, final ArrayList messages, final int channelId) { + public void processLoadedDeleteTask(int taskTime, ArrayList messages, boolean media, int channelId) { Utilities.stageQueue.postRunnable(() -> { gettingNewDeleteTask = false; if (messages != null) { currentDeletingTaskTime = taskTime; currentDeletingTaskMids = messages; + currentDeletingTaskMedia = media; + currentDeletingTaskChannelId = channelId; if (currentDeleteTaskRunnable != null) { Utilities.stageQueue.cancelRunnable(currentDeleteTaskRunnable); @@ -3708,6 +3817,8 @@ public class MessagesController extends BaseController implements NotificationCe } else { currentDeletingTaskTime = 0; currentDeletingTaskMids = null; + currentDeletingTaskMedia = false; + currentDeletingTaskChannelId = 0; } }); } @@ -4241,20 +4352,26 @@ public class MessagesController extends BaseController implements NotificationCe } public void deleteMessages(ArrayList messages, ArrayList randoms, TLRPC.EncryptedChat encryptedChat, final long dialogId, final int channelId, boolean forAll, boolean scheduled) { - deleteMessages(messages, randoms, encryptedChat, dialogId, channelId, forAll, scheduled, 0, null); + deleteMessages(messages, randoms, encryptedChat, dialogId, channelId, forAll, scheduled, false, 0, null); } - public void deleteMessages(ArrayList messages, ArrayList randoms, TLRPC.EncryptedChat encryptedChat, final long dialogId, final int channelId, boolean forAll, boolean scheduled, long taskId, TLObject taskRequest) { + public void deleteMessages(ArrayList messages, ArrayList randoms, TLRPC.EncryptedChat encryptedChat, final long dialogId, final int channelId, boolean forAll, boolean scheduled, boolean cacheOnly) { + deleteMessages(messages, randoms, encryptedChat, dialogId, channelId, forAll, scheduled, cacheOnly, 0, null); + } + + public void deleteMessages(ArrayList messages, ArrayList randoms, TLRPC.EncryptedChat encryptedChat, final long dialogId, final int channelId, boolean forAll, boolean scheduled, boolean cacheOnly, long taskId, TLObject taskRequest) { if ((messages == null || messages.isEmpty()) && taskId == 0) { return; } ArrayList toSend = null; if (taskId == 0) { - toSend = new ArrayList<>(); - for (int a = 0, N = messages.size(); a < N; a++) { - Integer mid = messages.get(a); - if (mid > 0) { - toSend.add(mid); + if (!cacheOnly) { + toSend = new ArrayList<>(); + for (int a = 0, N = messages.size(); a < N; a++) { + Integer mid = messages.get(a); + if (mid > 0) { + toSend.add(mid); + } } } if (scheduled) { @@ -4276,6 +4393,9 @@ public class MessagesController extends BaseController implements NotificationCe } getNotificationCenter().postNotificationName(NotificationCenter.messagesDeleted, messages, channelId, scheduled); } + if (cacheOnly) { + return; + } final long newTaskId; if (scheduled) { @@ -4577,6 +4697,45 @@ public class MessagesController extends BaseController implements NotificationCe deleteDialog(did, 1, onlyHistory, 0, revoke, null, 0); } + public void setDialogHistoryTTL(final long did, int ttl) { + TLRPC.TL_messages_setHistoryTTL req = new TLRPC.TL_messages_setHistoryTTL(); + req.peer = getInputPeer((int) did); + req.period = ttl; + getConnectionsManager().sendRequest(req, (response, error) -> { + if (response != null) { + TLRPC.Updates updates = (TLRPC.Updates) response; + processUpdates(updates, false); + } + }); + int lowerId = (int) did; + TLRPC.ChatFull chatFull = null; + TLRPC.UserFull userFull = null; + if (lowerId > 0) { + userFull = getUserFull(lowerId); + if (userFull == null) { + return; + } + userFull.ttl_period = ttl; + userFull.flags |= 16384; + } else { + chatFull = getChatFull(-lowerId); + if (chatFull == null) { + return; + } + chatFull.ttl_period = ttl; + if (chatFull instanceof TLRPC.TL_channelFull) { + chatFull.flags |= 16777216; + } else { + chatFull.flags |= 16384; + } + } + if (chatFull != null) { + getNotificationCenter().postNotificationName(NotificationCenter.chatInfoDidLoad, chatFull, 0, false); + } else { + getNotificationCenter().postNotificationName(NotificationCenter.userInfoDidLoad, lowerId, userFull); + } + } + public void setDialogsInTransaction(boolean transaction) { dialogsInTransaction = transaction; if (!transaction) { @@ -8769,8 +8928,60 @@ public class MessagesController extends BaseController implements NotificationCe progressDialog.setOnCancelListener(dialog -> getConnectionsManager().cancelRequest(reqId, true)); try { progressDialog.show(); - } catch (Exception e) { - //don't promt + } catch (Exception ignore) { + + } + } + } + + public void convertToGigaGroup(final Context context, TLRPC.Chat chat, BaseFragment fragment, MessagesStorage.BooleanCallback convertRunnable) { + TLRPC.TL_channels_convertToGigagroup req = new TLRPC.TL_channels_convertToGigagroup(); + req.channel = getInputChannel(chat); + final AlertDialog progressDialog = context != null ? new AlertDialog(context, 3) : null; + final int reqId = getConnectionsManager().sendRequest(req, (response, error) -> { + if (error == null) { + if (context != null) { + AndroidUtilities.runOnUIThread(() -> { + if (!((Activity) context).isFinishing()) { + try { + progressDialog.dismiss(); + } catch (Exception e) { + FileLog.e(e); + } + } + }); + } + TLRPC.Updates updates = (TLRPC.Updates) response; + processUpdates((TLRPC.Updates) response, false); + AndroidUtilities.runOnUIThread(() -> { + if (convertRunnable != null) { + convertRunnable.run(true); + } + }); + } else { + AndroidUtilities.runOnUIThread(() -> { + if (convertRunnable != null) { + convertRunnable.run(false); + } + if (context != null) { + if (!((Activity) context).isFinishing()) { + try { + progressDialog.dismiss(); + } catch (Exception e) { + FileLog.e(e); + } + AlertsCreator.processError(currentAccount, error, fragment, req, false); + } + } + }); + } + }); + if (progressDialog != null) { + progressDialog.setOnCancelListener(dialog -> getConnectionsManager().cancelRequest(reqId, true)); + try { + progressDialog.showDelayed(400); + } catch (Exception ignore) { + } } } @@ -10886,6 +11097,7 @@ public class MessagesController extends BaseController implements NotificationCe message.via_bot_id = updates.via_bot_id; message.flags = updates.flags | TLRPC.MESSAGE_FLAG_HAS_FROM_ID; message.reply_to = updates.reply_to; + message.ttl_period = updates.ttl_period; message.media = new TLRPC.TL_messageMediaEmpty(); ConcurrentHashMap read_max = message.out ? dialogs_read_outbox_max : dialogs_read_inbox_max; @@ -12374,6 +12586,11 @@ public class MessagesController extends BaseController implements NotificationCe updatesOnMainThread = new ArrayList<>(); } updatesOnMainThread.add(baseUpdate); + } else if (baseUpdate instanceof TLRPC.TL_updatePeerHistoryTTL) { + if (updatesOnMainThread == null) { + updatesOnMainThread = new ArrayList<>(); + } + updatesOnMainThread.add(baseUpdate); } } if (messages != null) { @@ -12992,6 +13209,47 @@ public class MessagesController extends BaseController implements NotificationCe getNotificationCenter().postNotificationName(NotificationCenter.threadMessagesRead, (long) -update.channel_id, update.top_msg_id, 0, update.read_max_id); } else if (baseUpdate instanceof TLRPC.TL_updateLoginToken) { getNotificationCenter().postNotificationName(NotificationCenter.updateLoginToken); + } else if (baseUpdate instanceof TLRPC.TL_updatePeerHistoryTTL) { + TLRPC.TL_updatePeerHistoryTTL updatePeerHistoryTTL = (TLRPC.TL_updatePeerHistoryTTL) baseUpdate; + int lowerId = MessageObject.getPeerId(updatePeerHistoryTTL.peer); + TLRPC.ChatFull chatFull = null; + TLRPC.UserFull userFull = null; + if (lowerId > 0) { + userFull = getUserFull(lowerId); + if (userFull != null) { + userFull.ttl_period = updatePeerHistoryTTL.ttl_period; + if (userFull.ttl_period == 0) { + userFull.flags &= ~16384; + } else { + userFull.flags |= 16384; + } + } + } else { + chatFull = getChatFull(-lowerId); + if (chatFull != null) { + chatFull.ttl_period = updatePeerHistoryTTL.ttl_period; + if (chatFull instanceof TLRPC.TL_channelFull) { + if (chatFull.ttl_period == 0) { + chatFull.flags &= ~16777216; + } else { + chatFull.flags |= 16777216; + } + } else { + if (chatFull.ttl_period == 0) { + chatFull.flags &= ~16384; + } else { + chatFull.flags |= 16384; + } + } + } + } + if (chatFull != null) { + getNotificationCenter().postNotificationName(NotificationCenter.chatInfoDidLoad, chatFull, 0, false); + getMessagesStorage().updateChatInfo(chatFull, false); + } else if (userFull != null) { + getNotificationCenter().postNotificationName(NotificationCenter.userInfoDidLoad, lowerId, userFull); + getMessagesStorage().updateUserInfo(userFull, false); + } } } if (editor != null) { @@ -13768,6 +14026,7 @@ public class MessagesController extends BaseController implements NotificationCe } if (chat != null && chat.megagroup) { dialogsGroupsOnly.add(d); + canAddToForward = !chat.gigagroup || ChatObject.hasAdminRights(chat); } else { dialogsChannelsOnly.add(d); canAddToForward = ChatObject.hasAdminRights(chat) && ChatObject.canPost(chat); @@ -14039,9 +14298,9 @@ public class MessagesController extends BaseController implements NotificationCe openChatOrProfileWith(res.users.get(0), null, fragment, type, false); } } else { - if (fragment.getParentActivity() != null) { + if (fragment != null) { try { - Toast.makeText(fragment.getParentActivity(), LocaleController.getString("NoUsernameFound", R.string.NoUsernameFound), Toast.LENGTH_SHORT).show(); + BulletinFactory.of(fragment).createErrorBulletin(LocaleController.getString("NoUsernameFound", R.string.NoUsernameFound)).show(); } catch (Exception e) { FileLog.e(e); } diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/MessagesStorage.java b/TMessagesProj/src/main/java/org/telegram/messenger/MessagesStorage.java index be40fa912..8bda7fff7 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/MessagesStorage.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/MessagesStorage.java @@ -33,6 +33,7 @@ import org.telegram.tgnet.TLObject; import org.telegram.tgnet.TLRPC; import org.telegram.ui.ActionBar.Theme; import org.telegram.ui.Adapters.DialogsSearchAdapter; +import org.telegram.ui.EditWidgetActivity; import java.io.File; import java.util.ArrayList; @@ -92,7 +93,7 @@ public class MessagesStorage extends BaseController { private CountDownLatch openSync = new CountDownLatch(1); private static volatile MessagesStorage[] Instance = new MessagesStorage[UserConfig.MAX_ACCOUNT_COUNT]; - private final static int LAST_DB_VERSION = 76; + private final static int LAST_DB_VERSION = 77; public static MessagesStorage getInstance(int num) { MessagesStorage localInstance = Instance[num]; @@ -322,7 +323,7 @@ public class MessagesStorage extends BaseController { database.executeFast("CREATE TABLE randoms(random_id INTEGER, mid INTEGER, PRIMARY KEY (random_id, mid))").stepThis().dispose(); database.executeFast("CREATE INDEX IF NOT EXISTS mid_idx_randoms ON randoms(mid);").stepThis().dispose(); - database.executeFast("CREATE TABLE enc_tasks_v2(mid INTEGER PRIMARY KEY, date INTEGER)").stepThis().dispose(); + database.executeFast("CREATE TABLE enc_tasks_v2(mid INTEGER PRIMARY KEY, date INTEGER, media INTEGER)").stepThis().dispose(); database.executeFast("CREATE INDEX IF NOT EXISTS date_idx_enc_tasks_v2 ON enc_tasks_v2(date);").stepThis().dispose(); database.executeFast("CREATE TABLE messages_seq(mid INTEGER PRIMARY KEY, seq_in INTEGER, seq_out INTEGER);").stepThis().dispose(); @@ -457,6 +458,13 @@ public class MessagesStorage extends BaseController { openDatabase(openTries == 1 ? 2 : 3); } } + if (BuildVars.DEBUG_PRIVATE_VERSION) { //TODO remove later + try { + database.executeFast("DELETE FROM pending_tasks WHERE 1").stepThis().dispose(); + } catch (Exception e) { + FileLog.e(e); + } + } loadDialogFilters(); loadUnreadMessages(); loadPendingTasks(); @@ -948,6 +956,11 @@ public class MessagesStorage extends BaseController { version = 76; } if (version == 76) { + executeNoException("ALTER TABLE enc_tasks_v2 ADD COLUMN media INTEGER default -1"); + database.executeFast("PRAGMA user_version = 77").stepThis().dispose(); + version = 77; + } + if (version == 77) { } } catch (Exception e) { @@ -1203,7 +1216,7 @@ public class MessagesStorage extends BaseController { removePendingTask(taskId); } else { final TLObject finalRequest = request; - AndroidUtilities.runOnUIThread(() -> getMessagesController().deleteMessages(null, null, null, 0, channelId, true, false, taskId, finalRequest)); + AndroidUtilities.runOnUIThread(() -> getMessagesController().deleteMessages(null, null, null, 0, channelId, true, false, false, taskId, finalRequest)); } break; } @@ -1292,7 +1305,7 @@ public class MessagesStorage extends BaseController { removePendingTask(taskId); } else { final TLObject finalRequest = request; - AndroidUtilities.runOnUIThread(() -> MessagesController.getInstance(currentAccount).deleteMessages(null, null, null, dialogId, channelId, true, true, taskId, finalRequest)); + AndroidUtilities.runOnUIThread(() -> MessagesController.getInstance(currentAccount).deleteMessages(null, null, null, dialogId, channelId, true, true, false, taskId, finalRequest)); } break; } @@ -3626,13 +3639,30 @@ public class MessagesStorage extends BaseController { storageQueue.postRunnable(() -> { try { if (oldTask != null) { - String ids = TextUtils.join(",", oldTask); + String ids; + if (channelId != 0) { + StringBuilder builder = new StringBuilder(); + for (int a = 0, N = oldTask.size(); a < N; a++) { + long messageId = oldTask.get(a); + if (channelId != 0) { + messageId |= ((long) channelId) << 32; + } + if (builder.length() > 0) { + builder.append(","); + } + builder.append(messageId); + } + ids = builder.toString(); + } else { + ids = TextUtils.join(",", oldTask); + } database.executeFast(String.format(Locale.US, "DELETE FROM enc_tasks_v2 WHERE mid IN(%s)", ids)).stepThis().dispose(); } int date = 0; int channelId1 = -1; + boolean media = false; ArrayList arr = null; - SQLiteCursor cursor = database.queryFinalized("SELECT mid, date FROM enc_tasks_v2 WHERE date = (SELECT min(date) FROM enc_tasks_v2)"); + SQLiteCursor cursor = database.queryFinalized("SELECT mid, date, media FROM enc_tasks_v2 WHERE date = (SELECT min(date) FROM enc_tasks_v2)"); while (cursor.next()) { long mid = cursor.longValue(0); if (channelId1 == -1) { @@ -3645,10 +3675,17 @@ public class MessagesStorage extends BaseController { if (arr == null) { arr = new ArrayList<>(); } - arr.add((int) mid); + int m = (int) mid; + arr.add(m); + int isMedia = cursor.intValue(2); + if (isMedia == -1) { + media = m > 0; + } else { + media = isMedia != 0; + } } cursor.dispose(); - getMessagesController().processLoadedDeleteTask(date, arr, channelId1); + getMessagesController().processLoadedDeleteTask(date, arr, media, channelId1); } catch (Exception e) { FileLog.e(e); } @@ -3742,7 +3779,7 @@ public class MessagesStorage extends BaseController { getNotificationCenter().postNotificationName(NotificationCenter.messagesReadContent, midsArray); }); - SQLitePreparedStatement state = database.executeFast("REPLACE INTO enc_tasks_v2 VALUES(?, ?)"); + SQLitePreparedStatement state = database.executeFast("REPLACE INTO enc_tasks_v2 VALUES(?, ?, ?)"); for (int a = 0; a < messages.size(); a++) { int key = messages.keyAt(a); ArrayList arr = messages.get(key); @@ -3750,6 +3787,7 @@ public class MessagesStorage extends BaseController { state.requery(); state.bindLong(1, arr.get(b)); state.bindInteger(2, key); + state.bindInteger(3, 1); state.step(); } } @@ -3809,7 +3847,7 @@ public class MessagesStorage extends BaseController { if (messages.size() != 0) { database.beginTransaction(); - SQLitePreparedStatement state = database.executeFast("REPLACE INTO enc_tasks_v2 VALUES(?, ?)"); + SQLitePreparedStatement state = database.executeFast("REPLACE INTO enc_tasks_v2 VALUES(?, ?, ?)"); for (int a = 0; a < messages.size(); a++) { int key = messages.keyAt(a); ArrayList arr = messages.get(key); @@ -3817,6 +3855,7 @@ public class MessagesStorage extends BaseController { state.requery(); state.bindLong(1, arr.get(b)); state.bindInteger(2, key); + state.bindInteger(3, 0); state.step(); } } @@ -6872,9 +6911,13 @@ public class MessagesStorage extends BaseController { } private void updateWidgets(ArrayList dids) { + if (dids.isEmpty()) { + return; + } try { AppWidgetManager appWidgetManager = null; - SQLiteCursor cursor = database.queryFinalized(String.format(Locale.US, "SELECT DISTINCT id FROM shortcut_widget WHERE did IN(%s)", TextUtils.join(",", dids))); + String ids = TextUtils.join(",", dids); + SQLiteCursor cursor = database.queryFinalized(String.format(Locale.US, "SELECT DISTINCT id FROM shortcut_widget WHERE did IN(%s,-1)", TextUtils.join(",", dids))); while (cursor.next()) { if (appWidgetManager == null) { appWidgetManager = AppWidgetManager.getInstance(ApplicationLoader.applicationContext); @@ -6890,16 +6933,27 @@ public class MessagesStorage extends BaseController { public void putWidgetDialogs(int widgetId, ArrayList dids) { storageQueue.postRunnable(() -> { try { + database.beginTransaction(); + database.executeFast("DELETE FROM shortcut_widget WHERE id = " + widgetId).stepThis().dispose(); SQLitePreparedStatement state = database.executeFast("REPLACE INTO shortcut_widget VALUES(?, ?, ?)"); - for (int a = 0, N = dids.size(); a < N; a++) { - long did = dids.get(a); + if (dids.isEmpty()) { state.requery(); state.bindInteger(1, widgetId); - state.bindInteger(2, (int) did); - state.bindInteger(3, a); + state.bindLong(2, -1); + state.bindInteger(3, 0); state.step(); + } else { + for (int a = 0, N = dids.size(); a < N; a++) { + long did = dids.get(a); + state.requery(); + state.bindInteger(1, widgetId); + state.bindLong(2, did); + state.bindInteger(3, a); + state.step(); + } } state.dispose(); + database.commitTransaction(); } catch (Exception e) { FileLog.e(e); } @@ -6916,7 +6970,7 @@ public class MessagesStorage extends BaseController { }); } - public void getWidgetDialogs(int widgetId, ArrayList dids, LongSparseArray dialogs, LongSparseArray messages, ArrayList users, ArrayList chats) { + public void getWidgetDialogIds(int widgetId, int type, ArrayList dids, ArrayList users, ArrayList chats, boolean edit) { final CountDownLatch countDownLatch = new CountDownLatch(1); storageQueue.postRunnable(() -> { try { @@ -6924,18 +6978,128 @@ public class MessagesStorage extends BaseController { ArrayList chatsToLoad = new ArrayList<>(); SQLiteCursor cursor = database.queryFinalized(String.format(Locale.US, "SELECT did FROM shortcut_widget WHERE id = %d ORDER BY ord ASC", widgetId)); while (cursor.next()) { - int id = cursor.intValue(0); + long id = cursor.longValue(0); + if (id == -1) { + continue; + } dids.add(id); - if (id > 0) { - usersToLoad.add(id); - } else { - chatsToLoad.add(-id); + if (users != null && chats != null) { + int lowerId = (int) id; + if (lowerId > 0) { + usersToLoad.add(lowerId); + } else { + chatsToLoad.add(-lowerId); + } } } cursor.dispose(); - cursor = database.queryFinalized(String.format(Locale.US, "SELECT d.did, d.last_mid, d.unread_count, d.date, m.data, m.read_state, m.mid, m.send_state, m.date FROM dialogs as d LEFT JOIN messages as m ON d.last_mid = m.mid WHERE d.did IN(%s)", TextUtils.join(",", dids))); + if (!edit && dids.isEmpty()) { + if (type == EditWidgetActivity.TYPE_CHATS) { + cursor = database.queryFinalized("SELECT did FROM dialogs WHERE folder_id = 0 ORDER BY pinned DESC, date DESC LIMIT 0,10"); + while (cursor.next()) { + long dialogId = cursor.longValue(0); + if (DialogObject.isFolderDialogId(dialogId)) { + continue; + } + dids.add(dialogId); + if (users != null && chats != null) { + int lowerId = (int) dialogId; + if (lowerId > 0) { + usersToLoad.add(lowerId); + } else { + chatsToLoad.add(-lowerId); + } + } + } + cursor.dispose(); + } else { + cursor = getMessagesStorage().getDatabase().queryFinalized("SELECT did FROM chat_hints WHERE type = 0 ORDER BY rating DESC LIMIT 4"); + while (cursor.next()) { + long dialogId = cursor.longValue(0); + dids.add(dialogId); + if (users != null && chats != null) { + int lowerId = (int) dialogId; + if (lowerId > 0) { + usersToLoad.add(lowerId); + } else { + chatsToLoad.add(-lowerId); + } + } + } + cursor.dispose(); + } + } + if (users != null && chats != null) { + if (!chatsToLoad.isEmpty()) { + getChatsInternal(TextUtils.join(",", chatsToLoad), chats); + } + if (!usersToLoad.isEmpty()) { + getUsersInternal(TextUtils.join(",", usersToLoad), users); + } + } + } catch (Exception e) { + FileLog.e(e); + } finally { + countDownLatch.countDown(); + } + }); + try { + countDownLatch.await(); + } catch (Exception e) { + FileLog.e(e); + } + } + + public void getWidgetDialogs(int widgetId, int type, ArrayList dids, LongSparseArray dialogs, LongSparseArray messages, ArrayList users, ArrayList chats) { + final CountDownLatch countDownLatch = new CountDownLatch(1); + storageQueue.postRunnable(() -> { + try { + boolean add = false; + ArrayList usersToLoad = new ArrayList<>(); + ArrayList chatsToLoad = new ArrayList<>(); + SQLiteCursor cursor = database.queryFinalized(String.format(Locale.US, "SELECT did FROM shortcut_widget WHERE id = %d ORDER BY ord ASC", widgetId)); + while (cursor.next()) { + long id = cursor.longValue(0); + if (id == -1) { + continue; + } + dids.add(id); + int lowerId = (int) id; + if (lowerId > 0) { + usersToLoad.add(lowerId); + } else { + chatsToLoad.add(-lowerId); + } + } + cursor.dispose(); + if (dids.isEmpty() && type == EditWidgetActivity.TYPE_CONTACTS) { + cursor = getMessagesStorage().getDatabase().queryFinalized("SELECT did FROM chat_hints WHERE type = 0 ORDER BY rating DESC LIMIT 4"); + while (cursor.next()) { + long dialogId = cursor.longValue(0); + dids.add(dialogId); + int lowerId = (int) dialogId; + if (lowerId > 0) { + usersToLoad.add(lowerId); + } else { + chatsToLoad.add(-lowerId); + } + } + cursor.dispose(); + } + if (dids.isEmpty()) { + add = true; + cursor = database.queryFinalized("SELECT d.did, d.last_mid, d.unread_count, d.date, m.data, m.read_state, m.mid, m.send_state, m.date FROM dialogs as d LEFT JOIN messages as m ON d.last_mid = m.mid WHERE d.folder_id = 0 ORDER BY d.pinned DESC, d.date DESC LIMIT 0,10"); + } else { + cursor = database.queryFinalized(String.format(Locale.US, "SELECT d.did, d.last_mid, d.unread_count, d.date, m.data, m.read_state, m.mid, m.send_state, m.date FROM dialogs as d LEFT JOIN messages as m ON d.last_mid = m.mid WHERE d.did IN(%s)", TextUtils.join(",", dids))); + } while (cursor.next()) { long dialogId = cursor.longValue(0); + if (DialogObject.isFolderDialogId(dialogId)) { + continue; + } + if (add) { + dids.add(dialogId); + } TLRPC.Dialog dialog = new TLRPC.TL_dialog(); dialog.id = dialogId; dialog.top_message = cursor.intValue(1); @@ -6962,6 +7126,28 @@ public class MessagesStorage extends BaseController { } } cursor.dispose(); + if (!add) { + if (dids.size() > dialogs.size()) { + for (int a = 0, N = dids.size(); a < N; a++) { + long did = dids.get(a); + if (dialogs.get(dids.get(a)) == null) { + TLRPC.TL_dialog dialog = new TLRPC.TL_dialog(); + dialog.id = did; + dialogs.put(dialog.id, dialog); + int lowerId = (int) did; + if (lowerId < 0) { + if (chatsToLoad.contains(-lowerId)) { + chatsToLoad.add(-lowerId); + } + } else { + if (usersToLoad.contains(lowerId)) { + usersToLoad.add(lowerId); + } + } + } + } + } + } if (!chatsToLoad.isEmpty()) { getChatsInternal(TextUtils.join(",", chatsToLoad), chats); } @@ -8194,6 +8380,8 @@ public class MessagesStorage extends BaseController { SQLitePreparedStatement state_download = database.executeFast("REPLACE INTO download_queue VALUES(?, ?, ?, ?, ?)"); SQLitePreparedStatement state_webpage = database.executeFast("REPLACE INTO webpage_pending VALUES(?, ?)"); SQLitePreparedStatement state_polls = null; + SQLitePreparedStatement state_tasks = null; + int minDeleteTime = Integer.MAX_VALUE; for (int a = 0; a < messages.size(); a++) { TLRPC.Message message = messages.get(a); @@ -8429,6 +8617,18 @@ public class MessagesStorage extends BaseController { state_media.step(); } + if (message.ttl_period != 0 && message.id > 0) { + if (state_tasks == null) { + state_tasks = database.executeFast("REPLACE INTO enc_tasks_v2 VALUES(?, ?, ?)"); + } + state_tasks.requery(); + state_tasks.bindLong(1, messageId); + state_tasks.bindInteger(2, message.date + message.ttl_period); + state_tasks.bindInteger(3, 0); + state_tasks.step(); + minDeleteTime = Math.min(minDeleteTime, message.date + message.ttl_period); + } + if (message.media instanceof TLRPC.TL_messageMediaPoll) { if (state_polls == null) { state_polls = database.executeFast("REPLACE INTO polls VALUES(?, ?)"); @@ -8518,6 +8718,10 @@ public class MessagesStorage extends BaseController { if (state_media != null) { state_media.dispose(); } + if (state_tasks != null) { + state_tasks.dispose(); + getMessagesController().didAddedNewTask(minDeleteTime, null); + } if (state_polls != null) { state_polls.dispose(); } @@ -9893,7 +10097,6 @@ public class MessagesStorage extends BaseController { SQLitePreparedStatement state = database.executeFast("REPLACE INTO messages VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, NULL, ?, ?, ?, ?, ?)"); SQLitePreparedStatement state2 = database.executeFast("REPLACE INTO media_v2 VALUES(?, ?, ?, ?, ?)"); - if (message.dialog_id == 0) { MessageObject.getDialogId(message); } @@ -10059,6 +10262,8 @@ public class MessagesStorage extends BaseController { SQLitePreparedStatement state_media = database.executeFast("REPLACE INTO media_v2 VALUES(?, ?, ?, ?, ?)"); SQLitePreparedStatement state_polls = null; SQLitePreparedStatement state_webpage = null; + SQLitePreparedStatement state_tasks = null; + int minDeleteTime = Integer.MAX_VALUE; TLRPC.Message botKeyboard = null; int channelId = 0; for (int a = 0; a < count; a++) { @@ -10230,6 +10435,18 @@ public class MessagesStorage extends BaseController { } data.reuse(); + if (message.ttl_period != 0 && message.id > 0) { + if (state_tasks == null) { + state_tasks = database.executeFast("REPLACE INTO enc_tasks_v2 VALUES(?, ?, ?)"); + } + state_tasks.requery(); + state_tasks.bindLong(1, messageId); + state_tasks.bindInteger(2, message.date + message.ttl_period); + state_tasks.bindInteger(3, 0); + state_tasks.step(); + minDeleteTime = Math.min(minDeleteTime, message.date + message.ttl_period); + } + if (message.media instanceof TLRPC.TL_messageMediaPoll) { if (state_polls == null) { state_polls = database.executeFast("REPLACE INTO polls VALUES(?, ?)"); @@ -10260,6 +10477,10 @@ public class MessagesStorage extends BaseController { if (state_webpage != null) { state_webpage.dispose(); } + if (state_tasks != null) { + state_tasks.dispose(); + getMessagesController().didAddedNewTask(minDeleteTime, null); + } if (state_polls != null) { state_polls.dispose(); } @@ -10727,6 +10948,8 @@ public class MessagesStorage extends BaseController { SQLitePreparedStatement state_holes = database.executeFast("REPLACE INTO messages_holes VALUES(?, ?, ?)"); SQLitePreparedStatement state_media_holes = database.executeFast("REPLACE INTO media_holes_v2 VALUES(?, ?, ?, ?)"); SQLitePreparedStatement state_polls = null; + SQLitePreparedStatement state_tasks = null; + int minDeleteTime = Integer.MAX_VALUE; for (int a = 0; a < dialogs.dialogs.size(); a++) { TLRPC.Dialog dialog = dialogs.dialogs.get(a); @@ -10828,6 +11051,18 @@ public class MessagesStorage extends BaseController { } data.reuse(); + if (message.ttl_period != 0 && message.id > 0) { + if (state_tasks == null) { + state_tasks = database.executeFast("REPLACE INTO enc_tasks_v2 VALUES(?, ?, ?)"); + } + state_tasks.requery(); + state_tasks.bindLong(1, messageId); + state_tasks.bindInteger(2, message.date + message.ttl_period); + state_tasks.bindInteger(3, 0); + state_tasks.step(); + minDeleteTime = Math.min(minDeleteTime, message.date + message.ttl_period); + } + if (message.media instanceof TLRPC.TL_messageMediaPoll) { if (state_polls == null) { state_polls = database.executeFast("REPLACE INTO polls VALUES(?, ?)"); @@ -10898,6 +11133,10 @@ public class MessagesStorage extends BaseController { state_settings.dispose(); state_holes.dispose(); state_media_holes.dispose(); + if (state_tasks != null) { + state_tasks.dispose(); + getMessagesController().didAddedNewTask(minDeleteTime, null); + } if (state_polls != null) { state_polls.dispose(); } diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/MusicPlayerService.java b/TMessagesProj/src/main/java/org/telegram/messenger/MusicPlayerService.java index 4db885cc3..76dbf72ec 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/MusicPlayerService.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/MusicPlayerService.java @@ -30,11 +30,12 @@ import android.media.session.MediaSession; import android.media.session.PlaybackState; import android.os.Build; import android.os.IBinder; -import androidx.core.app.NotificationCompat; import android.text.TextUtils; import android.view.View; import android.widget.RemoteViews; +import androidx.core.app.NotificationCompat; + import com.google.android.exoplayer2.C; import org.telegram.messenger.audioinfo.AudioInfo; @@ -299,6 +300,7 @@ public class MusicPlayerService extends Service implements NotificationCenter.No MediaMetadata.Builder meta = new MediaMetadata.Builder() .putBitmap(MediaMetadata.METADATA_KEY_ALBUM_ART, fullAlbumArt) .putString(MediaMetadata.METADATA_KEY_ALBUM_ARTIST, authorName) + .putString(MediaMetadata.METADATA_KEY_ARTIST, authorName) .putLong(MediaMetadata.METADATA_KEY_DURATION, duration) .putString(MediaMetadata.METADATA_KEY_TITLE, songName) .putString(MediaMetadata.METADATA_KEY_ALBUM, audioInfo != null ? audioInfo.getAlbum() : null); diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/NotificationCenter.java b/TMessagesProj/src/main/java/org/telegram/messenger/NotificationCenter.java index 1737ea8c4..1d23a9168 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/NotificationCenter.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/NotificationCenter.java @@ -8,11 +8,11 @@ package org.telegram.messenger; -import androidx.annotation.UiThread; - import android.os.SystemClock; import android.util.SparseArray; +import androidx.annotation.UiThread; + import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; @@ -214,6 +214,7 @@ public class NotificationCenter { public static final int voipServiceCreated = totalEvents++; public static final int webRtcMicAmplitudeEvent = totalEvents++; public static final int webRtcSpeakerAmplitudeEvent = totalEvents++; + public static final int showBulletin = totalEvents++; // custom diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/NotificationsController.java b/TMessagesProj/src/main/java/org/telegram/messenger/NotificationsController.java index e9ab929fe..117db41d6 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/NotificationsController.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/NotificationsController.java @@ -3483,7 +3483,8 @@ public class NotificationsController extends BaseController { Intent intent = new Intent(ApplicationLoader.applicationContext, LaunchActivity.class); intent.setAction("com.tmessages.openchat" + Math.random() + Integer.MAX_VALUE); - intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK); + intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); + //intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK); if ((int) dialog_id != 0) { if (pushDialogs.size() == 1) { if (chat_id != 0) { @@ -4197,7 +4198,7 @@ public class NotificationsController extends BaseController { Intent intent = new Intent(ApplicationLoader.applicationContext, LaunchActivity.class); intent.setAction("com.tmessages.openchat" + Math.random() + Integer.MAX_VALUE); - intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK); + intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); intent.addCategory(Intent.CATEGORY_LAUNCHER); if (lowerId != 0) { if (lowerId > 0) { diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/SendMessagesHelper.java b/TMessagesProj/src/main/java/org/telegram/messenger/SendMessagesHelper.java index 679aa79bb..6b801e946 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/SendMessagesHelper.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/SendMessagesHelper.java @@ -57,6 +57,7 @@ import org.telegram.ui.Cells.ChatMessageCell; import org.telegram.ui.ChatActivity; import org.telegram.ui.Components.AlertsCreator; import org.telegram.ui.Components.AnimatedFileDrawable; +import org.telegram.ui.Components.Bulletin; import org.telegram.ui.Components.LayoutHelper; import org.telegram.ui.Components.Point; import org.telegram.ui.TwoStepVerificationActivity; @@ -413,9 +414,6 @@ public class SendMessagesHelper extends BaseController implements NotificationCe AndroidUtilities.cancelRunOnUIThread(locationQueryCancelRunnable); } locationQueryCancelRunnable = () -> { - if (locationQueryCancelRunnable != this) { - return; - } if (delegate != null) { if (lastKnownLocation != null) { delegate.onLocationAcquired(lastKnownLocation); @@ -1824,6 +1822,10 @@ public boolean retriedToSend; final ArrayList sentMessages = new ArrayList<>(); sentMessages.add(message); msgObj1.messageOwner.post_author = message.post_author; + if ((message.flags & 33554432) != 0) { + msgObj1.messageOwner.ttl_period = message.ttl_period; + msgObj1.messageOwner.flags |= 33554432; + } updateMediaPaths(msgObj1, message, message.id, null, true); int existFlags = msgObj1.getMediaExistanceFlags(); newMsgObj1.id = message.id; @@ -4785,6 +4787,10 @@ public boolean retriedToSend; if (message != null) { MessageObject.getDialogId(message); sentMessages.add(message); + if ((message.flags & 33554432) != 0) { + msgObj.messageOwner.ttl_period = message.ttl_period; + msgObj.messageOwner.flags |= 33554432; + } updateMediaPaths(msgObj, message, message.id, originalPath, false); existFlags = msgObj.getMediaExistanceFlags(); newMsgObj.id = message.id; @@ -4983,6 +4989,10 @@ public boolean retriedToSend; newMsgObj.date = res.date; newMsgObj.entities = res.entities; newMsgObj.out = res.out; + if ((res.flags & 33554432) != 0) { + newMsgObj.ttl_period = res.ttl_period; + newMsgObj.flags |= 33554432; + } if (res.media != null) { newMsgObj.media = res.media; newMsgObj.flags |= TLRPC.MESSAGE_FLAG_HAS_MEDIA; @@ -5074,6 +5084,10 @@ public boolean retriedToSend; message.unread = value < message.id; } msgObj.messageOwner.post_author = message.post_author; + if ((message.flags & 33554432) != 0) { + msgObj.messageOwner.ttl_period = message.ttl_period; + msgObj.messageOwner.flags |= 33554432; + } updateMediaPaths(msgObj, message, message.id, originalPath, false); existFlags = msgObj.getMediaExistanceFlags(); newMsgObj.id = message.id; @@ -5569,7 +5583,7 @@ public boolean retriedToSend; MimeTypeMap myMime = MimeTypeMap.getSingleton(); TLRPC.TL_documentAttributeAudio attributeAudio = null; String extension = null; - if (uri != null) { + if (uri != null && path == null) { boolean hasExt = false; if (mime != null) { extension = myMime.getExtensionFromMimeType(mime); @@ -6015,8 +6029,7 @@ public boolean retriedToSend; if (error) { AndroidUtilities.runOnUIThread(() -> { try { - Toast toast = Toast.makeText(ApplicationLoader.applicationContext, LocaleController.getString("UnsupportedAttachment", R.string.UnsupportedAttachment), Toast.LENGTH_SHORT); - toast.show(); + NotificationCenter.getGlobalInstance().postNotificationName(NotificationCenter.showBulletin, Bulletin.TYPE_ERROR, LocaleController.getString("UnsupportedAttachment", R.string.UnsupportedAttachment)); } catch (Exception e) { FileLog.e(e); } diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/ShortcutWidgetProvider.java b/TMessagesProj/src/main/java/org/telegram/messenger/ShortcutWidgetProvider.java deleted file mode 100644 index 5d1d69d5d..000000000 --- a/TMessagesProj/src/main/java/org/telegram/messenger/ShortcutWidgetProvider.java +++ /dev/null @@ -1,62 +0,0 @@ -package org.telegram.messenger; - -import android.app.Activity; -import android.app.PendingIntent; -import android.appwidget.AppWidgetManager; -import android.appwidget.AppWidgetProvider; -import android.content.Context; -import android.content.Intent; -import android.content.SharedPreferences; -import android.net.Uri; -import android.widget.RemoteViews; - -import org.telegram.ui.LaunchActivity; - -public class ShortcutWidgetProvider extends AppWidgetProvider { - - @Override - public void onReceive(Context context, Intent intent) { - super.onReceive(context, intent); - } - - @Override - public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) { - super.onUpdate(context, appWidgetManager, appWidgetIds); - for (int i = 0; i < appWidgetIds.length; i++) { - int appWidgetId = appWidgetIds[i]; - updateWidget(context, appWidgetManager, appWidgetId); - } - } - - @Override - public void onDeleted(Context context, int[] appWidgetIds) { - super.onDeleted(context, appWidgetIds); - for (int a = 0; a < appWidgetIds.length; a++) { - SharedPreferences preferences = context.getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE); - int accountId = preferences.getInt("account" + appWidgetIds[a], -1); - if (accountId >= 0) { - AccountInstance accountInstance = AccountInstance.getInstance(accountId); - accountInstance.getMessagesStorage().clearWidgetDialogs(appWidgetIds[a]); - } - } - } - - public static void updateWidget(Context context, AppWidgetManager appWidgetManager, int appWidgetId) { - Intent intent2 = new Intent(context, ShortcutWidgetService.class); - intent2.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId); - intent2.setData(Uri.parse(intent2.toUri(Intent.URI_INTENT_SCHEME))); - RemoteViews rv = new RemoteViews(context.getPackageName(), R.layout.shortcut_widget_layout); - rv.setRemoteAdapter(appWidgetId, R.id.list_view, intent2); - rv.setEmptyView(R.id.list_view, R.id.empty_view); - - Intent intent = new Intent(ApplicationLoader.applicationContext, LaunchActivity.class); - intent.setAction("com.tmessages.openchat" + Math.random() + Integer.MAX_VALUE); - intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK); - intent.addCategory(Intent.CATEGORY_LAUNCHER); - PendingIntent contentIntent = PendingIntent.getActivity(ApplicationLoader.applicationContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT); - - rv.setPendingIntentTemplate(R.id.list_view, contentIntent); - - appWidgetManager.updateAppWidget(appWidgetId, rv); - } -} diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/browser/Browser.java b/TMessagesProj/src/main/java/org/telegram/messenger/browser/Browser.java index 5f1a83cc3..7477ffcad 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/browser/Browser.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/browser/Browser.java @@ -26,6 +26,7 @@ import androidx.browser.customtabs.CustomTabsIntent; import androidx.browser.customtabs.CustomTabsServiceConnection; import androidx.browser.customtabs.CustomTabsSession; +import org.telegram.messenger.AccountInstance; import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.ApplicationLoader; import org.telegram.messenger.BuildVars; @@ -47,6 +48,7 @@ import org.telegram.ui.ActionBar.Theme; import org.telegram.ui.LaunchActivity; import java.lang.ref.WeakReference; +import java.net.URLEncoder; import java.util.List; public class Browser { @@ -239,6 +241,24 @@ public class Browser { FileLog.e(e); } } + String host = uri.getHost() != null ? uri.getHost().toLowerCase() : ""; + if (AccountInstance.getInstance(currentAccount).getMessagesController().autologinDomains.contains(host)) { + String token = "autologin_token=" + URLEncoder.encode(AccountInstance.getInstance(UserConfig.selectedAccount).getMessagesController().autologinToken, "UTF-8"); + String url = uri.toString(); + int idx = url.indexOf("://"); + String path = idx >= 0 ? url.substring(idx + 3) : url; + String[] args = path.split("#"); + String finalPath = args[0]; + if (finalPath.indexOf('?') >= 0) { + finalPath += "&" + token; + } else { + finalPath += "?" + token; + } + if (args.length > 1) { + finalPath += args[1]; + } + uri = Uri.parse("https://" + finalPath); + } if (allowCustom && SharedConfig.customTabs && !internalUri && !scheme.equals("tel")) { String[] browserPackageNames = null; try { diff --git a/TMessagesProj/src/main/java/org/telegram/messenger/voip/VoIPBaseService.java b/TMessagesProj/src/main/java/org/telegram/messenger/voip/VoIPBaseService.java index daa470762..85057da89 100644 --- a/TMessagesProj/src/main/java/org/telegram/messenger/voip/VoIPBaseService.java +++ b/TMessagesProj/src/main/java/org/telegram/messenger/voip/VoIPBaseService.java @@ -143,26 +143,26 @@ public abstract class VoIPBaseService extends Service implements SensorEventList protected TLRPC.Chat chat; - protected boolean isVideoAvailable; - protected boolean notificationsDisabled; - protected boolean switchingCamera; - protected boolean isFrontFaceCamera = true; - protected String lastError; - protected PowerManager.WakeLock proximityWakelock; - protected PowerManager.WakeLock cpuWakelock; - protected boolean isProximityNear; - protected boolean isHeadsetPlugged; - protected int previousAudioOutput; - protected ArrayList stateListeners = new ArrayList<>(); - protected MediaPlayer ringtonePlayer; - protected Vibrator vibrator; - protected SoundPool soundPool; - protected int spRingbackID; - protected int spFailedID; - protected int spEndId; - protected int spVoiceChatEndId; - protected int spVoiceChatStartId; - protected int spVoiceChatConnecting; + protected boolean isVideoAvailable; + protected boolean notificationsDisabled; + protected boolean switchingCamera; + protected boolean isFrontFaceCamera = true; + protected String lastError; + protected PowerManager.WakeLock proximityWakelock; + protected PowerManager.WakeLock cpuWakelock; + protected boolean isProximityNear; + protected boolean isHeadsetPlugged; + protected int previousAudioOutput = -1; + protected ArrayList stateListeners = new ArrayList<>(); + protected MediaPlayer ringtonePlayer; + protected Vibrator vibrator; + protected SoundPool soundPool; + protected int spRingbackID; + protected int spFailedID; + protected int spEndId; + protected int spVoiceChatEndId; + protected int spVoiceChatStartId; + protected int spVoiceChatConnecting; protected int spBusyId; protected int spConnectingId; protected int spPlayID; diff --git a/TMessagesProj/src/main/java/org/telegram/tgnet/TLRPC.java b/TMessagesProj/src/main/java/org/telegram/tgnet/TLRPC.java index a8c27bd60..880f70a8a 100644 --- a/TMessagesProj/src/main/java/org/telegram/tgnet/TLRPC.java +++ b/TMessagesProj/src/main/java/org/telegram/tgnet/TLRPC.java @@ -10,8 +10,6 @@ package org.telegram.tgnet; import android.text.TextUtils; -import org.telegram.messenger.FileLoader; -import org.telegram.messenger.FileLog; import org.osmdroid.util.TileSystemWebMercator; import org.telegram.messenger.Utilities; @@ -63,7 +61,7 @@ public class TLRPC { public static final int MESSAGE_FLAG_HAS_BOT_ID = 0x00000800; public static final int MESSAGE_FLAG_EDITED = 0x00008000; - public static final int LAYER = 123; + public static final int LAYER = 124; public static class TL_stats_megagroupStats extends TLObject { public static int constructor = 0xef7ff916; @@ -3323,6 +3321,7 @@ public class TLRPC { public boolean add_admins; public boolean anonymous; public boolean manage_call; + public boolean other; public static TL_chatAdminRights TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { if (TL_chatAdminRights.constructor != constructor) { @@ -3349,6 +3348,7 @@ public class TLRPC { add_admins = (flags & 512) != 0; anonymous = (flags & 1024) != 0; manage_call = (flags & 2048) != 0; + other = (flags & 4096) != 0; } public void serializeToStream(AbstractSerializedData stream) { @@ -3362,7 +3362,8 @@ public class TLRPC { flags = pin_messages ? (flags | 128) : (flags &~ 128); flags = add_admins ? (flags | 512) : (flags &~ 512); flags = anonymous ? (flags | 1024) : (flags &~ 1024); - flags = manage_call ? (flags | 2048) : (flags &~ 2048); + flags = manage_call ? (flags | 2048) : (flags & ~2048); + flags = other ? (flags | 4096) : (flags & ~4096); stream.writeInt32(flags); } } @@ -9121,24 +9122,72 @@ public class TLRPC { } } - public static class TL_messages_exportedChatInvite extends TLObject { - public static int constructor = 0x1871be50; + public static abstract class messages_ExportedChatInvite extends TLObject { public ExportedChatInvite invite; public ArrayList users = new ArrayList<>(); - public static TL_messages_exportedChatInvite TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { - if (TL_messages_exportedChatInvite.constructor != constructor) { - if (exception) { - throw new RuntimeException(String.format("can't parse magic %x in TL_messages_exportedChatInvite", constructor)); - } else { - return null; - } + public static messages_ExportedChatInvite TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { + messages_ExportedChatInvite result = null; + switch (constructor) { + case 0x222600ef: + result = new TL_messages_exportedChatInviteReplaced(); + break; + case 0x1871be50: + result = new TL_messages_exportedChatInvite(); + break; + } + if (result == null && exception) { + throw new RuntimeException(String.format("can't parse magic %x in messages_ExportedChatInvite", constructor)); + } + if (result != null) { + result.readParams(stream, exception); } - TL_messages_exportedChatInvite result = new TL_messages_exportedChatInvite(); - result.readParams(stream, exception); return result; } + } + + public static class TL_messages_exportedChatInviteReplaced extends messages_ExportedChatInvite { + public static int constructor = 0x222600ef; + + public ExportedChatInvite new_invite; + + public void readParams(AbstractSerializedData stream, boolean exception) { + invite = ExportedChatInvite.TLdeserialize(stream, stream.readInt32(exception), exception); + new_invite = ExportedChatInvite.TLdeserialize(stream, stream.readInt32(exception), exception); + int magic = stream.readInt32(exception); + if (magic != 0x1cb5c415) { + if (exception) { + throw new RuntimeException(String.format("wrong Vector magic, got %x", magic)); + } + return; + } + int count = stream.readInt32(exception); + for (int a = 0; a < count; a++) { + User object = User.TLdeserialize(stream, stream.readInt32(exception), exception); + if (object == null) { + return; + } + users.add(object); + } + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + invite.serializeToStream(stream); + new_invite.serializeToStream(stream); + stream.writeInt32(0x1cb5c415); + int count = users.size(); + stream.writeInt32(count); + for (int a = 0; a < count; a++) { + users.get(a).serializeToStream(stream); + } + } + } + + public static class TL_messages_exportedChatInvite extends messages_ExportedChatInvite { + public static int constructor = 0x1871be50; + public void readParams(AbstractSerializedData stream, boolean exception) { invite = ExportedChatInvite.TLdeserialize(stream, stream.readInt32(exception), exception); @@ -9401,7 +9450,9 @@ public class TLRPC { public int stats_dc; public int pts; public TL_inputGroupCall call; - public int inviterId; + public int ttl_period; + public ArrayList pending_suggestions = new ArrayList<>(); + public int inviterId; //custom public int invitesCount; //custom public static ChatFull TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { @@ -9450,9 +9501,15 @@ public class TLRPC { result = new TL_chatFull_layer122(); break; case 0xf3474af6: - result = new TL_chatFull(); + result = new TL_chatFull_layer123(); break; case 0x7a7de4f7: + result = new TL_channelFull_layer123(); + break; + case 0xf06c4018: + result = new TL_chatFull(); + break; + case 0x2548c037: result = new TL_channelFull(); break; case 0x1b7c9db3: @@ -9645,6 +9702,295 @@ public class TLRPC { } public static class TL_chatFull extends ChatFull { + public static int constructor = 0xf06c4018; + + + public void readParams(AbstractSerializedData stream, boolean exception) { + flags = stream.readInt32(exception); + can_set_username = (flags & 128) != 0; + has_scheduled = (flags & 256) != 0; + id = stream.readInt32(exception); + about = stream.readString(exception); + participants = ChatParticipants.TLdeserialize(stream, stream.readInt32(exception), exception); + if ((flags & 4) != 0) { + chat_photo = Photo.TLdeserialize(stream, stream.readInt32(exception), exception); + } + notify_settings = PeerNotifySettings.TLdeserialize(stream, stream.readInt32(exception), exception); + if ((flags & 8192) != 0) { + exported_invite = (TL_chatInviteExported) ExportedChatInvite.TLdeserialize(stream, stream.readInt32(exception), exception); + } + if ((flags & 8) != 0) { + int magic = stream.readInt32(exception); + if (magic != 0x1cb5c415) { + if (exception) { + throw new RuntimeException(String.format("wrong Vector magic, got %x", magic)); + } + return; + } + int count = stream.readInt32(exception); + for (int a = 0; a < count; a++) { + BotInfo object = BotInfo.TLdeserialize(stream, stream.readInt32(exception), exception); + if (object == null) { + return; + } + bot_info.add(object); + } + } + if ((flags & 64) != 0) { + pinned_msg_id = stream.readInt32(exception); + } + if ((flags & 2048) != 0) { + folder_id = stream.readInt32(exception); + } + if ((flags & 4096) != 0) { + call = TL_inputGroupCall.TLdeserialize(stream, stream.readInt32(exception), exception); + } + if ((flags & 16384) != 0) { + ttl_period = stream.readInt32(exception); + } + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + flags = can_set_username ? (flags | 128) : (flags &~ 128); + flags = has_scheduled ? (flags | 256) : (flags &~ 256); + stream.writeInt32(flags); + stream.writeInt32(id); + stream.writeString(about); + participants.serializeToStream(stream); + if ((flags & 4) != 0) { + chat_photo.serializeToStream(stream); + } + notify_settings.serializeToStream(stream); + if ((flags & 8192) != 0) { + exported_invite.serializeToStream(stream); + } + if ((flags & 8) != 0) { + stream.writeInt32(0x1cb5c415); + int count = bot_info.size(); + stream.writeInt32(count); + for (int a = 0; a < count; a++) { + bot_info.get(a).serializeToStream(stream); + } + } + if ((flags & 64) != 0) { + stream.writeInt32(pinned_msg_id); + } + if ((flags & 2048) != 0) { + stream.writeInt32(folder_id); + } + if ((flags & 4096) != 0) { + call.serializeToStream(stream); + } + if ((flags & 16384) != 0) { + stream.writeInt32(ttl_period); + } + } + } + + public static class TL_channelFull extends ChatFull { + public static int constructor = 0x2548c037; + + + public void readParams(AbstractSerializedData stream, boolean exception) { + flags = stream.readInt32(exception); + can_view_participants = (flags & 8) != 0; + can_set_username = (flags & 64) != 0; + can_set_stickers = (flags & 128) != 0; + hidden_prehistory = (flags & 1024) != 0; + can_set_location = (flags & 65536) != 0; + has_scheduled = (flags & 524288) != 0; + can_view_stats = (flags & 1048576) != 0; + blocked = (flags & 4194304) != 0; + id = stream.readInt32(exception); + about = stream.readString(exception); + if ((flags & 1) != 0) { + participants_count = stream.readInt32(exception); + } + if ((flags & 2) != 0) { + admins_count = stream.readInt32(exception); + } + if ((flags & 4) != 0) { + kicked_count = stream.readInt32(exception); + } + if ((flags & 4) != 0) { + banned_count = stream.readInt32(exception); + } + if ((flags & 8192) != 0) { + online_count = stream.readInt32(exception); + } + read_inbox_max_id = stream.readInt32(exception); + read_outbox_max_id = stream.readInt32(exception); + unread_count = stream.readInt32(exception); + chat_photo = Photo.TLdeserialize(stream, stream.readInt32(exception), exception); + notify_settings = PeerNotifySettings.TLdeserialize(stream, stream.readInt32(exception), exception); + if ((flags & 8388608) != 0) { + exported_invite = (TL_chatInviteExported) ExportedChatInvite.TLdeserialize(stream, stream.readInt32(exception), exception); + } + int magic = stream.readInt32(exception); + if (magic != 0x1cb5c415) { + if (exception) { + throw new RuntimeException(String.format("wrong Vector magic, got %x", magic)); + } + return; + } + int count = stream.readInt32(exception); + for (int a = 0; a < count; a++) { + BotInfo object = BotInfo.TLdeserialize(stream, stream.readInt32(exception), exception); + if (object == null) { + return; + } + bot_info.add(object); + } + if ((flags & 16) != 0) { + migrated_from_chat_id = stream.readInt32(exception); + } + if ((flags & 16) != 0) { + migrated_from_max_id = stream.readInt32(exception); + } + if ((flags & 32) != 0) { + pinned_msg_id = stream.readInt32(exception); + } + if ((flags & 256) != 0) { + stickerset = StickerSet.TLdeserialize(stream, stream.readInt32(exception), exception); + } + if ((flags & 512) != 0) { + available_min_id = stream.readInt32(exception); + } + if ((flags & 2048) != 0) { + folder_id = stream.readInt32(exception); + } + if ((flags & 16384) != 0) { + linked_chat_id = stream.readInt32(exception); + } + if ((flags & 32768) != 0) { + location = ChannelLocation.TLdeserialize(stream, stream.readInt32(exception), exception); + } + if ((flags & 131072) != 0) { + slowmode_seconds = stream.readInt32(exception); + } + if ((flags & 262144) != 0) { + slowmode_next_send_date = stream.readInt32(exception); + } + if ((flags & 4096) != 0) { + stats_dc = stream.readInt32(exception); + } + pts = stream.readInt32(exception); + if ((flags & 2097152) != 0) { + call = TL_inputGroupCall.TLdeserialize(stream, stream.readInt32(exception), exception); + } + if ((flags & 16777216) != 0) { + ttl_period = stream.readInt32(exception); + } + if ((flags & 33554432) != 0) { + magic = stream.readInt32(exception); + if (magic != 0x1cb5c415) { + if (exception) { + throw new RuntimeException(String.format("wrong Vector magic, got %x", magic)); + } + return; + } + count = stream.readInt32(exception); + for (int a = 0; a < count; a++) { + pending_suggestions.add(stream.readString(exception)); + } + } + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + flags = can_view_participants ? (flags | 8) : (flags & ~8); + flags = can_set_username ? (flags | 64) : (flags & ~64); + flags = can_set_stickers ? (flags | 128) : (flags & ~128); + flags = hidden_prehistory ? (flags | 1024) : (flags & ~1024); + flags = can_set_location ? (flags | 65536) : (flags & ~65536); + flags = has_scheduled ? (flags | 524288) : (flags & ~524288); + flags = can_view_stats ? (flags | 1048576) : (flags & ~1048576); + flags = blocked ? (flags | 4194304) : (flags & ~4194304); + stream.writeInt32(flags); + stream.writeInt32(id); + stream.writeString(about); + if ((flags & 1) != 0) { + stream.writeInt32(participants_count); + } + if ((flags & 2) != 0) { + stream.writeInt32(admins_count); + } + if ((flags & 4) != 0) { + stream.writeInt32(kicked_count); + } + if ((flags & 4) != 0) { + stream.writeInt32(banned_count); + } + if ((flags & 8192) != 0) { + stream.writeInt32(online_count); + } + stream.writeInt32(read_inbox_max_id); + stream.writeInt32(read_outbox_max_id); + stream.writeInt32(unread_count); + chat_photo.serializeToStream(stream); + notify_settings.serializeToStream(stream); + if ((flags & 8388608) != 0) { + exported_invite.serializeToStream(stream); + } + stream.writeInt32(0x1cb5c415); + int count = bot_info.size(); + stream.writeInt32(count); + for (int a = 0; a < count; a++) { + bot_info.get(a).serializeToStream(stream); + } + if ((flags & 16) != 0) { + stream.writeInt32(migrated_from_chat_id); + } + if ((flags & 16) != 0) { + stream.writeInt32(migrated_from_max_id); + } + if ((flags & 32) != 0) { + stream.writeInt32(pinned_msg_id); + } + if ((flags & 256) != 0) { + stickerset.serializeToStream(stream); + } + if ((flags & 512) != 0) { + stream.writeInt32(available_min_id); + } + if ((flags & 2048) != 0) { + stream.writeInt32(folder_id); + } + if ((flags & 16384) != 0) { + stream.writeInt32(linked_chat_id); + } + if ((flags & 32768) != 0) { + location.serializeToStream(stream); + } + if ((flags & 131072) != 0) { + stream.writeInt32(slowmode_seconds); + } + if ((flags & 262144) != 0) { + stream.writeInt32(slowmode_next_send_date); + } + if ((flags & 4096) != 0) { + stream.writeInt32(stats_dc); + } + stream.writeInt32(pts); + if ((flags & 2097152) != 0) { + call.serializeToStream(stream); + } + if ((flags & 16777216) != 0) { + stream.writeInt32(ttl_period); + } + if ((flags & 33554432) != 0) { + stream.writeInt32(0x1cb5c415); + count = pending_suggestions.size(); + stream.writeInt32(count); + for (int a = 0; a < count; a++) { + stream.writeString(pending_suggestions.get(a)); + } + } + } + } + + public static class TL_chatFull_layer123 extends TL_chatFull { public static int constructor = 0xf3474af6; @@ -9692,8 +10038,8 @@ public class TLRPC { public void serializeToStream(AbstractSerializedData stream) { stream.writeInt32(constructor); - flags = can_set_username ? (flags | 128) : (flags &~ 128); - flags = has_scheduled ? (flags | 256) : (flags &~ 256); + flags = can_set_username ? (flags | 128) : (flags & ~128); + flags = has_scheduled ? (flags | 256) : (flags & ~256); stream.writeInt32(flags); stream.writeInt32(id); stream.writeString(about); @@ -9725,7 +10071,7 @@ public class TLRPC { } } - public static class TL_channelFull extends ChatFull { + public static class TL_channelFull_layer123 extends TL_channelFull { public static int constructor = 0x7a7de4f7; @@ -15639,15 +15985,84 @@ public class TLRPC { public int expires; - public void readParams(AbstractSerializedData stream, boolean exception) { - expires = stream.readInt32(exception); - } + public void readParams(AbstractSerializedData stream, boolean exception) { + expires = stream.readInt32(exception); + } - public void serializeToStream(AbstractSerializedData stream) { - stream.writeInt32(constructor); - stream.writeInt32(expires); - } - } + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + stream.writeInt32(expires); + } + } + + public static class TL_messages_chatAdminsWithInvites extends TLObject { + public static int constructor = 0xb69b72d7; + + public ArrayList admins = new ArrayList<>(); + public ArrayList users = new ArrayList<>(); + + public static TL_messages_chatAdminsWithInvites TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { + if (TL_messages_chatAdminsWithInvites.constructor != constructor) { + if (exception) { + throw new RuntimeException(String.format("can't parse magic %x in TL_messages_chatAdminsWithInvites", constructor)); + } else { + return null; + } + } + TL_messages_chatAdminsWithInvites result = new TL_messages_chatAdminsWithInvites(); + result.readParams(stream, exception); + return result; + } + + public void readParams(AbstractSerializedData stream, boolean exception) { + int magic = stream.readInt32(exception); + if (magic != 0x1cb5c415) { + if (exception) { + throw new RuntimeException(String.format("wrong Vector magic, got %x", magic)); + } + return; + } + int count = stream.readInt32(exception); + for (int a = 0; a < count; a++) { + TL_chatAdminWithInvites object = TL_chatAdminWithInvites.TLdeserialize(stream, stream.readInt32(exception), exception); + if (object == null) { + return; + } + admins.add(object); + } + magic = stream.readInt32(exception); + if (magic != 0x1cb5c415) { + if (exception) { + throw new RuntimeException(String.format("wrong Vector magic, got %x", magic)); + } + return; + } + count = stream.readInt32(exception); + for (int a = 0; a < count; a++) { + User object = User.TLdeserialize(stream, stream.readInt32(exception), exception); + if (object == null) { + return; + } + users.add(object); + } + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + stream.writeInt32(0x1cb5c415); + int count = admins.size(); + stream.writeInt32(count); + for (int a = 0; a < count; a++) { + admins.get(a).serializeToStream(stream); + } + stream.writeInt32(0x1cb5c415); + count = users.size(); + stream.writeInt32(count); + for (int a = 0; a < count; a++) { + users.get(a).serializeToStream(stream); + } + } + } public static class TL_phone_groupCall extends TLObject { public static int constructor = 0x66ab0bfc; @@ -17418,26 +17833,29 @@ public class TLRPC { break; case 0x55555550: result = new TL_messageActionUserJoined(); - break; - case 0x55555551: - result = new TL_messageActionUserUpdatedPhoto(); - break; - case 0x5e3cfc4b: - result = new TL_messageActionChatAddUser_old(); - break; - case 0x55555552: - result = new TL_messageActionTTLChange(); - break; + break; + case 0x55555551: + result = new TL_messageActionUserUpdatedPhoto(); + break; + case 0x5e3cfc4b: + result = new TL_messageActionChatAddUser_old(); + break; + case 0x55555552: + result = new TL_messageActionTTLChange(); + break; + case 0xaa1afbfd: + result = new TL_messageActionSetMessagesTTL(); + break; case 0xd95c6154: result = new TL_messageActionSecureValuesSent(); break; - case 0xf89cf5e8: - result = new TL_messageActionChatJoinedByLink(); - break; + case 0xf89cf5e8: + result = new TL_messageActionChatJoinedByLink(); + break; case 0xf3f25f76: result = new TL_messageActionContactSignUp(); break; - case 0x95d2ac92: + case 0x95d2ac92: result = new TL_messageActionChannelCreate(); break; case 0x94bd38ed: @@ -17773,25 +18191,40 @@ public class TLRPC { public static int constructor = 0x55555552; - public void readParams(AbstractSerializedData stream, boolean exception) { - ttl = stream.readInt32(exception); - } + public void readParams(AbstractSerializedData stream, boolean exception) { + ttl = stream.readInt32(exception); + } - public void serializeToStream(AbstractSerializedData stream) { - stream.writeInt32(constructor); - stream.writeInt32(ttl); - } - } + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + stream.writeInt32(ttl); + } + } - public static class TL_messageActionChatJoinedByLink extends MessageAction { - public static int constructor = 0xf89cf5e8; + public static class TL_messageActionSetMessagesTTL extends MessageAction { + public static int constructor = 0xaa1afbfd; + + public int period; + + public void readParams(AbstractSerializedData stream, boolean exception) { + period = stream.readInt32(exception); + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + stream.writeInt32(period); + } + } + + public static class TL_messageActionChatJoinedByLink extends MessageAction { + public static int constructor = 0xf89cf5e8; - public void readParams(AbstractSerializedData stream, boolean exception) { - inviter_id = stream.readInt32(exception); - } + public void readParams(AbstractSerializedData stream, boolean exception) { + inviter_id = stream.readInt32(exception); + } - public void serializeToStream(AbstractSerializedData stream) { + public void serializeToStream(AbstractSerializedData stream) { stream.writeInt32(constructor); stream.writeInt32(inviter_id); } @@ -17992,7 +18425,7 @@ public class TLRPC { case 0xdbd4feed: result = new TL_inputReportReasonGeoIrrelevant(); break; - case 0xe1746d0a: + case 0xc1e4a2b1: result = new TL_inputReportReasonOther(); break; case 0xf5ddd6e7: @@ -18034,17 +18467,11 @@ public class TLRPC { } public static class TL_inputReportReasonOther extends ReportReason { - public static int constructor = 0xe1746d0a; + public static int constructor = 0xc1e4a2b1; - public String text; - - public void readParams(AbstractSerializedData stream, boolean exception) { - text = stream.readString(exception); - } public void serializeToStream(AbstractSerializedData stream) { stream.writeInt32(constructor); - stream.writeString(text); } } @@ -22419,6 +22846,7 @@ public class TLRPC { public boolean edit; public boolean delete; public boolean group_call; + public boolean invites; public static TL_channelAdminLogEventsFilter TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { if (TL_channelAdminLogEventsFilter.constructor != constructor) { @@ -22450,6 +22878,7 @@ public class TLRPC { edit = (flags & 4096) != 0; delete = (flags & 8192) != 0; group_call = (flags & 16384) != 0; + invites = (flags & 32768) != 0; } public void serializeToStream(AbstractSerializedData stream) { @@ -22468,7 +22897,8 @@ public class TLRPC { flags = pinned ? (flags | 2048) : (flags &~ 2048); flags = edit ? (flags | 4096) : (flags &~ 4096); flags = delete ? (flags | 8192) : (flags &~ 8192); - flags = group_call ? (flags | 16384) : (flags &~ 16384); + flags = group_call ? (flags | 16384) : (flags & ~16384); + flags = invites ? (flags | 32768) : (flags & ~32768); stream.writeInt32(flags); } } @@ -22561,26 +22991,54 @@ public class TLRPC { stream.writeInt32(constructor); stream.writeInt32(expires); } - } + } - public static class TL_userStatusRecently extends UserStatus { - public static int constructor = 0xe26f42f1; + public static class TL_userStatusRecently extends UserStatus { + public static int constructor = 0xe26f42f1; - public void serializeToStream(AbstractSerializedData stream) { - stream.writeInt32(constructor); - } - } + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + } + } - public static class TL_messages_messageEditData extends TLObject { - public static int constructor = 0x26b5dde6; + public static class TL_messages_checkedHistoryImportPeer extends TLObject { + public static int constructor = 0xa24de717; - public int flags; - public boolean caption; + public String confirm_text; - public static TL_messages_messageEditData TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { - if (TL_messages_messageEditData.constructor != constructor) { - if (exception) { + public static TL_messages_checkedHistoryImportPeer TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { + if (TL_messages_checkedHistoryImportPeer.constructor != constructor) { + if (exception) { + throw new RuntimeException(String.format("can't parse magic %x in TL_messages_checkedHistoryImportPeer", constructor)); + } else { + return null; + } + } + TL_messages_checkedHistoryImportPeer result = new TL_messages_checkedHistoryImportPeer(); + result.readParams(stream, exception); + return result; + } + + public void readParams(AbstractSerializedData stream, boolean exception) { + confirm_text = stream.readString(exception); + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + stream.writeString(confirm_text); + } + } + + public static class TL_messages_messageEditData extends TLObject { + public static int constructor = 0x26b5dde6; + + public int flags; + public boolean caption; + + public static TL_messages_messageEditData TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { + if (TL_messages_messageEditData.constructor != constructor) { + if (exception) { throw new RuntimeException(String.format("can't parse magic %x in TL_messages_messageEditData", constructor)); } else { return null; @@ -22879,6 +23337,9 @@ public class TLRPC { case 0xaca1657b: result = new TL_updateMessagePoll(); break; + case 0xbb9bb9a5: + result = new TL_updatePeerHistoryTTL(); + break; case 0x1330a196: result = new TL_updateChat(); break; @@ -23794,6 +24255,31 @@ public class TLRPC { } } + public static class TL_updatePeerHistoryTTL extends Update { + public static int constructor = 0xbb9bb9a5; + + public int flags; + public Peer peer; + public int ttl_period; + + public void readParams(AbstractSerializedData stream, boolean exception) { + flags = stream.readInt32(exception); + peer = Peer.TLdeserialize(stream, stream.readInt32(exception), exception); + if ((flags & 1) != 0) { + ttl_period = stream.readInt32(exception); + } + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + stream.writeInt32(flags); + peer.serializeToStream(stream); + if ((flags & 1) != 0) { + stream.writeInt32(ttl_period); + } + } + } + public static class TL_updateChat extends Update { public static int constructor = 0x1330a196; @@ -25689,6 +26175,40 @@ public class TLRPC { } } + public static class TL_chatAdminWithInvites extends TLObject { + public static int constructor = 0xdfd2330f; + + public int admin_id; + public int invites_count; + public int revoked_invites_count; + + public static TL_chatAdminWithInvites TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { + if (TL_chatAdminWithInvites.constructor != constructor) { + if (exception) { + throw new RuntimeException(String.format("can't parse magic %x in TL_chatAdminWithInvites", constructor)); + } else { + return null; + } + } + TL_chatAdminWithInvites result = new TL_chatAdminWithInvites(); + result.readParams(stream, exception); + return result; + } + + public void readParams(AbstractSerializedData stream, boolean exception) { + admin_id = stream.readInt32(exception); + invites_count = stream.readInt32(exception); + revoked_invites_count = stream.readInt32(exception); + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + stream.writeInt32(admin_id); + stream.writeInt32(invites_count); + stream.writeInt32(revoked_invites_count); + } + } + public static abstract class UserProfilePhoto extends TLObject { public int flags; @@ -31198,11 +31718,11 @@ public class TLRPC { } } - public static abstract class ChannelAdminLogEventAction extends TLObject { + public static abstract class ChannelAdminLogEventAction extends TLObject { - public static ChannelAdminLogEventAction TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { - ChannelAdminLogEventAction result = null; - switch (constructor) { + public static ChannelAdminLogEventAction TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { + ChannelAdminLogEventAction result = null; + switch (constructor) { case 0xdb9f9140: result = new TL_channelAdminLogEventActionDiscardGroupCall(); break; @@ -31221,6 +31741,9 @@ public class TLRPC { case 0x709b2405: result = new TL_channelAdminLogEventActionEditMessage(); break; + case 0xe90ebb59: + result = new TL_channelAdminLogEventActionExportedInviteEdit(); + break; case 0x6a4afc38: result = new TL_channelAdminLogEventActionChangeUsername(); break; @@ -31236,12 +31759,24 @@ public class TLRPC { case 0x53909779: result = new TL_channelAdminLogEventActionToggleSlowMode(); break; + case 0x5cdada77: + result = new TL_channelAdminLogEventActionParticipantJoinByInvite(); + break; + case 0x410a134e: + result = new TL_channelAdminLogEventActionExportedInviteRevoke(); + break; case 0x8f079643: result = new TL_channelAdminLogEventActionStopPoll(); break; + case 0x5a50fca4: + result = new TL_channelAdminLogEventActionExportedInviteDelete(); + break; case 0x26ae0971: result = new TL_channelAdminLogEventActionToggleSignatures(); break; + case 0x3e7f6847: + result = new TL_channelAdminLogEventActionParticipantVolume(); + break; case 0xe6d83d7e: result = new TL_channelAdminLogEventActionParticipantToggleBan(); break; @@ -31281,16 +31816,19 @@ public class TLRPC { case 0xe6dfb825: result = new TL_channelAdminLogEventActionChangeTitle(); break; - } - if (result == null && exception) { - throw new RuntimeException(String.format("can't parse magic %x in ChannelAdminLogEventAction", constructor)); - } - if (result != null) { - result.readParams(stream, exception); - } - return result; - } - } + case 0x6e941a38: + result = new TL_channelAdminLogEventActionChangeHistoryTTL(); + break; + } + if (result == null && exception) { + throw new RuntimeException(String.format("can't parse magic %x in ChannelAdminLogEventAction", constructor)); + } + if (result != null) { + result.readParams(stream, exception); + } + return result; + } + } public static class TL_channelAdminLogEventActionDiscardGroupCall extends ChannelAdminLogEventAction { public static int constructor = 0xdb9f9140; @@ -31385,6 +31923,24 @@ public class TLRPC { } } + public static class TL_channelAdminLogEventActionExportedInviteEdit extends ChannelAdminLogEventAction { + public static int constructor = 0xe90ebb59; + + public TL_chatInviteExported prev_invite; + public TL_chatInviteExported new_invite; + + public void readParams(AbstractSerializedData stream, boolean exception) { + prev_invite = (TL_chatInviteExported) ExportedChatInvite.TLdeserialize(stream, stream.readInt32(exception), exception); + new_invite = (TL_chatInviteExported) ExportedChatInvite.TLdeserialize(stream, stream.readInt32(exception), exception); + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + prev_invite.serializeToStream(stream); + new_invite.serializeToStream(stream); + } + } + public static class TL_channelAdminLogEventActionChangeUsername extends ChannelAdminLogEventAction { public static int constructor = 0x6a4afc38; @@ -31475,6 +32031,36 @@ public class TLRPC { } } + public static class TL_channelAdminLogEventActionParticipantJoinByInvite extends ChannelAdminLogEventAction { + public static int constructor = 0x5cdada77; + + public TL_chatInviteExported invite; + + public void readParams(AbstractSerializedData stream, boolean exception) { + invite = (TL_chatInviteExported) ExportedChatInvite.TLdeserialize(stream, stream.readInt32(exception), exception); + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + invite.serializeToStream(stream); + } + } + + public static class TL_channelAdminLogEventActionExportedInviteRevoke extends ChannelAdminLogEventAction { + public static int constructor = 0x410a134e; + + public TL_chatInviteExported invite; + + public void readParams(AbstractSerializedData stream, boolean exception) { + invite = (TL_chatInviteExported) ExportedChatInvite.TLdeserialize(stream, stream.readInt32(exception), exception); + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + invite.serializeToStream(stream); + } + } + public static class TL_channelAdminLogEventActionStopPoll extends ChannelAdminLogEventAction { public static int constructor = 0x8f079643; @@ -31490,6 +32076,21 @@ public class TLRPC { } } + public static class TL_channelAdminLogEventActionExportedInviteDelete extends ChannelAdminLogEventAction { + public static int constructor = 0x5a50fca4; + + public TL_chatInviteExported invite; + + public void readParams(AbstractSerializedData stream, boolean exception) { + invite = (TL_chatInviteExported) ExportedChatInvite.TLdeserialize(stream, stream.readInt32(exception), exception); + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + invite.serializeToStream(stream); + } + } + public static class TL_channelAdminLogEventActionToggleSignatures extends ChannelAdminLogEventAction { public static int constructor = 0x26ae0971; @@ -31505,6 +32106,21 @@ public class TLRPC { } } + public static class TL_channelAdminLogEventActionParticipantVolume extends ChannelAdminLogEventAction { + public static int constructor = 0x3e7f6847; + + public TL_groupCallParticipant participant; + + public void readParams(AbstractSerializedData stream, boolean exception) { + participant = TL_groupCallParticipant.TLdeserialize(stream, stream.readInt32(exception), exception); + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + participant.serializeToStream(stream); + } + } + public static class TL_channelAdminLogEventActionParticipantToggleBan extends ChannelAdminLogEventAction { public static int constructor = 0xe6d83d7e; @@ -31706,15 +32322,33 @@ public class TLRPC { } } - public static abstract class InputWebFileLocation extends TLObject { + public static class TL_channelAdminLogEventActionChangeHistoryTTL extends ChannelAdminLogEventAction { + public static int constructor = 0x6e941a38; - public static InputWebFileLocation TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { - InputWebFileLocation result = null; - switch (constructor) { - case 0x9f2221c9: - result = new TL_inputWebFileGeoPointLocation(); - break; - case 0xc239d686: + public int prev_value; + public int new_value; + + public void readParams(AbstractSerializedData stream, boolean exception) { + prev_value = stream.readInt32(exception); + new_value = stream.readInt32(exception); + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + stream.writeInt32(prev_value); + stream.writeInt32(new_value); + } + } + + public static abstract class InputWebFileLocation extends TLObject { + + public static InputWebFileLocation TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { + InputWebFileLocation result = null; + switch (constructor) { + case 0x9f2221c9: + result = new TL_inputWebFileGeoPointLocation(); + break; + case 0xc239d686: result = new TL_inputWebFileLocation(); break; } @@ -32120,6 +32754,7 @@ public class TLRPC { public boolean call_active; public boolean call_not_empty; public boolean fake; + public boolean gigagroup; public ArrayList restriction_reason = new ArrayList<>(); public TL_channelAdminRights_layer92 admin_rights_layer92; public TL_channelBannedRights_layer92 banned_rights_layer92; @@ -32637,6 +33272,7 @@ public class TLRPC { call_active = (flags & 8388608) != 0; call_not_empty = (flags & 16777216) != 0; fake = (flags & 33554432) != 0; + gigagroup = (flags & 67108864) != 0; id = stream.readInt32(exception); if ((flags & 8192) != 0) { access_hash = stream.readInt64(exception); @@ -32695,7 +33331,8 @@ public class TLRPC { flags = slowmode_enabled ? (flags | 4194304) : (flags &~ 4194304); flags = call_active ? (flags | 8388608) : (flags &~ 8388608); flags = call_not_empty ? (flags | 16777216) : (flags &~ 16777216); - flags = fake ? (flags | 33554432) : (flags &~ 33554432); + flags = fake ? (flags | 33554432) : (flags & ~33554432); + flags = gigagroup ? (flags | 67108864) : (flags & ~67108864); stream.writeInt32(flags); stream.writeInt32(id); if ((flags & 8192) != 0) { @@ -35191,11 +35828,15 @@ public class TLRPC { public int pinned_msg_id; public int common_chats_count; public int folder_id; + public int ttl_period; public TL_peerSettings settings; public static UserFull TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { UserFull result = null; switch (constructor) { + case 0x139a9a77: + result = new TL_userFull(); + break; case 0x745559cc: result = new TL_userFull_layer101(); break; @@ -35203,7 +35844,7 @@ public class TLRPC { result = new TL_userFull_layer98(); break; case 0xedf17c12: - result = new TL_userFull(); + result = new TL_userFull_layer123(); break; } if (result == null && exception) { @@ -35331,6 +35972,76 @@ public class TLRPC { } public static class TL_userFull extends UserFull { + public static int constructor = 0x139a9a77; + + + public void readParams(AbstractSerializedData stream, boolean exception) { + flags = stream.readInt32(exception); + blocked = (flags & 1) != 0; + phone_calls_available = (flags & 16) != 0; + phone_calls_private = (flags & 32) != 0; + can_pin_message = (flags & 128) != 0; + has_scheduled = (flags & 4096) != 0; + video_calls_available = (flags & 8192) != 0; + user = User.TLdeserialize(stream, stream.readInt32(exception), exception); + if ((flags & 2) != 0) { + about = stream.readString(exception); + } + settings = TL_peerSettings.TLdeserialize(stream, stream.readInt32(exception), exception); + if ((flags & 4) != 0) { + profile_photo = Photo.TLdeserialize(stream, stream.readInt32(exception), exception); + } + notify_settings = PeerNotifySettings.TLdeserialize(stream, stream.readInt32(exception), exception); + if ((flags & 8) != 0) { + bot_info = BotInfo.TLdeserialize(stream, stream.readInt32(exception), exception); + } + if ((flags & 64) != 0) { + pinned_msg_id = stream.readInt32(exception); + } + common_chats_count = stream.readInt32(exception); + if ((flags & 2048) != 0) { + folder_id = stream.readInt32(exception); + } + if ((flags & 16384) != 0) { + ttl_period = stream.readInt32(exception); + } + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + flags = blocked ? (flags | 1) : (flags & ~1); + flags = phone_calls_available ? (flags | 16) : (flags & ~16); + flags = phone_calls_private ? (flags | 32) : (flags & ~32); + flags = can_pin_message ? (flags | 128) : (flags & ~128); + flags = has_scheduled ? (flags | 4096) : (flags & ~4096); + flags = video_calls_available ? (flags | 8192) : (flags & ~8192); + stream.writeInt32(flags); + user.serializeToStream(stream); + if ((flags & 2) != 0) { + stream.writeString(about); + } + settings.serializeToStream(stream); + if ((flags & 4) != 0) { + profile_photo.serializeToStream(stream); + } + notify_settings.serializeToStream(stream); + if ((flags & 8) != 0) { + bot_info.serializeToStream(stream); + } + if ((flags & 64) != 0) { + stream.writeInt32(pinned_msg_id); + } + stream.writeInt32(common_chats_count); + if ((flags & 2048) != 0) { + stream.writeInt32(folder_id); + } + if ((flags & 16384) != 0) { + stream.writeInt32(ttl_period); + } + } + } + + public static class TL_userFull_layer123 extends TL_userFull { public static int constructor = 0xedf17c12; @@ -35417,33 +36128,34 @@ public class TLRPC { public Update update; public int from_id; public int chat_id; - public int seq_start; + public int seq_start; + public int ttl_period; public static Updates TLdeserialize(AbstractSerializedData stream, int constructor, boolean exception) { Updates result = null; switch (constructor) { - case 0x74ae4240: - result = new TL_updates(); - break; - case 0x2296d2c8: + case 0x74ae4240: + result = new TL_updates(); + break; + case 0xfaeff833: result = new TL_updateShortMessage(); break; - case 0x11f1331c: - result = new TL_updateShortSentMessage(); - break; - case 0x78d4dec1: - result = new TL_updateShort(); - break; - case 0x402d5dbb: + case 0x9015e101: + result = new TL_updateShortSentMessage(); + break; + case 0x78d4dec1: + result = new TL_updateShort(); + break; + case 0x1157b858: result = new TL_updateShortChatMessage(); break; - case 0x725b04c3: - result = new TL_updatesCombined(); - break; - case 0xe317af7e: - result = new TL_updatesTooLong(); - break; - } + case 0x725b04c3: + result = new TL_updatesCombined(); + break; + case 0xe317af7e: + result = new TL_updatesTooLong(); + break; + } if (result == null && exception) { throw new RuntimeException(String.format("can't parse magic %x in Updates", constructor)); } @@ -35510,7 +36222,7 @@ public class TLRPC { } public static class TL_updateShortMessage extends Updates { - public static int constructor = 0x2296d2c8; + public static int constructor = 0xfaeff833; public void readParams(AbstractSerializedData stream, boolean exception) { @@ -35551,42 +36263,48 @@ public class TLRPC { entities.add(object); } } + if ((flags & 33554432) != 0) { + ttl_period = stream.readInt32(exception); + } } } - public static class TL_updateShortSentMessage extends Updates { - public static int constructor = 0x11f1331c; + public static class TL_updateShortSentMessage extends Updates { + public static int constructor = 0x9015e101; - public void readParams(AbstractSerializedData stream, boolean exception) { - flags = stream.readInt32(exception); - out = (flags & 2) != 0; - id = stream.readInt32(exception); - pts = stream.readInt32(exception); - pts_count = stream.readInt32(exception); - date = stream.readInt32(exception); - if ((flags & 512) != 0) { - media = MessageMedia.TLdeserialize(stream, stream.readInt32(exception), exception); - } - if ((flags & 128) != 0) { - int magic = stream.readInt32(exception); - if (magic != 0x1cb5c415) { - if (exception) { - throw new RuntimeException(String.format("wrong Vector magic, got %x", magic)); - } - return; - } - int count = stream.readInt32(exception); - for (int a = 0; a < count; a++) { - MessageEntity object = MessageEntity.TLdeserialize(stream, stream.readInt32(exception), exception); - if (object == null) { - return; - } - entities.add(object); - } - } - } - } + public void readParams(AbstractSerializedData stream, boolean exception) { + flags = stream.readInt32(exception); + out = (flags & 2) != 0; + id = stream.readInt32(exception); + pts = stream.readInt32(exception); + pts_count = stream.readInt32(exception); + date = stream.readInt32(exception); + if ((flags & 512) != 0) { + media = MessageMedia.TLdeserialize(stream, stream.readInt32(exception), exception); + } + if ((flags & 128) != 0) { + int magic = stream.readInt32(exception); + if (magic != 0x1cb5c415) { + if (exception) { + throw new RuntimeException(String.format("wrong Vector magic, got %x", magic)); + } + return; + } + int count = stream.readInt32(exception); + for (int a = 0; a < count; a++) { + MessageEntity object = MessageEntity.TLdeserialize(stream, stream.readInt32(exception), exception); + if (object == null) { + return; + } + entities.add(object); + } + } + if ((flags & 33554432) != 0) { + ttl_period = stream.readInt32(exception); + } + } + } public static class TL_updateShort extends Updates { public static int constructor = 0x78d4dec1; @@ -35599,7 +36317,7 @@ public class TLRPC { } public static class TL_updateShortChatMessage extends Updates { - public static int constructor = 0x402d5dbb; + public static int constructor = 0x1157b858; public void readParams(AbstractSerializedData stream, boolean exception) { @@ -35641,6 +36359,9 @@ public class TLRPC { entities.add(object); } } + if ((flags & 33554432) != 0) { + ttl_period = stream.readInt32(exception); + } } } @@ -36989,6 +37710,7 @@ public class TLRPC { public boolean versioned; public boolean min; public boolean muted_by_you; + public boolean volume_by_admin; public int user_id; public int date; public int active_date; @@ -37023,6 +37745,7 @@ public class TLRPC { versioned = (flags & 32) != 0; min = (flags & 256) != 0; muted_by_you = (flags & 512) != 0; + volume_by_admin = (flags & 1024) != 0; user_id = stream.readInt32(exception); date = stream.readInt32(exception); if ((flags & 8) != 0) { @@ -37042,7 +37765,8 @@ public class TLRPC { flags = just_joined ? (flags | 16) : (flags &~ 16); flags = versioned ? (flags | 32) : (flags &~ 32); flags = min ? (flags | 256) : (flags &~ 256); - flags = muted_by_you ? (flags | 512) : (flags &~ 512); + flags = muted_by_you ? (flags | 512) : (flags & ~512); + flags = volume_by_admin ? (flags | 1024) : (flags & ~1024); stream.writeInt32(flags); stream.writeInt32(user_id); stream.writeInt32(date); @@ -37947,32 +38671,34 @@ public class TLRPC { } public void serializeToStream(AbstractSerializedData stream) { - stream.writeInt32(constructor); - stream.writeInt32(0x1cb5c415); - int count = id.size(); - stream.writeInt32(count); - for (int a = 0; a < count; a++) { - id.get(a).serializeToStream(stream); - } - } - } + stream.writeInt32(constructor); + stream.writeInt32(0x1cb5c415); + int count = id.size(); + stream.writeInt32(count); + for (int a = 0; a < count; a++) { + id.get(a).serializeToStream(stream); + } + } + } - public static class TL_account_reportPeer extends TLObject { - public static int constructor = 0xae189d5f; + public static class TL_account_reportPeer extends TLObject { + public static int constructor = 0xc5ba3d86; - public InputPeer peer; - public ReportReason reason; + public InputPeer peer; + public ReportReason reason; + public String message; - public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { - return Bool.TLdeserialize(stream, constructor, exception); - } + public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { + return Bool.TLdeserialize(stream, constructor, exception); + } - public void serializeToStream(AbstractSerializedData stream) { - stream.writeInt32(constructor); - peer.serializeToStream(stream); - reason.serializeToStream(stream); - } - } + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + peer.serializeToStream(stream); + reason.serializeToStream(stream); + stream.writeString(message); + } + } public static class TL_users_getFullUser extends TLObject { public static int constructor = 0xca30a5b1; @@ -38532,8 +39258,9 @@ public class TLRPC { } public static class TL_help_dismissSuggestion extends TLObject { - public static int constructor = 0x77fa99f; + public static int constructor = 0xf50dbaa1; + public InputPeer peer; public String suggestion; public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { @@ -38542,6 +39269,7 @@ public class TLRPC { public void serializeToStream(AbstractSerializedData stream) { stream.writeInt32(constructor); + peer.serializeToStream(stream); stream.writeString(suggestion); } } @@ -39022,39 +39750,41 @@ public class TLRPC { public InputPeer peer; - public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { - return TL_peerSettings.TLdeserialize(stream, constructor, exception); - } + public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { + return TL_peerSettings.TLdeserialize(stream, constructor, exception); + } - public void serializeToStream(AbstractSerializedData stream) { - stream.writeInt32(constructor); - peer.serializeToStream(stream); - } - } + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + peer.serializeToStream(stream); + } + } - public static class TL_messages_report extends TLObject { - public static int constructor = 0xbd82b658; + public static class TL_messages_report extends TLObject { + public static int constructor = 0x8953ab4e; - public InputPeer peer; - public ArrayList id = new ArrayList<>(); - public ReportReason reason; + public InputPeer peer; + public ArrayList id = new ArrayList<>(); + public ReportReason reason; + public String message; - public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { - return Bool.TLdeserialize(stream, constructor, exception); - } + public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { + return Bool.TLdeserialize(stream, constructor, exception); + } - public void serializeToStream(AbstractSerializedData stream) { - stream.writeInt32(constructor); - peer.serializeToStream(stream); - stream.writeInt32(0x1cb5c415); - int count = id.size(); - stream.writeInt32(count); - for (int a = 0; a < count; a++) { - stream.writeInt32(id.get(a)); - } - reason.serializeToStream(stream); - } - } + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + peer.serializeToStream(stream); + stream.writeInt32(0x1cb5c415); + int count = id.size(); + stream.writeInt32(count); + for (int a = 0; a < count; a++) { + stream.writeInt32(id.get(a)); + } + reason.serializeToStream(stream); + stream.writeString(message); + } + } public static class TL_messages_getChats extends TLObject { public static int constructor = 0x3c6aa187; @@ -39975,15 +40705,36 @@ public class TLRPC { } } - public static class TL_account_getAllSecureValues extends TLObject { - public static int constructor = 0xb288bc7d; + public static class TL_account_reportProfilePhoto extends TLObject { + public static int constructor = 0xfa8cc6f5; + + public InputPeer peer; + public InputPhoto photo_id; + public ReportReason reason; + public String message; + + public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { + return Bool.TLdeserialize(stream, constructor, exception); + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + peer.serializeToStream(stream); + photo_id.serializeToStream(stream); + reason.serializeToStream(stream); + stream.writeString(message); + } + } + + public static class TL_account_getAllSecureValues extends TLObject { + public static int constructor = 0xb288bc7d; - public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { - Vector vector = new Vector(); - int size = stream.readInt32(exception); - for (int a = 0; a < size; a++) { - TL_secureValue object = TL_secureValue.TLdeserialize(stream, stream.readInt32(exception), exception); + public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { + Vector vector = new Vector(); + int size = stream.readInt32(exception); + for (int a = 0; a < size; a++) { + TL_secureValue object = TL_secureValue.TLdeserialize(stream, stream.readInt32(exception), exception); if (object == null) { return vector; } @@ -40808,21 +41559,6 @@ public class TLRPC { } public static class TL_messages_exportChatInvite extends TLObject { - public static int constructor = 0xdf7534c; - - public InputPeer peer; - - public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { - return ExportedChatInvite.TLdeserialize(stream, constructor, exception); - } - - public void serializeToStream(AbstractSerializedData stream) { - stream.writeInt32(constructor); - peer.serializeToStream(stream); - } - } - - public static class TL_messages_exportChatInvite_layer124 extends TLObject { public static int constructor = 0x14b9bcd7; public int flags; @@ -42492,7 +43228,7 @@ public class TLRPC { } public static class TL_messages_getExportedChatInvites extends TLObject { - public static int constructor = 0x6a72ac6c; + public static int constructor = 0xa2b5a3f6; public int flags; public boolean revoked; @@ -42511,9 +43247,7 @@ public class TLRPC { flags = revoked ? (flags | 8) : (flags &~ 8); stream.writeInt32(flags); peer.serializeToStream(stream); - if ((flags & 1) != 0) { - admin_id.serializeToStream(stream); - } + admin_id.serializeToStream(stream); if ((flags & 4) != 0) { stream.writeInt32(offset_date); } @@ -42535,7 +43269,7 @@ public class TLRPC { public int usage_limit; public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { - return TL_messages_exportedChatInvite.TLdeserialize(stream, constructor, exception); + return messages_ExportedChatInvite.TLdeserialize(stream, constructor, exception); } public void serializeToStream(AbstractSerializedData stream) { @@ -42554,9 +43288,10 @@ public class TLRPC { } public static class TL_messages_deleteRevokedExportedChatInvites extends TLObject { - public static int constructor = 0x52041463; + public static int constructor = 0x56987bd5; public InputPeer peer; + public InputUser admin_id; public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { return Bool.TLdeserialize(stream, constructor, exception); @@ -42565,6 +43300,7 @@ public class TLRPC { public void serializeToStream(AbstractSerializedData stream) { stream.writeInt32(constructor); peer.serializeToStream(stream); + admin_id.serializeToStream(stream); } } @@ -42585,6 +43321,21 @@ public class TLRPC { } } + public static class TL_messages_getAdminsWithInvites extends TLObject { + public static int constructor = 0x3920e6ef; + + public InputPeer peer; + + public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { + return TL_messages_chatAdminsWithInvites.TLdeserialize(stream, constructor, exception); + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + peer.serializeToStream(stream); + } + } + public static class TL_messages_getChatInviteImporters extends TLObject { public static int constructor = 0x26fb7289; @@ -42608,6 +43359,23 @@ public class TLRPC { } } + public static class TL_messages_setHistoryTTL extends TLObject { + public static int constructor = 0xb80e5fe4; + + public InputPeer peer; + public int period; + + public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { + return Updates.TLdeserialize(stream, constructor, exception); + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + peer.serializeToStream(stream); + stream.writeInt32(period); + } + } + public static class TL_messages_deleteChat extends TLObject { public static int constructor = 0x83247d11; @@ -42712,14 +43480,29 @@ public class TLRPC { } } - public static class TL_help_getAppChangelog extends TLObject { - public static int constructor = 0x9010ef6f; + public static class TL_messages_checkHistoryImportPeer extends TLObject { + public static int constructor = 0x5dc60f03; - public String prev_app_version; + public InputPeer peer; - public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { - return Updates.TLdeserialize(stream, constructor, exception); - } + public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { + return TL_messages_checkedHistoryImportPeer.TLdeserialize(stream, constructor, exception); + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + peer.serializeToStream(stream); + } + } + + public static class TL_help_getAppChangelog extends TLObject { + public static int constructor = 0x9010ef6f; + + public String prev_app_version; + + public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { + return Updates.TLdeserialize(stream, constructor, exception); + } public void serializeToStream(AbstractSerializedData stream) { stream.writeInt32(constructor); @@ -43463,32 +44246,32 @@ public class TLRPC { public void serializeToStream(AbstractSerializedData stream) { stream.writeInt32(constructor); - channel.serializeToStream(stream); - stream.writeInt32(0x1cb5c415); - int count = id.size(); - stream.writeInt32(count); - for (int a = 0; a < count; a++) { - stream.writeInt32(id.get(a)); - } - } - } + channel.serializeToStream(stream); + stream.writeInt32(0x1cb5c415); + int count = id.size(); + stream.writeInt32(count); + for (int a = 0; a < count; a++) { + stream.writeInt32(id.get(a)); + } + } + } - public static class TL_channels_deleteHistory extends TLObject { - public static int constructor = 0xaf369d42; + public static class TL_channels_deleteHistory extends TLObject { + public static int constructor = 0xaf369d42; - public InputChannel channel; - public int max_id; + public InputChannel channel; + public int max_id; - public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { - return Bool.TLdeserialize(stream, constructor, exception); - } + public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { + return Bool.TLdeserialize(stream, constructor, exception); + } - public void serializeToStream(AbstractSerializedData stream) { - stream.writeInt32(constructor); - channel.serializeToStream(stream); - stream.writeInt32(max_id); - } - } + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + channel.serializeToStream(stream); + stream.writeInt32(max_id); + } + } public static class TL_channels_searchPosts extends TLObject { public static int constructor = 0x43a0a7e2; @@ -43543,6 +44326,21 @@ public class TLRPC { } } + public static class TL_channels_convertToGigagroup extends TLObject { + public static int constructor = 0xb290c69; + + public InputChannel channel; + + public TLObject deserializeResponse(AbstractSerializedData stream, int constructor, boolean exception) { + return Updates.TLdeserialize(stream, constructor, exception); + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + channel.serializeToStream(stream); + } + } + public static class TL_phone_getCallConfig extends TLObject { public static int constructor = 0x55451fa9; @@ -45028,6 +45826,7 @@ public class TLRPC { public Peer from_id; public Peer peer_id; public int date; + public int expire_date; public MessageAction action; public String message; public MessageMedia media; @@ -45056,6 +45855,7 @@ public class TLRPC { public long grouped_id; public TL_messageReactions reactions; public ArrayList restriction_reason = new ArrayList<>(); + public int ttl_period; public int send_state = 0; //custom public int fwd_msg_id = 0; //custom public String attachPath = ""; //custom @@ -45153,17 +45953,23 @@ public class TLRPC { result = new TL_message_layer118(); break; case 0x58ae39c9: + result = new TL_message_layer123(); + break; + case 0xbce383d2: result = new TL_message(); break; - case 0x9e19a1f6: - result = new TL_messageService_layer118(); - break; + case 0x9e19a1f6: + result = new TL_messageService_layer118(); + break; case 0x286fa604: + result = new TL_messageService_layer123(); + break; + case 0x2b085862: result = new TL_messageService(); break; - case 0xf07814c8: - result = new TL_message_old5(); //custom - break; + case 0xf07814c8: + result = new TL_message_old5(); //custom + break; } if (result == null && exception) { throw new RuntimeException(String.format("can't parse magic %x in Message", constructor)); @@ -45845,6 +46651,181 @@ public class TLRPC { } public static class TL_message extends Message { + public static int constructor = 0xbce383d2; + + + public void readParams(AbstractSerializedData stream, boolean exception) { + flags = stream.readInt32(exception); + out = (flags & 2) != 0; + mentioned = (flags & 16) != 0; + media_unread = (flags & 32) != 0; + silent = (flags & 8192) != 0; + post = (flags & 16384) != 0; + from_scheduled = (flags & 262144) != 0; + legacy = (flags & 524288) != 0; + edit_hide = (flags & 2097152) != 0; + pinned = (flags & 16777216) != 0; + id = stream.readInt32(exception); + if ((flags & 256) != 0) { + from_id = Peer.TLdeserialize(stream, stream.readInt32(exception), exception); + } + peer_id = Peer.TLdeserialize(stream, stream.readInt32(exception), exception); + if ((flags & 4) != 0) { + fwd_from = MessageFwdHeader.TLdeserialize(stream, stream.readInt32(exception), exception); + } + if ((flags & 2048) != 0) { + via_bot_id = stream.readInt32(exception); + } + if ((flags & 8) != 0) { + reply_to = TL_messageReplyHeader.TLdeserialize(stream, stream.readInt32(exception), exception); + } + date = stream.readInt32(exception); + message = stream.readString(exception); + if ((flags & 512) != 0) { + media = MessageMedia.TLdeserialize(stream, stream.readInt32(exception), exception); + if (media != null) { + ttl = media.ttl_seconds; //custom + } + if (media != null && !TextUtils.isEmpty(media.captionLegacy)) { + message = media.captionLegacy; + } + } + if ((flags & 64) != 0) { + reply_markup = ReplyMarkup.TLdeserialize(stream, stream.readInt32(exception), exception); + } + if ((flags & 128) != 0) { + int magic = stream.readInt32(exception); + if (magic != 0x1cb5c415) { + if (exception) { + throw new RuntimeException(String.format("wrong Vector magic, got %x", magic)); + } + return; + } + int count = stream.readInt32(exception); + for (int a = 0; a < count; a++) { + MessageEntity object = MessageEntity.TLdeserialize(stream, stream.readInt32(exception), exception); + if (object == null) { + return; + } + entities.add(object); + } + } + if ((flags & 1024) != 0) { + views = stream.readInt32(exception); + } + if ((flags & 1024) != 0) { + forwards = stream.readInt32(exception); + } + if ((flags & 8388608) != 0) { + replies = TL_messageReplies.TLdeserialize(stream, stream.readInt32(exception), exception); + } + if ((flags & 32768) != 0) { + edit_date = stream.readInt32(exception); + } + if ((flags & 65536) != 0) { + post_author = stream.readString(exception); + } + if ((flags & 131072) != 0) { + grouped_id = stream.readInt64(exception); + } + if ((flags & 4194304) != 0) { + int magic = stream.readInt32(exception); + if (magic != 0x1cb5c415) { + if (exception) { + throw new RuntimeException(String.format("wrong Vector magic, got %x", magic)); + } + return; + } + int count = stream.readInt32(exception); + for (int a = 0; a < count; a++) { + TL_restrictionReason object = TL_restrictionReason.TLdeserialize(stream, stream.readInt32(exception), exception); + if (object == null) { + return; + } + restriction_reason.add(object); + } + } + if ((flags & 33554432) != 0) { + ttl_period = stream.readInt32(exception); + } + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + flags = out ? (flags | 2) : (flags & ~2); + flags = mentioned ? (flags | 16) : (flags & ~16); + flags = media_unread ? (flags | 32) : (flags & ~32); + flags = silent ? (flags | 8192) : (flags & ~8192); + flags = post ? (flags | 16384) : (flags & ~16384); + flags = from_scheduled ? (flags | 262144) : (flags & ~262144); + flags = legacy ? (flags | 524288) : (flags & ~524288); + flags = edit_hide ? (flags | 2097152) : (flags & ~2097152); + flags = pinned ? (flags | 16777216) : (flags & ~16777216); + stream.writeInt32(flags); + stream.writeInt32(id); + if ((flags & 256) != 0) { + from_id.serializeToStream(stream); + } + peer_id.serializeToStream(stream); + if ((flags & 4) != 0) { + fwd_from.serializeToStream(stream); + } + if ((flags & 2048) != 0) { + stream.writeInt32(via_bot_id); + } + if ((flags & 8) != 0) { + reply_to.serializeToStream(stream); + } + stream.writeInt32(date); + stream.writeString(message); + if ((flags & 512) != 0) { + media.serializeToStream(stream); + } + if ((flags & 64) != 0) { + reply_markup.serializeToStream(stream); + } + if ((flags & 128) != 0) { + stream.writeInt32(0x1cb5c415); + int count = entities.size(); + stream.writeInt32(count); + for (int a = 0; a < count; a++) { + entities.get(a).serializeToStream(stream); + } + } + if ((flags & 1024) != 0) { + stream.writeInt32(views); + } + if ((flags & 1024) != 0) { + stream.writeInt32(forwards); + } + if ((flags & 8388608) != 0) { + replies.serializeToStream(stream); + } + if ((flags & 32768) != 0) { + stream.writeInt32(edit_date); + } + if ((flags & 65536) != 0) { + stream.writeString(post_author); + } + if ((flags & 131072) != 0) { + stream.writeInt64(grouped_id); + } + if ((flags & 4194304) != 0) { + stream.writeInt32(0x1cb5c415); + int count = restriction_reason.size(); + stream.writeInt32(count); + for (int a = 0; a < count; a++) { + restriction_reason.get(a).serializeToStream(stream); + } + } + if ((flags & 33554432) != 0) { + stream.writeInt32(ttl_period); + } + writeAttachPath(stream); + } + } + + public static class TL_message_layer123 extends TL_message { public static int constructor = 0x58ae39c9; @@ -47449,7 +48430,7 @@ public class TLRPC { } } - public static class TL_messageService extends Message { + public static class TL_messageService_layer123 extends TL_messageService { public static int constructor = 0x286fa604; @@ -47496,15 +48477,67 @@ public class TLRPC { } } - public static class TL_messageService_layer118 extends TL_messageService { - public static int constructor = 0x9e19a1f6; + public static class TL_messageService extends Message { + public static int constructor = 0x2b085862; - public void readParams(AbstractSerializedData stream, boolean exception) { - flags = stream.readInt32(exception); - unread = (flags & 1) != 0; - out = (flags & 2) != 0; - mentioned = (flags & 16) != 0; - media_unread = (flags & 32) != 0; + + public void readParams(AbstractSerializedData stream, boolean exception) { + flags = stream.readInt32(exception); + out = (flags & 2) != 0; + mentioned = (flags & 16) != 0; + media_unread = (flags & 32) != 0; + silent = (flags & 8192) != 0; + post = (flags & 16384) != 0; + legacy = (flags & 524288) != 0; + id = stream.readInt32(exception); + if ((flags & 256) != 0) { + from_id = Peer.TLdeserialize(stream, stream.readInt32(exception), exception); + } + peer_id = Peer.TLdeserialize(stream, stream.readInt32(exception), exception); + if ((flags & 8) != 0) { + reply_to = TL_messageReplyHeader.TLdeserialize(stream, stream.readInt32(exception), exception); + } + date = stream.readInt32(exception); + action = MessageAction.TLdeserialize(stream, stream.readInt32(exception), exception); + if ((flags & 33554432) != 0) { + ttl_period = stream.readInt32(exception); + } + } + + public void serializeToStream(AbstractSerializedData stream) { + stream.writeInt32(constructor); + flags = out ? (flags | 2) : (flags & ~2); + flags = mentioned ? (flags | 16) : (flags & ~16); + flags = media_unread ? (flags | 32) : (flags & ~32); + flags = silent ? (flags | 8192) : (flags & ~8192); + flags = post ? (flags | 16384) : (flags & ~16384); + flags = legacy ? (flags | 524288) : (flags & ~524288); + stream.writeInt32(flags); + stream.writeInt32(id); + if ((flags & 256) != 0) { + from_id.serializeToStream(stream); + } + peer_id.serializeToStream(stream); + if ((flags & 8) != 0) { + reply_to.serializeToStream(stream); + } + stream.writeInt32(date); + action.serializeToStream(stream); + if ((flags & 33554432) != 0) { + stream.writeInt32(ttl_period); + } + } + } + + public static class TL_messageService_layer118 extends TL_messageService { + public static int constructor = 0x9e19a1f6; + + public void readParams(AbstractSerializedData stream, boolean exception) { + flags = stream.readInt32(exception); + unread = (flags & 1) != 0; + out = (flags & 2) != 0; + mentioned = (flags & 16) != 0; + media_unread = (flags & 32) != 0; silent = (flags & 8192) != 0; post = (flags & 16384) != 0; legacy = (flags & 524288) != 0; diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ActionBar.java b/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ActionBar.java index 81ec7ac2d..b35c12f3e 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ActionBar.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ActionBar.java @@ -486,98 +486,162 @@ public class ActionBar extends FrameLayout { } public void showActionMode() { - showActionMode(null, null, null, null, null, 0); + showActionMode(true, null, null, null, null, null, 0); } - public void showActionMode(View extraView, View showingView, View[] hidingViews, + public void showActionMode(boolean animated) { + showActionMode(animated, null, null, null, null, null, 0); + } + + public void showActionMode(boolean animated, View extraView, View showingView, View[] hidingViews, boolean[] hideView, View translationView, int translation) { if (actionMode == null || actionModeVisible) { return; } actionModeVisible = true; - ArrayList animators = new ArrayList<>(); - animators.add(ObjectAnimator.ofFloat(actionMode, View.ALPHA, 0.0f, 1.0f)); - if (hidingViews != null) { - for (int a = 0; a < hidingViews.length; a++) { - if (hidingViews[a] != null) { - animators.add(ObjectAnimator.ofFloat(hidingViews[a], View.ALPHA, 1.0f, 0.0f)); + if (animated) { + ArrayList animators = new ArrayList<>(); + animators.add(ObjectAnimator.ofFloat(actionMode, View.ALPHA, 0.0f, 1.0f)); + if (hidingViews != null) { + for (int a = 0; a < hidingViews.length; a++) { + if (hidingViews[a] != null) { + animators.add(ObjectAnimator.ofFloat(hidingViews[a], View.ALPHA, 1.0f, 0.0f)); + } } } - } - if (showingView != null) { - animators.add(ObjectAnimator.ofFloat(showingView, View.ALPHA, 0.0f, 1.0f)); - } - if (translationView != null) { - animators.add(ObjectAnimator.ofFloat(translationView, View.TRANSLATION_Y, translation)); - actionModeTranslationView = translationView; - } - actionModeExtraView = extraView; - actionModeShowingView = showingView; - actionModeHidingViews = hidingViews; - if (occupyStatusBar && actionModeTop != null && !SharedConfig.noStatusBar) { - animators.add(ObjectAnimator.ofFloat(actionModeTop, View.ALPHA, 0.0f, 1.0f)); - } - if (SharedConfig.noStatusBar) { - if (AndroidUtilities.computePerceivedBrightness(actionModeColor) < 0.721f) { - AndroidUtilities.setLightStatusBar(((Activity) getContext()).getWindow(), false); - } else { - AndroidUtilities.setLightStatusBar(((Activity) getContext()).getWindow(), true); + if (showingView != null) { + animators.add(ObjectAnimator.ofFloat(showingView, View.ALPHA, 0.0f, 1.0f)); } - } - if (actionModeAnimation != null) { - actionModeAnimation.cancel(); - } - actionModeAnimation = new AnimatorSet(); - actionModeAnimation.playTogether(animators); - actionModeAnimation.setDuration(200); - actionModeAnimation.addListener(new AnimatorListenerAdapter() { - @Override - public void onAnimationStart(Animator animation) { - actionMode.setVisibility(VISIBLE); - if (occupyStatusBar && actionModeTop != null && !SharedConfig.noStatusBar) { - actionModeTop.setVisibility(VISIBLE); + if (translationView != null) { + animators.add(ObjectAnimator.ofFloat(translationView, View.TRANSLATION_Y, translation)); + actionModeTranslationView = translationView; + } + actionModeExtraView = extraView; + actionModeShowingView = showingView; + actionModeHidingViews = hidingViews; + if (occupyStatusBar && actionModeTop != null && !SharedConfig.noStatusBar) { + animators.add(ObjectAnimator.ofFloat(actionModeTop, View.ALPHA, 0.0f, 1.0f)); + } + if (SharedConfig.noStatusBar) { + if (AndroidUtilities.computePerceivedBrightness(actionModeColor) < 0.721f) { + AndroidUtilities.setLightStatusBar(((Activity) getContext()).getWindow(), false); + } else { + AndroidUtilities.setLightStatusBar(((Activity) getContext()).getWindow(), true); } } + if (actionModeAnimation != null) { + actionModeAnimation.cancel(); + } + actionModeAnimation = new AnimatorSet(); + actionModeAnimation.playTogether(animators); + actionModeAnimation.setDuration(200); + actionModeAnimation.addListener(new AnimatorListenerAdapter() { + @Override + public void onAnimationStart(Animator animation) { + actionMode.setVisibility(VISIBLE); + if (occupyStatusBar && actionModeTop != null && !SharedConfig.noStatusBar) { + actionModeTop.setVisibility(VISIBLE); + } + } - @Override - public void onAnimationEnd(Animator animation) { - if (actionModeAnimation != null && actionModeAnimation.equals(animation)) { - actionModeAnimation = null; - if (titleTextView[0] != null) { - titleTextView[0].setVisibility(INVISIBLE); - } - if (subtitleTextView != null && !TextUtils.isEmpty(subtitleTextView.getText())) { - subtitleTextView.setVisibility(INVISIBLE); - } - if (menu != null) { - menu.setVisibility(INVISIBLE); - } - if (actionModeHidingViews != null) { - for (int a = 0; a < actionModeHidingViews.length; a++) { - if (actionModeHidingViews[a] != null) { - if (hideView == null || a >= hideView.length || hideView[a]) { - actionModeHidingViews[a].setVisibility(INVISIBLE); + @Override + public void onAnimationEnd(Animator animation) { + if (actionModeAnimation != null && actionModeAnimation.equals(animation)) { + actionModeAnimation = null; + if (titleTextView[0] != null) { + titleTextView[0].setVisibility(INVISIBLE); + } + if (subtitleTextView != null && !TextUtils.isEmpty(subtitleTextView.getText())) { + subtitleTextView.setVisibility(INVISIBLE); + } + if (menu != null) { + menu.setVisibility(INVISIBLE); + } + if (actionModeHidingViews != null) { + for (int a = 0; a < actionModeHidingViews.length; a++) { + if (actionModeHidingViews[a] != null) { + if (hideView == null || a >= hideView.length || hideView[a]) { + actionModeHidingViews[a].setVisibility(INVISIBLE); + } } } } } } - } - @Override - public void onAnimationCancel(Animator animation) { - if (actionModeAnimation != null && actionModeAnimation.equals(animation)) { - actionModeAnimation = null; + @Override + public void onAnimationCancel(Animator animation) { + if (actionModeAnimation != null && actionModeAnimation.equals(animation)) { + actionModeAnimation = null; + } + } + }); + actionModeAnimation.start(); + if (backButtonImageView != null) { + Drawable drawable = backButtonImageView.getDrawable(); + if (drawable instanceof BackDrawable) { + ((BackDrawable) drawable).setRotation(1, true); + } + backButtonImageView.setBackgroundDrawable(Theme.createSelectorDrawable(itemsActionModeBackgroundColor)); + } + } else { + actionMode.setAlpha(1.0f); + if (hidingViews != null) { + for (int a = 0; a < hidingViews.length; a++) { + if (hidingViews[a] != null) { + hidingViews[a].setAlpha(0.0f); + } } } - }); - actionModeAnimation.start(); - if (backButtonImageView != null) { - Drawable drawable = backButtonImageView.getDrawable(); - if (drawable instanceof BackDrawable) { - ((BackDrawable) drawable).setRotation(1, true); + if (showingView != null) { + showingView.setAlpha(1.0f); + } + if (translationView != null) { + translationView.setTranslationY(translation); + actionModeTranslationView = translationView; + } + actionModeExtraView = extraView; + actionModeShowingView = showingView; + actionModeHidingViews = hidingViews; + if (occupyStatusBar && actionModeTop != null && !SharedConfig.noStatusBar) { + actionModeTop.setAlpha(1.0f); + } + if (SharedConfig.noStatusBar) { + if (AndroidUtilities.computePerceivedBrightness(actionModeColor) < 0.721f) { + AndroidUtilities.setLightStatusBar(((Activity) getContext()).getWindow(), false); + } else { + AndroidUtilities.setLightStatusBar(((Activity) getContext()).getWindow(), true); + } + } + actionMode.setVisibility(VISIBLE); + if (occupyStatusBar && actionModeTop != null && !SharedConfig.noStatusBar) { + actionModeTop.setVisibility(VISIBLE); + } + if (titleTextView[0] != null) { + titleTextView[0].setVisibility(INVISIBLE); + } + if (subtitleTextView != null && !TextUtils.isEmpty(subtitleTextView.getText())) { + subtitleTextView.setVisibility(INVISIBLE); + } + if (menu != null) { + menu.setVisibility(INVISIBLE); + } + if (actionModeHidingViews != null) { + for (int a = 0; a < actionModeHidingViews.length; a++) { + if (actionModeHidingViews[a] != null) { + if (hideView == null || a >= hideView.length || hideView[a]) { + actionModeHidingViews[a].setVisibility(INVISIBLE); + } + } + } + } + if (backButtonImageView != null) { + Drawable drawable = backButtonImageView.getDrawable(); + if (drawable instanceof BackDrawable) { + ((BackDrawable) drawable).setRotation(1, false); + } + backButtonImageView.setBackgroundDrawable(Theme.createSelectorDrawable(itemsActionModeBackgroundColor)); } - backButtonImageView.setBackgroundDrawable(Theme.createSelectorDrawable(itemsActionModeBackgroundColor)); } } @@ -591,7 +655,7 @@ public class ActionBar extends FrameLayout { animators.add(ObjectAnimator.ofFloat(actionMode, View.ALPHA, 0.0f)); if (actionModeHidingViews != null) { for (int a = 0; a < actionModeHidingViews.length; a++) { - if (actionModeHidingViews != null) { + if (actionModeHidingViews[a] != null) { actionModeHidingViews[a].setVisibility(VISIBLE); animators.add(ObjectAnimator.ofFloat(actionModeHidingViews[a], View.ALPHA, 1.0f)); } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ActionBarLayout.java b/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ActionBarLayout.java index dd191f2e0..2432e6a62 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ActionBarLayout.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ActionBarLayout.java @@ -24,7 +24,6 @@ import android.graphics.Rect; import android.graphics.drawable.ColorDrawable; import android.graphics.drawable.Drawable; import android.os.Build; -import androidx.annotation.Keep; import android.view.Gravity; import android.view.HapticFeedbackConstants; import android.view.KeyEvent; @@ -38,11 +37,14 @@ import android.view.animation.AccelerateDecelerateInterpolator; import android.view.animation.DecelerateInterpolator; import android.widget.FrameLayout; +import androidx.annotation.Keep; + import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.FileLog; import org.telegram.messenger.MessagesController; import org.telegram.messenger.R; import org.telegram.messenger.SharedConfig; +import org.telegram.ui.Components.Bulletin; import org.telegram.ui.Components.CubicBezierInterpolator; import org.telegram.ui.Components.GroupCallPip; import org.telegram.ui.Components.LayoutHelper; @@ -1432,6 +1434,9 @@ public class ActionBarLayout extends FrameLayout { } } else { currentAnimation = animation; + if (Bulletin.getVisibleBulletin() != null && Bulletin.getVisibleBulletin().isShowing()) { + Bulletin.getVisibleBulletin().hide(); + } } } else { currentFragment.onTransitionAnimationEnd(false, true); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ActionBarMenuSubItem.java b/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ActionBarMenuSubItem.java index ddb1f71b2..7ee253ad0 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ActionBarMenuSubItem.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ActionBarMenuSubItem.java @@ -128,6 +128,10 @@ public class ActionBarMenuSubItem extends FrameLayout { textView.setText(text); } + public void setSubtextColor(int color) { + subtextView.setTextColor(color); + } + public void setSubtext(String text) { if (subtextView == null) { subtextView = new TextView(getContext()); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/AdjustPanLayoutHelper.java b/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/AdjustPanLayoutHelper.java index 3bff5aee5..34fde5fc3 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/AdjustPanLayoutHelper.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/AdjustPanLayoutHelper.java @@ -8,6 +8,7 @@ import android.content.Context; import android.view.ContextThemeWrapper; import android.view.View; import android.view.ViewGroup; +import android.view.ViewParent; import android.view.ViewTreeObserver; import android.view.Window; import android.view.animation.Interpolator; @@ -45,6 +46,8 @@ public class AdjustPanLayoutHelper { ArrayList viewsToHeightSet = new ArrayList<>(); protected float keyboardSize; + boolean checkHierarchyHeight; + ViewTreeObserver.OnPreDrawListener onPreDrawListener = new ViewTreeObserver.OnPreDrawListener() { @Override public boolean onPreDraw() { @@ -92,10 +95,17 @@ public class AdjustPanLayoutHelper { int startOffset = startOffset(); getViewsToSetHeight(parent); - setViewHeight(Math.max(previousHeight, contentHeight)); + int additionalContentHeight = 0; + if (checkHierarchyHeight) { + ViewParent viewParent = parent.getParent(); + if (viewParent instanceof View) { + additionalContentHeight = ((View) viewParent).getHeight() - contentHeight; + } + } + setViewHeight(Math.max(previousHeight, contentHeight + additionalContentHeight)); resizableView.requestLayout(); - onTransitionStart(isKeyboardVisible); + onTransitionStart(isKeyboardVisible, contentHeight); float dy = contentHeight - previousHeight; float from; @@ -240,7 +250,7 @@ public class AdjustPanLayoutHelper { } - protected void onTransitionStart(boolean keyboardVisible) { + protected void onTransitionStart(boolean keyboardVisible, int contentHeight) { } @@ -255,4 +265,8 @@ public class AdjustPanLayoutHelper { public boolean animationInProgress() { return animationInProgress; } + + public void setCheckHierarchyHeight(boolean checkHierarchyHeight) { + this.checkHierarchyHeight = checkHierarchyHeight; + } } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/BottomSheet.java b/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/BottomSheet.java index 0af516e59..6bfc95d70 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/BottomSheet.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/BottomSheet.java @@ -56,6 +56,7 @@ import org.telegram.messenger.NotificationCenter; import org.telegram.messenger.R; import org.telegram.messenger.UserConfig; import org.telegram.ui.Components.AnimationProperties; +import org.telegram.ui.Components.Bulletin; import org.telegram.ui.Components.CubicBezierInterpolator; import org.telegram.ui.Components.LayoutHelper; @@ -1200,6 +1201,7 @@ public class BottomSheet extends Dialog { onHideListener.onDismiss(this); } cancelSheetAnimation(); + long duration = 0; if (!allowCustomAnimation || !onCustomCloseAnimation()) { currentSheetAnimationType = 2; currentSheetAnimation = new AnimatorSet(); @@ -1209,10 +1211,11 @@ public class BottomSheet extends Dialog { ); if (useFastDismiss) { int height = containerView.getMeasuredHeight(); - currentSheetAnimation.setDuration(Math.max(60, (int) (250 * (height - containerView.getTranslationY()) / (float) height))); + duration = Math.max(60, (int) (250 * (height - containerView.getTranslationY()) / (float) height)); + currentSheetAnimation.setDuration(duration); useFastDismiss = false; } else { - currentSheetAnimation.setDuration(250); + currentSheetAnimation.setDuration(duration = 250); } currentSheetAnimation.setInterpolator(CubicBezierInterpolator.DEFAULT); currentSheetAnimation.addListener(new AnimatorListenerAdapter() { @@ -1243,6 +1246,15 @@ public class BottomSheet extends Dialog { NotificationCenter.getGlobalInstance().postNotificationName(NotificationCenter.stopAllHeavyOperations, 512); currentSheetAnimation.start(); } + + Bulletin bulletin = Bulletin.getVisibleBulletin(); + if (bulletin != null && bulletin.isShowing()) { + if (duration > 0) { + bulletin.hide((long) (duration * 0.6f)); + } else { + bulletin.hide(); + } + } } public int getSheetAnimationType() { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/DrawerLayoutContainer.java b/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/DrawerLayoutContainer.java index f9fee886f..3785fa6bb 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/DrawerLayoutContainer.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/DrawerLayoutContainer.java @@ -290,6 +290,13 @@ public class DrawerLayoutContainer extends FrameLayout { parentActionBarLayout = layout; } + public void closeDrawer() { + if (drawerPosition != 0) { + setDrawerPosition(0); + onDrawerAnimationEnd(false); + } + } + public void setAllowOpenDrawer(boolean value, boolean animated) { allowOpenDrawer = value; if (!allowOpenDrawer && drawerPosition != 0) { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ThemeDescription.java b/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ThemeDescription.java index d9abf967c..42f7504fc 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ThemeDescription.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ActionBar/ThemeDescription.java @@ -28,6 +28,8 @@ import android.widget.ImageView; import android.widget.ScrollView; import android.widget.TextView; +import androidx.viewpager.widget.ViewPager; + import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.FileLog; import org.telegram.ui.Components.AudioPlayerAlert; @@ -61,10 +63,6 @@ import java.lang.reflect.Field; import java.util.ArrayList; import java.util.HashMap; -import androidx.viewpager.widget.ViewPager; - -import com.google.android.exoplayer2.util.Log; - public class ThemeDescription { public static int FLAG_BACKGROUND = 0x00000001; diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ActionIntroActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ActionIntroActivity.java index 90085baef..db7a047c8 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ActionIntroActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ActionIntroActivity.java @@ -561,11 +561,12 @@ public class ActionIntroActivity extends BaseFragment implements LocationControl switch (currentType) { case ACTION_TYPE_CHANNEL_CREATE: { - imageView.setImageResource(R.drawable.channelintro); imageView.setScaleType(ImageView.ScaleType.FIT_CENTER); + imageView.setAnimation(R.raw.channel_create, 200, 200); titleTextView.setText(LocaleController.getString("ChannelAlertTitle", R.string.ChannelAlertTitle)); descriptionText.setText(LocaleController.getString("ChannelAlertText", R.string.ChannelAlertText)); buttonTextView.setText(LocaleController.getString("ChannelAlertCreate2", R.string.ChannelAlertCreate2)); + imageView.playAnimation(); break; } case ACTION_TYPE_NEARBY_LOCATION_ACCESS: { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Adapters/MentionsAdapter.java b/TMessagesProj/src/main/java/org/telegram/ui/Adapters/MentionsAdapter.java index 3198506c7..92d64dc80 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Adapters/MentionsAdapter.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Adapters/MentionsAdapter.java @@ -21,11 +21,13 @@ import android.view.View; import android.view.ViewGroup; import android.widget.TextView; +import androidx.recyclerview.widget.RecyclerView; + import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.ChatObject; import org.telegram.messenger.ContactsController; -import org.telegram.messenger.MediaDataController; import org.telegram.messenger.LocaleController; +import org.telegram.messenger.MediaDataController; import org.telegram.messenger.MessageObject; import org.telegram.messenger.MessagesController; import org.telegram.messenger.MessagesStorage; @@ -51,8 +53,6 @@ import java.util.Collections; import java.util.Comparator; import java.util.HashMap; -import androidx.recyclerview.widget.RecyclerView; - public class MentionsAdapter extends RecyclerListView.SelectionAdapter { public interface MentionsAdapterDelegate { @@ -82,6 +82,7 @@ public class MentionsAdapter extends RecyclerListView.SelectionAdapter { private int resultStartPosition; private int resultLength; private String lastText; + private boolean lastForSearch; private boolean lastUsernameOnly; private int lastPosition; private ArrayList messages; @@ -147,7 +148,7 @@ public class MentionsAdapter extends RecyclerListView.SelectionAdapter { @Override public void onSetHashtags(ArrayList arrayList, HashMap hashMap) { if (lastText != null) { - searchUsernameOrHashtag(lastText, lastPosition, messages, lastUsernameOnly); + searchUsernameOrHashtag(lastText, lastPosition, messages, lastUsernameOnly, lastForSearch); } } }); @@ -196,7 +197,7 @@ public class MentionsAdapter extends RecyclerListView.SelectionAdapter { } } if (lastText != null) { - searchUsernameOrHashtag(lastText, lastPosition, messages, lastUsernameOnly); + searchUsernameOrHashtag(lastText, lastPosition, messages, lastUsernameOnly, lastForSearch); } } @@ -550,7 +551,7 @@ public class MentionsAdapter extends RecyclerListView.SelectionAdapter { } } - public void searchUsernameOrHashtag(String text, int position, ArrayList messageObjects, boolean usernameOnly) { + public void searchUsernameOrHashtag(String text, int position, ArrayList messageObjects, boolean usernameOnly, boolean forSearch) { if (cancelDelayRunnable != null) { AndroidUtilities.cancelRunOnUIThread(cancelDelayRunnable); cancelDelayRunnable = null; @@ -575,6 +576,7 @@ public class MentionsAdapter extends RecyclerListView.SelectionAdapter { } lastText = null; lastUsernameOnly = usernameOnly; + lastForSearch = forSearch; StringBuilder result = new StringBuilder(); int foundType = -1; if (!usernameOnly && needBotContext && text.charAt(0) == '@') { @@ -695,7 +697,7 @@ public class MentionsAdapter extends RecyclerListView.SelectionAdapter { if (user == null) { continue; } - if (user.username != null && user.username.length() > 0 && (usernameString.length() > 0 && user.username.toLowerCase().startsWith(usernameString) || usernameString.length() == 0)) { + if (!TextUtils.isEmpty(user.username) && (usernameString.length() == 0 || user.username.toLowerCase().startsWith(usernameString))) { newResult.add(user); newResultsHashMap.put(user.id, user); newMap.put(user.id, user); @@ -719,7 +721,7 @@ public class MentionsAdapter extends RecyclerListView.SelectionAdapter { threadId = 0; } if (chat != null && info != null && info.participants != null && (!ChatObject.isChannel(chat) || chat.megagroup)) { - for (int a = -1; a < info.participants.participants.size(); a++) { + for (int a = (forSearch ? -1 : 0); a < info.participants.participants.size(); a++) { String username; String firstName; String lastName; diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Adapters/StickersSearchAdapter.java b/TMessagesProj/src/main/java/org/telegram/ui/Adapters/StickersSearchAdapter.java index dcb2b5b6a..6eca09c77 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Adapters/StickersSearchAdapter.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Adapters/StickersSearchAdapter.java @@ -445,10 +445,10 @@ public class StickersSearchAdapter extends RecyclerListView.SelectionAdapter { if (payloads.contains(PAYLOAD_ANIMATED)) { if (holder.getItemViewType() == 3) { bindFeaturedStickerSetInfoCell((FeaturedStickerSetInfoCell) holder.itemView, position, true); - } else { - super.onBindViewHolder(holder, position, payloads); + return; } } + super.onBindViewHolder(holder, position, payloads); } public void installStickerSet(TLRPC.InputStickerSet inputSet) { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ArticleViewer.java b/TMessagesProj/src/main/java/org/telegram/ui/ArticleViewer.java index e78d7cfaf..0c1ef171a 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ArticleViewer.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ArticleViewer.java @@ -136,6 +136,7 @@ import org.telegram.ui.Components.AnchorSpan; import org.telegram.ui.Components.AnimatedArrowDrawable; import org.telegram.ui.Components.AnimationProperties; import org.telegram.ui.Components.AvatarDrawable; +import org.telegram.ui.Components.BulletinFactory; import org.telegram.ui.Components.CloseProgressDrawable2; import org.telegram.ui.Components.CombinedDrawable; import org.telegram.ui.Components.ContextProgressView; @@ -3705,7 +3706,7 @@ public class ArticleViewer implements NotificationCenter.NotificationCenterDeleg @Override public void onTextCopied() { - + BulletinFactory.of(containerView).createCopyBulletin(LocaleController.getString("TextCopied", R.string.TextCopied)).show(); } }); containerView.addView(textSelectionHelper.getOverlayView(activity)); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/CancelAccountDeletionActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/CancelAccountDeletionActivity.java index 8e33fe1c6..ee083965c 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/CancelAccountDeletionActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/CancelAccountDeletionActivity.java @@ -50,7 +50,6 @@ import android.widget.TextView; import org.telegram.PhoneFormat.PhoneFormat; import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.ApplicationLoader; -import org.telegram.messenger.BuildVars; import org.telegram.messenger.FileLog; import org.telegram.messenger.LocaleController; import org.telegram.messenger.NotificationCenter; @@ -66,6 +65,8 @@ import org.telegram.ui.ActionBar.ThemeDescription; import org.telegram.ui.Components.AlertsCreator; import org.telegram.ui.Components.EditTextBoldCursor; import org.telegram.ui.Components.LayoutHelper; +import org.telegram.ui.Components.RLottieDrawable; +import org.telegram.ui.Components.RLottieImageView; import org.telegram.ui.Components.RadialProgressView; import org.telegram.ui.Components.SlideView; import org.telegram.ui.Components.URLSpanNoUnderline; @@ -397,11 +398,13 @@ public class CancelAccountDeletionActivity extends BaseFragment { private TextView confirmTextView; private TextView titleTextView; private ImageView blackImageView; - private ImageView blueImageView; + private RLottieImageView blueImageView; private TextView timeText; private TextView problemText; private ProgressView progressView; + RLottieDrawable hintDrawable; + private Timer timeTimer; private Timer codeTimer; private final Object timerSync = new Object(); @@ -466,17 +469,19 @@ public class CancelAccountDeletionActivity extends BaseFragment { blackImageView.setColorFilter(new PorterDuffColorFilter(Theme.getColor(Theme.key_windowBackgroundWhiteBlackText), PorterDuff.Mode.SRC_IN)); frameLayout.addView(blackImageView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.LEFT | Gravity.TOP, 0, 0, 0, 0)); - blueImageView = new ImageView(context); + blueImageView = new RLottieImageView(context); blueImageView.setImageResource(R.drawable.sms_bubble); blueImageView.setColorFilter(new PorterDuffColorFilter(Theme.getColor(Theme.key_chats_actionBackground), PorterDuff.Mode.SRC_IN)); frameLayout.addView(blueImageView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.LEFT | Gravity.TOP, 0, 0, 0, 0)); titleTextView.setText(LocaleController.getString("SentAppCodeTitle", R.string.SentAppCodeTitle)); } else { - blueImageView = new ImageView(context); - blueImageView.setImageResource(R.drawable.sms_code); - blueImageView.setColorFilter(new PorterDuffColorFilter(Theme.getColor(Theme.key_chats_actionBackground), PorterDuff.Mode.SRC_IN)); - frameLayout.addView(blueImageView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.LEFT | Gravity.TOP, 0, 0, 0, 0)); + blueImageView = new RLottieImageView(context); + hintDrawable = new RLottieDrawable(R.raw.sms_incoming_info, "" + R.raw.sms_incoming_info, AndroidUtilities.dp(48), AndroidUtilities.dp(48), true, null); + hintDrawable.setLayerColor("Bubble.**", Theme.getColor(Theme.key_chats_actionBackground)); + hintDrawable.setLayerColor("Phone.**", Theme.getColor(Theme.key_chats_actionBackground)); + blueImageView.setAnimation(hintDrawable); + frameLayout.addView(blueImageView, LayoutHelper.createFrame(48, 48, Gravity.LEFT | Gravity.TOP, 0, 0, 0, 0)); titleTextView.setText(LocaleController.getString("SentSmsCodeTitle", R.string.SentSmsCodeTitle)); } @@ -1031,6 +1036,9 @@ public class CancelAccountDeletionActivity extends BaseFragment { if (currentType == 3) { return; } + if (hintDrawable != null) { + hintDrawable.setCurrentFrame(0); + } AndroidUtilities.runOnUIThread(() -> { if (codeField != null) { for (int a = codeField.length - 1; a >= 0; a--) { @@ -1042,6 +1050,9 @@ public class CancelAccountDeletionActivity extends BaseFragment { } } } + if (hintDrawable != null) { + hintDrawable.start(); + } }, 100); } @@ -1076,6 +1087,18 @@ public class CancelAccountDeletionActivity extends BaseFragment { ArrayList arrayList = new ArrayList<>(); + ThemeDescription.ThemeDescriptionDelegate descriptionDelegate = () -> { + for (int i = 0; i < views.length; i++) { + if (views[i] instanceof LoginActivity.LoginActivitySmsView) { + LoginActivity.LoginActivitySmsView smsView = (LoginActivity.LoginActivitySmsView) views[i]; + if (smsView.hintDrawable != null) { + smsView.hintDrawable.setLayerColor("Bubble.**", Theme.getColor(Theme.key_chats_actionBackground)); + smsView.hintDrawable.setLayerColor("Phone.**", Theme.getColor(Theme.key_chats_actionBackground)); + } + } + } + }; + arrayList.add(new ThemeDescription(fragmentView, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_windowBackgroundWhite)); arrayList.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_actionBarDefault)); @@ -1146,6 +1169,7 @@ public class CancelAccountDeletionActivity extends BaseFragment { arrayList.add(new ThemeDescription(smsView4.progressView, 0, new Class[]{ProgressView.class}, new String[]{"paint"}, null, null, null, Theme.key_login_progressOuter)); arrayList.add(new ThemeDescription(smsView4.blackImageView, ThemeDescription.FLAG_IMAGECOLOR, null, null, null, null, Theme.key_windowBackgroundWhiteBlackText)); arrayList.add(new ThemeDescription(smsView4.blueImageView, ThemeDescription.FLAG_IMAGECOLOR, null, null, null, null, Theme.key_chats_actionBackground)); + arrayList.add(new ThemeDescription(smsView4.blueImageView, 0, null, null, null, descriptionDelegate, Theme.key_chats_actionBackground)); return arrayList; } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Cells/ChatActionCell.java b/TMessagesProj/src/main/java/org/telegram/ui/Cells/ChatActionCell.java index 5c57d2650..648626791 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Cells/ChatActionCell.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Cells/ChatActionCell.java @@ -25,21 +25,21 @@ import android.view.accessibility.AccessibilityNodeInfo; import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.DownloadController; +import org.telegram.messenger.FileLoader; +import org.telegram.messenger.FileLog; import org.telegram.messenger.ImageLoader; import org.telegram.messenger.ImageLocation; import org.telegram.messenger.ImageReceiver; import org.telegram.messenger.LocaleController; import org.telegram.messenger.MessageObject; -import org.telegram.messenger.FileLoader; -import org.telegram.messenger.FileLog; import org.telegram.messenger.R; import org.telegram.messenger.SharedConfig; +import org.telegram.messenger.UserConfig; import org.telegram.messenger.browser.Browser; import org.telegram.tgnet.TLRPC; -import org.telegram.messenger.UserConfig; import org.telegram.ui.ActionBar.Theme; -import org.telegram.ui.PhotoViewer; import org.telegram.ui.Components.AvatarDrawable; +import org.telegram.ui.PhotoViewer; public class ChatActionCell extends BaseCell implements DownloadController.FileDownloadProgressListener { @@ -489,8 +489,29 @@ public class ChatActionCell extends BaseCell implements DownloadController.FileD int dx; int dx2; int dy; + int previousLineWidth = 0; for (int a = 0; a < count; a++) { int width = findMaxWidthAroundLine(a); + int nextWidth = a < count - 1 ? findMaxWidthAroundLine(a + 1) : 0; + int w1 = 0; + int w2 = 0; + if (previousLineWidth != 0) { + int dw = width - previousLineWidth; + if (dw > 0 && dw < AndroidUtilities.dp(15) * 2) { + width = w1 = previousLineWidth + AndroidUtilities.dp(15) * 2; + } + + } + if (nextWidth != 0) { + int dw = width - nextWidth; + if (dw > 0 && dw < AndroidUtilities.dp(15) * 2) { + width = w2 = nextWidth + AndroidUtilities.dp(15) * 2; + } + } + if (w1 != 0 && w2 != 0) { + width = Math.max(w1, w2); + } + previousLineWidth = width; int x = (getMeasuredWidth() - width - cornerRest) / 2; width += cornerRest; int lineBottom = textLayout.getLineBottom(a); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Cells/ChatMessageCell.java b/TMessagesProj/src/main/java/org/telegram/ui/Cells/ChatMessageCell.java index 61fbd4505..4b6e716aa 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Cells/ChatMessageCell.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Cells/ChatMessageCell.java @@ -3069,7 +3069,7 @@ public class ChatMessageCell extends BaseCell implements SeekBar.SeekBarDelegate createSelectorDrawable(0); } photoImage.setAlpha(1.0f); - if (messageChanged || dataChanged) { + if ((messageChanged || dataChanged) && !pollUnvoteInProgress) { pollButtons.clear(); } int captionNewLine = 0; @@ -8370,7 +8370,7 @@ public class ChatMessageCell extends BaseCell implements SeekBar.SeekBarDelegate } else { buttonState = 2; } - } else if (documentAttachType == DOCUMENT_ATTACH_TYPE_VIDEO) { + } else if (documentAttachType == DOCUMENT_ATTACH_TYPE_VIDEO && !hasEmbed) { buttonState = 3; } else { buttonState = -1; @@ -8958,7 +8958,11 @@ public class ChatMessageCell extends BaseCell implements SeekBar.SeekBarDelegate } else if (messageObject.messageOwner.fwd_from != null && messageObject.messageOwner.fwd_from.post_author != null) { signString = messageObject.messageOwner.fwd_from.post_author.replace("\n", ""); } else if (messageObject.messageOwner.fwd_from != null && messageObject.messageOwner.fwd_from.imported) { - signString = LocaleController.formatImportedDate(messageObject.messageOwner.fwd_from.date) + " " + LocaleController.getString("ImportedMessage", R.string.ImportedMessage); + if (messageObject.messageOwner.fwd_from.date == messageObject.messageOwner.date) { + signString = LocaleController.getString("ImportedMessage", R.string.ImportedMessage); + } else { + signString = LocaleController.formatImportedDate(messageObject.messageOwner.fwd_from.date) + " " + LocaleController.getString("ImportedMessage", R.string.ImportedMessage); + } } else if (!messageObject.isOutOwner() && fromId > 0 && messageObject.messageOwner.post) { TLRPC.User signUser = MessagesController.getInstance(currentAccount).getUser(fromId); if (signUser != null) { @@ -13591,9 +13595,24 @@ public class ChatMessageCell extends BaseCell implements SeekBar.SeekBarDelegate animateMessageText = false; if (currentMessageObject.textLayoutBlocks != lastDrawingTextBlocks) { - animateMessageText = true; - animateOutTextBlocks = lastDrawingTextBlocks; - changed = true; + boolean sameText = true; + if (currentMessageObject.textLayoutBlocks != null && lastDrawingTextBlocks != null && currentMessageObject.textLayoutBlocks.size() == lastDrawingTextBlocks.size()) { + for (int i = 0; i < lastDrawingTextBlocks.size(); i++) { + String newText = currentMessageObject.textLayoutBlocks.get(i).textLayout == null ? null : currentMessageObject.textLayoutBlocks.get(i).textLayout.getText().toString(); + String oldText = lastDrawingTextBlocks.get(i).textLayout == null ? null : lastDrawingTextBlocks.get(i).textLayout.getText().toString(); + if ((newText == null && oldText != null) || (newText != null && oldText == null) || !newText.equals(oldText)) { + sameText = false; + break; + } + } + } else { + sameText = false; + } + if (!sameText) { + animateMessageText = true; + animateOutTextBlocks = lastDrawingTextBlocks; + changed = true; + } } if (edited && !lastDrawingEdited && timeLayout != null) { String editedStr = LocaleController.getString("EditedMessage", R.string.EditedMessage); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Cells/DialogCell.java b/TMessagesProj/src/main/java/org/telegram/ui/Cells/DialogCell.java index 8f8151e44..5d61729f9 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Cells/DialogCell.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Cells/DialogCell.java @@ -35,33 +35,33 @@ import android.view.animation.OvershootInterpolator; import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.ChatObject; -import org.telegram.messenger.DownloadController; -import org.telegram.messenger.FileLoader; -import org.telegram.messenger.MediaDataController; +import org.telegram.messenger.ContactsController; import org.telegram.messenger.DialogObject; -import org.telegram.messenger.ImageLocation; -import org.telegram.messenger.LocaleController; -import org.telegram.messenger.MessageObject; -import org.telegram.messenger.MessagesStorage; -import org.telegram.messenger.SharedConfig; -import org.telegram.messenger.UserObject; +import org.telegram.messenger.DownloadController; +import org.telegram.messenger.Emoji; +import org.telegram.messenger.FileLoader; import org.telegram.messenger.FileLog; +import org.telegram.messenger.ImageLocation; +import org.telegram.messenger.ImageReceiver; +import org.telegram.messenger.LocaleController; +import org.telegram.messenger.MediaDataController; +import org.telegram.messenger.MessageObject; +import org.telegram.messenger.MessagesController; +import org.telegram.messenger.MessagesStorage; +import org.telegram.messenger.R; +import org.telegram.messenger.SharedConfig; +import org.telegram.messenger.UserConfig; +import org.telegram.messenger.UserObject; import org.telegram.tgnet.ConnectionsManager; import org.telegram.tgnet.TLRPC; -import org.telegram.messenger.ContactsController; -import org.telegram.messenger.Emoji; -import org.telegram.messenger.MessagesController; -import org.telegram.messenger.R; -import org.telegram.messenger.UserConfig; -import org.telegram.messenger.ImageReceiver; import org.telegram.ui.ActionBar.Theme; -import org.telegram.ui.Components.EmptyStubSpan; -import org.telegram.ui.Components.ForegroundColorSpanThemable; import org.telegram.ui.Adapters.DialogsAdapter; -import org.telegram.ui.Components.PullForegroundDrawable; import org.telegram.ui.Components.AvatarDrawable; import org.telegram.ui.Components.CheckBox2; import org.telegram.ui.Components.CubicBezierInterpolator; +import org.telegram.ui.Components.EmptyStubSpan; +import org.telegram.ui.Components.ForegroundColorSpanThemable; +import org.telegram.ui.Components.PullForegroundDrawable; import org.telegram.ui.Components.RLottieDrawable; import org.telegram.ui.Components.StaticLayoutEx; import org.telegram.ui.Components.StatusDrawable; @@ -2709,7 +2709,7 @@ public class DialogCell extends BaseCell { } else if (chat != null) { hasCall = chat.call_active && chat.call_not_empty; if (hasCall || chatCallProgress != 0) { - float checkProgress = checkBox.isChecked() ? 1.0f - checkBox.getProgress() : 1.0f; + float checkProgress = checkBox != null && checkBox.isChecked() ? 1.0f - checkBox.getProgress() : 1.0f; int top = (int) (avatarImage.getImageY2() - AndroidUtilities.dp(useForceThreeLines || SharedConfig.useThreeLinesLayout ? 6 : 8)); int left; if (LocaleController.isRTL) { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Cells/GroupCreateUserCell.java b/TMessagesProj/src/main/java/org/telegram/ui/Cells/GroupCreateUserCell.java index 0bcec29a4..07595cb9e 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Cells/GroupCreateUserCell.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Cells/GroupCreateUserCell.java @@ -117,6 +117,11 @@ public class GroupCreateUserCell extends FrameLayout { return currentObject; } + public void setDrawDivider(boolean value) { + drawDivider = value; + invalidate(); + } + @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(MeasureSpec.makeMeasureSpec(MeasureSpec.getSize(widthMeasureSpec), MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(AndroidUtilities.dp(currentObject instanceof String ? 50 : 58), MeasureSpec.EXACTLY)); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Cells/SharedPhotoVideoCell.java b/TMessagesProj/src/main/java/org/telegram/ui/Cells/SharedPhotoVideoCell.java index 42ff187fe..1411a8102 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Cells/SharedPhotoVideoCell.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Cells/SharedPhotoVideoCell.java @@ -27,12 +27,12 @@ import android.widget.ImageView; import android.widget.TextView; import org.telegram.messenger.AndroidUtilities; +import org.telegram.messenger.ApplicationLoader; import org.telegram.messenger.DownloadController; +import org.telegram.messenger.FileLoader; import org.telegram.messenger.ImageLocation; import org.telegram.messenger.LocaleController; import org.telegram.messenger.MessageObject; -import org.telegram.messenger.ApplicationLoader; -import org.telegram.messenger.FileLoader; import org.telegram.messenger.R; import org.telegram.messenger.UserConfig; import org.telegram.tgnet.TLRPC; @@ -193,7 +193,7 @@ public class SharedPhotoVideoCell extends FrameLayout { } else if (messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaPhoto && messageObject.messageOwner.media.photo != null && !messageObject.photoThumbs.isEmpty()) { videoInfoContainer.setVisibility(INVISIBLE); TLRPC.PhotoSize currentPhotoObjectThumb = FileLoader.getClosestPhotoSizeWithSize(messageObject.photoThumbs, 50); - TLRPC.PhotoSize currentPhotoObject = FileLoader.getClosestPhotoSizeWithSize(messageObject.photoThumbs, 320, false, currentPhotoObjectThumb); + TLRPC.PhotoSize currentPhotoObject = FileLoader.getClosestPhotoSizeWithSize(messageObject.photoThumbs, 320, false, currentPhotoObjectThumb, false); if (messageObject.mediaExists || DownloadController.getInstance(currentAccount).canDownloadMedia(messageObject)) { if (currentPhotoObject == currentPhotoObjectThumb) { currentPhotoObjectThumb = null; diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Cells/TextCell.java b/TMessagesProj/src/main/java/org/telegram/ui/Cells/TextCell.java index 427156afd..e1cc21080 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Cells/TextCell.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Cells/TextCell.java @@ -80,6 +80,10 @@ public class TextCell extends FrameLayout { return textView; } + public ImageView getImageView() { + return imageView; + } + public SimpleTextView getValueTextView() { return valueTextView; } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Cells/TextSelectionHelper.java b/TMessagesProj/src/main/java/org/telegram/ui/Cells/TextSelectionHelper.java index 5268aba04..f23d3dd70 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Cells/TextSelectionHelper.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Cells/TextSelectionHelper.java @@ -131,6 +131,8 @@ public abstract class TextSelectionHelper top && y + yOffset < parentView.getMeasuredHeight()) { + if (y + yOffset > top + keyboardSize && y + yOffset < parentView.getMeasuredHeight()) { if (!layout.isRtlCharAt(selectionEnd)) { canvas.save(); canvas.translate(x, y); @@ -1093,7 +1095,7 @@ public abstract class TextSelectionHelper top && y + yOffset < parentView.getMeasuredHeight()) { + if (y + yOffset > top + keyboardSize && y + yOffset < parentView.getMeasuredHeight()) { if (!layout.isRtlCharAt(selectionStart)) { canvas.save(); canvas.translate(x - handleViewSize, y); @@ -2658,4 +2660,9 @@ public abstract class TextSelectionHelper { if (codeField != null) { for (int a = codeField.length - 1; a >= 0; a--) { @@ -1521,6 +1530,9 @@ public class ChangePhoneActivity extends BaseFragment { } } } + if (hintDrawable != null) { + hintDrawable.start(); + } }, 100); } @@ -1555,6 +1567,18 @@ public class ChangePhoneActivity extends BaseFragment { ArrayList arrayList = new ArrayList<>(); + ThemeDescription.ThemeDescriptionDelegate descriptionDelegate = () -> { + for (int i = 0; i < views.length; i++) { + if (views[i] instanceof LoginActivity.LoginActivitySmsView) { + LoginActivity.LoginActivitySmsView smsView = (LoginActivity.LoginActivitySmsView) views[i]; + if (smsView.hintDrawable != null) { + smsView.hintDrawable.setLayerColor("Bubble.**", Theme.getColor(Theme.key_chats_actionBackground)); + smsView.hintDrawable.setLayerColor("Phone.**", Theme.getColor(Theme.key_chats_actionBackground)); + } + } + } + }; + arrayList.add(new ThemeDescription(fragmentView, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_windowBackgroundWhite)); arrayList.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_actionBarDefault)); @@ -1635,6 +1659,7 @@ public class ChangePhoneActivity extends BaseFragment { arrayList.add(new ThemeDescription(smsView4.progressView, 0, new Class[]{ProgressView.class}, new String[]{"paint"}, null, null, null, Theme.key_login_progressOuter)); arrayList.add(new ThemeDescription(smsView4.blackImageView, ThemeDescription.FLAG_IMAGECOLOR, null, null, null, null, Theme.key_windowBackgroundWhiteBlackText)); arrayList.add(new ThemeDescription(smsView4.blueImageView, ThemeDescription.FLAG_IMAGECOLOR, null, null, null, null, Theme.key_chats_actionBackground)); + arrayList.add(new ThemeDescription(smsView4.blueImageView, 0, null, null, null, descriptionDelegate, Theme.key_chats_actionBackground)); return arrayList; } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ChangeUsernameActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ChangeUsernameActivity.java index 4858c9211..c4559923c 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ChangeUsernameActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ChangeUsernameActivity.java @@ -30,16 +30,16 @@ import android.widget.LinearLayout; import android.widget.TextView; import org.telegram.messenger.AndroidUtilities; +import org.telegram.messenger.ApplicationLoader; +import org.telegram.messenger.FileLog; import org.telegram.messenger.LocaleController; import org.telegram.messenger.MessagesController; import org.telegram.messenger.MessagesStorage; import org.telegram.messenger.NotificationCenter; -import org.telegram.messenger.ApplicationLoader; -import org.telegram.messenger.FileLog; import org.telegram.messenger.R; +import org.telegram.messenger.UserConfig; import org.telegram.tgnet.ConnectionsManager; import org.telegram.tgnet.TLRPC; -import org.telegram.messenger.UserConfig; import org.telegram.ui.ActionBar.ActionBar; import org.telegram.ui.ActionBar.ActionBarMenu; import org.telegram.ui.ActionBar.AlertDialog; @@ -182,8 +182,12 @@ public class ChangeUsernameActivity extends BaseFragment { @Override public void afterTextChanged(Editable editable) { - if (firstNameField.length() > 0) { - String url = "https://" + MessagesController.getInstance(currentAccount).linkPrefix + "/" + firstNameField.getText(); + String name = firstNameField.getText().toString(); + if (name.startsWith("@")) { + name = name.substring(1); + } + if (name.length() > 0) { + String url = "https://" + MessagesController.getInstance(currentAccount).linkPrefix + "/" + name; String text = LocaleController.formatString("UsernameHelpLink", R.string.UsernameHelpLink, url); int index = text.indexOf(url); SpannableStringBuilder textSpan = new SpannableStringBuilder(text); @@ -237,8 +241,11 @@ public class ChangeUsernameActivity extends BaseFragment { } } - private boolean checkUserName(final String name, boolean alert) { - if (name != null && name.length() > 0) { + private boolean checkUserName(String name, boolean alert) { + if (name != null && name.startsWith("@")) { + name = name.substring(1); + } + if (!TextUtils.isEmpty(name)) { checkTextView.setVisibility(View.VISIBLE); } else { checkTextView.setVisibility(View.GONE); @@ -323,14 +330,15 @@ public class ChangeUsernameActivity extends BaseFragment { checkTextView.setTag(Theme.key_windowBackgroundWhiteGrayText8); checkTextView.setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteGrayText8)); lastCheckName = name; + final String nameFinal = name; checkRunnable = () -> { TLRPC.TL_account_checkUsername req = new TLRPC.TL_account_checkUsername(); - req.username = name; + req.username = nameFinal; checkReqId = ConnectionsManager.getInstance(currentAccount).sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { checkReqId = 0; - if (lastCheckName != null && lastCheckName.equals(name)) { + if (lastCheckName != null && lastCheckName.equals(nameFinal)) { if (error == null && response instanceof TLRPC.TL_boolTrue) { - checkTextView.setText(LocaleController.formatString("UsernameAvailable", R.string.UsernameAvailable, name)); + checkTextView.setText(LocaleController.formatString("UsernameAvailable", R.string.UsernameAvailable, nameFinal)); checkTextView.setTag(Theme.key_windowBackgroundWhiteGreenText); checkTextView.setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteGreenText)); lastNameAvailable = true; @@ -349,7 +357,11 @@ public class ChangeUsernameActivity extends BaseFragment { } private void saveName() { - if (!checkUserName(firstNameField.getText().toString(), true)) { + String newName = firstNameField.getText().toString(); + if (newName.startsWith("@")) { + newName = newName.substring(1); + } + if (!checkUserName(newName, true)) { return; } TLRPC.User user = UserConfig.getInstance(currentAccount).getCurrentUser(); @@ -360,7 +372,6 @@ public class ChangeUsernameActivity extends BaseFragment { if (currentName == null) { currentName = ""; } - String newName = firstNameField.getText().toString(); if (currentName.equals(newName)) { finishFragment(); return; @@ -374,7 +385,7 @@ public class ChangeUsernameActivity extends BaseFragment { NotificationCenter.getInstance(currentAccount).postNotificationName(NotificationCenter.updateInterfaces, MessagesController.UPDATE_MASK_NAME); final int reqId = ConnectionsManager.getInstance(currentAccount).sendRequest(req, (response, error) -> { if (error == null) { - final TLRPC.User user1 = (TLRPC.User)response; + final TLRPC.User user1 = (TLRPC.User) response; AndroidUtilities.runOnUIThread(() -> { try { progressDialog.dismiss(); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ChannelAdminLogActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ChannelAdminLogActivity.java index 60e727e9d..6d9ddc5b1 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ChannelAdminLogActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ChannelAdminLogActivity.java @@ -94,7 +94,9 @@ import org.telegram.ui.Cells.ChatUnreadCell; import org.telegram.ui.Components.AdminLogFilterAlert; import org.telegram.ui.Components.AlertsCreator; import org.telegram.ui.Components.ChatAvatarContainer; +import org.telegram.ui.Components.ClearHistoryAlert; import org.telegram.ui.Components.EmbedBottomSheet; +import org.telegram.ui.Components.InviteLinkBottomSheet; import org.telegram.ui.Components.LayoutHelper; import org.telegram.ui.Components.PhonebookShareAlert; import org.telegram.ui.Components.PipRoundVideoView; @@ -107,6 +109,7 @@ import org.telegram.ui.Components.URLSpanMono; import org.telegram.ui.Components.URLSpanNoUnderline; import org.telegram.ui.Components.URLSpanReplacement; import org.telegram.ui.Components.URLSpanUserMention; +import org.telegram.ui.Components.UndoView; import java.io.BufferedWriter; import java.io.File; @@ -130,6 +133,7 @@ public class ChannelAdminLogActivity extends BaseFragment implements Notificatio private View progressView2; private RadialProgressView progressBar; private RecyclerListView chatListView; + private UndoView undoView; private LinearLayoutManager chatLayoutManager; private ChatActivityAdapter chatAdapter; private TextView bottomOverlayChatText; @@ -992,6 +996,10 @@ public class ChannelAdminLogActivity extends BaseFragment implements Notificatio chatListView.setEmptyView(emptyViewContainer); } + undoView = new UndoView(context); + undoView.setAdditionalTranslationY(AndroidUtilities.dp(51)); + contentView.addView(undoView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.BOTTOM | Gravity.LEFT, 8, 0, 8, 8)); + updateEmptyPlaceholder(); return fragmentView; @@ -1032,6 +1040,21 @@ public class ChannelAdminLogActivity extends BaseFragment implements Notificatio showDialog(new StickersAlert(getParentActivity(), ChannelAdminLogActivity.this, stickerSet, null, null)); return; } + } else if (selectedObject.currentEvent != null && selectedObject.currentEvent.action instanceof TLRPC.TL_channelAdminLogEventActionChangeHistoryTTL) { + if (ChatObject.canUserDoAdminAction(currentChat, ChatObject.ACTION_DELETE_MESSAGES)) { + ClearHistoryAlert alert = new ClearHistoryAlert(getParentActivity(), null, currentChat, false); + alert.setDelegate(new ClearHistoryAlert.ClearHistoryAlertDelegate() { + @Override + public void onAutoDeleteHistory(int ttl, int action) { + getMessagesController().setDialogHistoryTTL(-currentChat.id, ttl); + TLRPC.ChatFull chatInfo = getMessagesController().getChatFull(currentChat.id); + if (chatInfo != null) { + undoView.showWithAction(-currentChat.id, action, null, chatInfo.ttl_period, null, null); + } + } + }); + showDialog(alert); + } } } else if (type == 3) { if (selectedObject.messageOwner.media instanceof TLRPC.TL_messageMediaWebPage && MessageObject.isNewGifDocument(selectedObject.messageOwner.media.webpage.document)) { @@ -1752,6 +1775,9 @@ public class ChannelAdminLogActivity extends BaseFragment implements Notificatio if (contentView != null) { contentView.onPause(); } + if (undoView != null) { + undoView.hide(true, 0); + } paused = true; wasPaused = true; if (AvatarPreviewer.hasVisibleInstance()) { @@ -1759,6 +1785,13 @@ public class ChannelAdminLogActivity extends BaseFragment implements Notificatio } } + @Override + protected void onBecomeFullyHidden() { + if (undoView != null) { + undoView.hide(true, 0); + } + } + public void openVCard(TLRPC.User user, String vcard, String first_name, String last_name) { try { File f = AndroidUtilities.getSharingDirectory(); @@ -2230,6 +2263,12 @@ public class ChannelAdminLogActivity extends BaseFragment implements Notificatio } } + public void needOpenInviteLink(TLRPC.TL_chatInviteExported invite) { + TLRPC.ChatFull chatInfo = getMessagesController().getChatFull(currentChat.id); + InviteLinkBottomSheet inviteLinkBottomSheet = new InviteLinkBottomSheet(contentView.getContext(), invite, chatInfo, null, ChannelAdminLogActivity.this, chatInfo.id, false, ChatObject.isChannel(currentChat)); + inviteLinkBottomSheet.show(); + } + @Override public void didPressReplyMessage(ChatActionCell cell, int id) { @@ -2650,6 +2689,14 @@ public class ChannelAdminLogActivity extends BaseFragment implements Notificatio themeDescriptions.add(new ThemeDescription(avatarContainer != null ? avatarContainer.getTimeItem() : null, 0, null, null, null, null, Theme.key_chat_secretTimerBackground)); themeDescriptions.add(new ThemeDescription(avatarContainer != null ? avatarContainer.getTimeItem() : null, 0, null, null, null, null, Theme.key_chat_secretTimerText)); + themeDescriptions.add(new ThemeDescription(undoView, ThemeDescription.FLAG_BACKGROUNDFILTER, null, null, null, null, Theme.key_undo_background)); + themeDescriptions.add(new ThemeDescription(undoView, 0, new Class[]{UndoView.class}, new String[]{"undoImageView"}, null, null, null, Theme.key_undo_cancelColor)); + themeDescriptions.add(new ThemeDescription(undoView, 0, new Class[]{UndoView.class}, new String[]{"undoTextView"}, null, null, null, Theme.key_undo_cancelColor)); + themeDescriptions.add(new ThemeDescription(undoView, 0, new Class[]{UndoView.class}, new String[]{"infoTextView"}, null, null, null, Theme.key_undo_infoColor)); + themeDescriptions.add(new ThemeDescription(undoView, 0, new Class[]{UndoView.class}, new String[]{"textPaint"}, null, null, null, Theme.key_undo_infoColor)); + themeDescriptions.add(new ThemeDescription(undoView, 0, new Class[]{UndoView.class}, new String[]{"progressPaint"}, null, null, null, Theme.key_undo_infoColor)); + themeDescriptions.add(new ThemeDescription(undoView, ThemeDescription.FLAG_IMAGECOLOR, new Class[]{UndoView.class}, new String[]{"leftImageView"}, null, null, null, Theme.key_undo_infoColor)); + return themeDescriptions; } } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ChannelCreateActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ChannelCreateActivity.java index f92603a8c..8e19753ad 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ChannelCreateActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ChannelCreateActivity.java @@ -17,8 +17,6 @@ import android.content.Context; import android.content.Intent; import android.graphics.Canvas; import android.graphics.Paint; -import android.graphics.PorterDuff; -import android.graphics.PorterDuffColorFilter; import android.os.Bundle; import android.text.Editable; import android.text.InputFilter; @@ -62,7 +60,6 @@ import org.telegram.ui.Cells.TextInfoPrivacyCell; import org.telegram.ui.Components.AvatarDrawable; import org.telegram.ui.Components.BackupImageView; import org.telegram.ui.Components.EditTextBoldCursor; -import org.telegram.ui.Components.BulletinFactory; import org.telegram.ui.Components.EditTextEmoji; import org.telegram.ui.Components.ImageUpdater; import org.telegram.ui.Components.LayoutHelper; @@ -718,8 +715,9 @@ public class ChannelCreateActivity extends BaseFragment implements NotificationC privateContainer.setOrientation(LinearLayout.VERTICAL); linkContainer.addView(privateContainer, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); - permanentLinkView = new LinkActionView(context, this, null, chatId, true); - permanentLinkView.showOptions(false); + permanentLinkView = new LinkActionView(context, this, null, chatId, true, ChatObject.isChannel(getMessagesController().getChat(chatId))); + //permanentLinkView.showOptions(false); + permanentLinkView.showRevokeOption(true); permanentLinkView.setUsers(0, null); privateContainer.addView(permanentLinkView); @@ -755,19 +753,15 @@ public class ChannelCreateActivity extends BaseFragment implements NotificationC if (loadingInvite || invite != null) { return; } + TLRPC.ChatFull chatFull = getMessagesController().getChatFull(chatId); + if (chatFull != null) { + invite = chatFull.exported_invite; + } + if (invite != null) { + return; + } loadingInvite = true; - TLRPC.TL_messages_exportChatInvite req = new TLRPC.TL_messages_exportChatInvite(); - req.peer = getMessagesController().getInputPeer(-chatId); - final int reqId = getConnectionsManager().sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { - if (error == null) { - invite = (TLRPC.TL_chatInviteExported) response; - } - loadingInvite = false; - permanentLinkView.setLink(invite != null ? invite.link : null); - })); - getConnectionsManager().bindRequestToGuid(reqId, classGuid); - - /*TLRPC.TL_messages_getExportedChatInvites req = new TLRPC.TL_messages_getExportedChatInvites(); TODO layer 124 + TLRPC.TL_messages_getExportedChatInvites req = new TLRPC.TL_messages_getExportedChatInvites(); req.peer = getMessagesController().getInputPeer(-chatId); req.admin_id = getMessagesController().getInputUser(getUserConfig().getCurrentUser()); req.limit = 1; @@ -779,7 +773,7 @@ public class ChannelCreateActivity extends BaseFragment implements NotificationC } loadingInvite = false; permanentLinkView.setLink(invite != null ? invite.link : null); - }));*/ + })); } private void updatePrivatePublic() { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ChatActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ChatActivity.java index 38d03e23e..0cc63f9a5 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ChatActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ChatActivity.java @@ -183,6 +183,7 @@ import org.telegram.ui.Components.ChatAvatarContainer; import org.telegram.ui.Components.ChatBigEmptyView; import org.telegram.ui.Components.ChatGreetingsView; import org.telegram.ui.Components.ChecksHintView; +import org.telegram.ui.Components.ClearHistoryAlert; import org.telegram.ui.Components.ClippingImageView; import org.telegram.ui.Components.CombinedDrawable; import org.telegram.ui.Components.CorrectlyMeasuringTextView; @@ -195,6 +196,7 @@ import org.telegram.ui.Components.EmojiView; import org.telegram.ui.Components.ExtendedGridLayoutManager; import org.telegram.ui.Components.FireworksOverlay; import org.telegram.ui.Components.FragmentContextView; +import org.telegram.ui.Components.GigagroupConvertAlert; import org.telegram.ui.Components.HintView; import org.telegram.ui.Components.ImportingAlert; import org.telegram.ui.Components.InstantCameraView; @@ -210,6 +212,8 @@ import org.telegram.ui.Components.RLottieDrawable; import org.telegram.ui.Components.RadialProgressView; import org.telegram.ui.Components.RecyclerAnimationScrollHelper; import org.telegram.ui.Components.RecyclerListView; +import org.telegram.ui.Components.ReportAlert; +import org.telegram.ui.Components.SearchCounterView; import org.telegram.ui.Components.ShareAlert; import org.telegram.ui.Components.Size; import org.telegram.ui.Components.SizeNotifierFrameLayout; @@ -293,6 +297,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not private GridLayoutManagerFixed chatLayoutManager; public ChatActivityAdapter chatAdapter; private UnreadCounterTextView bottomOverlayChatText; + private ImageView bottomOverlayImage; private RadialProgressView bottomOverlayProgress; private AnimatorSet bottomOverlayAnimation; private FrameLayout bottomOverlayChat; @@ -350,6 +355,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not private boolean searchAsListHintShown; private HintView slowModeHint; private HintView pollHintView; + private HintView timerHintView; private ChatMessageCell pollHintCell; private int pollHintX; private int pollHintY; @@ -386,7 +392,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not private ImageView searchUserButton; private ImageView searchUpButton; private ImageView searchDownButton; - private SimpleTextView searchCountText; + private SearchCounterView searchCountText; private ChatActionCell floatingDateView; private ChatActionCell infoTopView; private int hideDateDelay = 500; @@ -421,6 +427,8 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not private int chatMode; private int scheduledMessagesCount = -1; + private int reportType = -1; + private MessageObject threadMessageObject; private boolean threadMessageVisible = true; private ArrayList threadMessageObjects; @@ -639,6 +647,24 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not private AnimatorSet scrimAnimatorSet; private ActionBarPopupWindow scrimPopupWindow; private ActionBarMenuSubItem[] scrimPopupWindowItems; + private ActionBarMenuSubItem menuDeleteItem; + private Runnable updateDeleteItemRunnable = new Runnable() { + @Override + public void run() { + if (selectedObject == null || menuDeleteItem == null) { + return; + } + int remaining = Math.max(0, selectedObject.messageOwner.ttl_period - (getConnectionsManager().getCurrentTime() - selectedObject.messageOwner.date)); + String ramainingStr; + if (remaining < 24 * 60 * 60) { + ramainingStr = AndroidUtilities.formatDuration(remaining, false); + } else { + ramainingStr = LocaleController.formatPluralString("Days", Math.round(remaining / (24 * 60 * 60.0f))); + } + menuDeleteItem.setSubtext(LocaleController.formatString("AutoDeleteIn", R.string.AutoDeleteIn, ramainingStr)); + AndroidUtilities.runOnUIThread(updateDeleteItemRunnable, 1000); + } + }; private ChatActivityDelegate chatActivityDelegate; private RecyclerAnimationScrollHelper chatScrollHelper; @@ -684,6 +710,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not private TLRPC.Document preloadedGreetingsSticker; private boolean forceHistoryEmpty; private float bottomPanelTranslationY; + private float bottomPanelTranslationYReverse; private boolean invalidateChatListViewTopPadding; private long activityResumeTime; @@ -735,6 +762,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not }; private int chatEmojiViewPadding; private int fixedKeyboardHeight = -1; + private Runnable cancelFixedPositionRunnable; private boolean invalidateMessagesVisiblePart; private boolean scrollByTouch; @@ -747,13 +775,21 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } private interface ChatActivityDelegate { - void openReplyMessage(int mid); + default void openReplyMessage(int mid) { - void openSearch(String text); + } + + default void openSearch(String text) { + + } default void onUnpin(boolean all, boolean hide) { } + + default void onReport() { + + } } private class UnreadCounterTextView extends View { @@ -1045,6 +1081,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not private final static int edit = 23; private final static int add_shortcut = 24; private final static int save_to = 25; + private final static int auto_delete_timer = 26; private final static int translate = 101; private final static int show_pinned = 102; @@ -1088,7 +1125,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not return false; } wasManualScroll = true; - if (!actionBar.isActionModeShowed()) { + if (!actionBar.isActionModeShowed() && reportType < 0) { createMenu(view, false, true, x, y); } else { boolean outside = false; @@ -1115,7 +1152,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not @Override public void onItemClick(View view, int position, float x, float y) { wasManualScroll = true; - if (actionBar.isActionModeShowed()) { + if (actionBar.isActionModeShowed() || reportType >= 0) { boolean outside = false; if (view instanceof ChatMessageCell) { if (textSelectionHelper.isSelected(((ChatMessageCell) view).getMessageObject())) { @@ -1165,6 +1202,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not inlineReturn = arguments.getLong("inline_return", 0); String inlineQuery = arguments.getString("inline_query"); startLoadFromMessageId = arguments.getInt("message_id", 0); + reportType = arguments.getInt("report", -1); boolean historyPreloaded = arguments.getBoolean("historyPreloaded", false); if (highlightMessageId != 0 && highlightMessageId != Integer.MAX_VALUE) { startLoadFromMessageId = highlightMessageId; @@ -1537,7 +1575,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not undoView.hide(true, 0); } if (pinBulletin != null) { - pinBulletin.hide(false); + pinBulletin.hide(false, 0); } if (topUndoView != null) { topUndoView.hide(true, 0); @@ -1728,6 +1766,14 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not public View createView(Context context) { textSelectionHelper = new TextSelectionHelper.ChatListTextSelectionHelper(); + if (reportType >= 0) { + actionBar.setBackgroundColor(Theme.getColor(Theme.key_actionBarActionModeDefault)); + actionBar.setItemsColor(Theme.getColor(Theme.key_actionBarActionModeDefaultIcon), false); + actionBar.setItemsBackgroundColor(Theme.getColor(Theme.key_actionBarActionModeDefaultSelector), false); + actionBar.setTitleColor(Theme.getColor(Theme.key_actionBarActionModeDefaultIcon)); + actionBar.setSubtitleColor(Theme.getColor(Theme.key_actionBarActionModeDefaultIcon)); + } + if (chatMessageCellsCache.isEmpty()) { for (int a = 0; a < 15; a++) { chatMessageCellsCache.add(new ChatMessageCell(context)); @@ -1751,6 +1797,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not emojiButtonRed = null; gifHintTextView = null; pollHintView = null; + timerHintView = null; videoPlayerContainer = null; voiceHintTextView = null; blurredView = null; @@ -1787,7 +1834,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (inPreviewMode) { actionBar.setBackButtonDrawable(null); } else { - actionBar.setBackButtonDrawable(new BackDrawable(false)); + actionBar.setBackButtonDrawable(new BackDrawable(reportType >= 0)); } actionBar.setActionBarMenuOnItemClick(new ActionBar.ActionBarMenuOnItemClick() { @Override @@ -1839,6 +1886,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } if (str.length() != 0) { AndroidUtilities.addToClipboard(str); + undoView.showWithAction(0, UndoView.ACTION_TEXT_COPIED, null); } clearSelectionMode(); } else if (id == translate) { @@ -1957,10 +2005,29 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (button != null) { button.setTextColor(Theme.getColor(Theme.key_dialogTextRed2)); } - } else if (id == clear_history || id == delete_chat) { + } else if (id == clear_history || id == delete_chat || id == auto_delete_timer) { if (getParentActivity() == null) { return; } + if (id == auto_delete_timer || id == clear_history && currentEncryptedChat == null && (currentUser != null && !UserObject.isUserSelf(currentUser) && !UserObject.isDeleted(currentUser) || ChatObject.canUserDoAdminAction(currentChat, ChatObject.ACTION_DELETE_MESSAGES) && (!ChatObject.isChannel(currentChat) || currentChat.megagroup && TextUtils.isEmpty(currentChat.username)))) { + ClearHistoryAlert alert = new ClearHistoryAlert(getParentActivity(), currentUser, currentChat, id != auto_delete_timer); + alert.setDelegate(new ClearHistoryAlert.ClearHistoryAlertDelegate() { + @Override + public void onClearHistory(boolean revoke) { + performHistoryClear(revoke); + } + + @Override + public void onAutoDeleteHistory(int ttl, int action) { + getMessagesController().setDialogHistoryTTL(dialog_id, ttl); + if (userInfo != null || chatInfo != null) { + undoView.showWithAction(dialog_id, action, currentUser, userInfo != null ? userInfo.ttl_period : chatInfo.ttl_period, null, null); + } + } + }); + showDialog(alert); + return; + } final boolean isChat = (int) dialog_id < 0 && (int) (dialog_id >> 32) != 1; AlertsCreator.createClearOrDeleteDialogAlert(ChatActivity.this, id == clear_history, currentChat, currentUser, currentEncryptedChat != null, true, (param) -> { @@ -1973,27 +2040,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not finishFragment(); getNotificationCenter().postNotificationName(NotificationCenter.needDeleteDialog, dialog_id, currentUser, currentChat, param); } else { - clearingHistory = true; - undoView.showWithAction(dialog_id, UndoView.ACTION_CLEAR, () -> { - if (!pinnedMessageIds.isEmpty()) { - SharedPreferences preferences = MessagesController.getNotificationsSettings(currentAccount); - preferences.edit().putInt("pin_" + dialog_id, pinnedMessageIds.get(0)).commit(); - pinnedMessageIds.clear(); - pinnedMessageObjects.clear(); - currentPinnedMessageId = 0; - loadedPinnedMessagesCount = 0; - totalPinnedMessagesCount = 0; - updatePinnedMessageView(true); - } - getMessagesController().deleteDialog(dialog_id, 1, param); - clearingHistory = false; - clearHistory(false); - chatAdapter.notifyDataSetChanged(); - }, () -> { - clearingHistory = false; - chatAdapter.notifyDataSetChanged(); - }); - chatAdapter.notifyDataSetChanged(); + performHistoryClear(param); } } }); @@ -2143,11 +2190,24 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (inPreviewMode || inBubbleMode) { avatarContainer.setOccupyStatusBar(false); } - actionBar.addView(avatarContainer, 0, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.MATCH_PARENT, Gravity.TOP | Gravity.LEFT, !inPreviewMode ? 56 : (chatMode == MODE_PINNED ? 10 : 0), 0, 40, 0)); + if (reportType >= 0) { + if (reportType == 0) { + actionBar.setTitle(LocaleController.getString("ReportChatSpam", R.string.ReportChatSpam)); + } else if (reportType == 2) { + actionBar.setTitle(LocaleController.getString("ReportChatViolence", R.string.ReportChatViolence)); + } else if (reportType == 3) { + actionBar.setTitle(LocaleController.getString("ReportChatChild", R.string.ReportChatChild)); + } else if (reportType == 4) { + actionBar.setTitle(LocaleController.getString("ReportChatPornography", R.string.ReportChatPornography)); + } + actionBar.setSubtitle(LocaleController.getString("ReportSelectMessages", R.string.ReportSelectMessages)); + } else { + actionBar.addView(avatarContainer, 0, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.MATCH_PARENT, Gravity.TOP | Gravity.LEFT, !inPreviewMode ? 56 : (chatMode == MODE_PINNED ? 10 : 0), 0, 40, 0)); + } ActionBarMenu menu = actionBar.createMenu(); - if (currentEncryptedChat == null && chatMode == 0) { + if (currentEncryptedChat == null && chatMode == 0 && reportType < 0) { searchItem = menu.addItem(0, R.drawable.ic_ab_search).setIsSearchField(true).setActionBarMenuItemSearchListener(new ActionBarMenuItem.ActionBarMenuItemSearchListener() { boolean searchWas; @@ -2168,7 +2228,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not searchUserButton.setVisibility(View.VISIBLE); } if (searchingForUser) { - mentionsAdapter.searchUsernameOrHashtag(null, 0, null, false); + mentionsAdapter.searchUsernameOrHashtag(null, 0, null, false, true); searchingForUser = false; } mentionLayoutManager.setReverseLayout(false); @@ -2231,11 +2291,13 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (!openSearchKeyboard) { return; } + saveKeyboardPositionBeforeTransition(); AndroidUtilities.requestAdjustResize(getParentActivity(), classGuid); AndroidUtilities.runOnUIThread(() -> { searchWas = false; searchItem.getSearchField().requestFocus(); AndroidUtilities.showKeyboard(searchItem.getSearchField()); + removeKeyboardPositionBeforeTransition(); }, 300); } @@ -2250,7 +2312,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not public void onTextChanged(EditText editText) { showMessagesSearchListView(false); if (searchingForUser) { - mentionsAdapter.searchUsernameOrHashtag("@" + editText.getText().toString(), 0, messages, true); + mentionsAdapter.searchUsernameOrHashtag("@" + editText.getText().toString(), 0, messages, true, true); } else if (searchingUserMessages == null && searchingChatMessages == null && searchUserButton != null && TextUtils.equals(editText.getText(), LocaleController.getString("SearchFrom", R.string.SearchFrom))) { searchUserButton.callOnClick(); } @@ -2262,7 +2324,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not searchUserButton.callOnClick(); } else { if (searchingForUser) { - mentionsAdapter.searchUsernameOrHashtag(null, 0, null, false); + mentionsAdapter.searchUsernameOrHashtag(null, 0, null, false, true); searchingForUser = false; searchItem.setSearchFieldText("", true); } @@ -2286,7 +2348,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not searchItemVisible = false; } - if (chatMode == 0 && threadMessageId == 0 && !UserObject.isReplyUser(currentUser)) { + if (chatMode == 0 && threadMessageId == 0 && !UserObject.isReplyUser(currentUser) && reportType < 0) { headerItem = menu.addItem(0, R.drawable.ic_ab_other); headerItem.setContentDescription(LocaleController.getString("AccDescrMoreOptions", R.string.AccDescrMoreOptions)); if (currentUser != null) { @@ -2356,7 +2418,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (allowShowPinned) { headerItem.addSubItem(show_pinned, R.drawable.deproko_baseline_pin_24, LocaleController.getString("PinnedMessage", R.string.PinnedMessage)); } - if (currentChat != null && !currentChat.creator) { + if (currentChat != null && !currentChat.creator && !ChatObject.hasAdminRights(currentChat)) { headerItem.addSubItem(report, R.drawable.baseline_report_24, LocaleController.getString("ReportChat", R.string.ReportChat)); } @@ -2381,6 +2443,8 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } if (!ChatObject.isChannel(currentChat) || currentChat.megagroup && TextUtils.isEmpty(currentChat.username)) { headerItem.addSubItem(clear_history, R.drawable.baseline_delete_sweep_24, LocaleController.getString("ClearHistory", R.string.ClearHistory)); + } else if (ChatObject.canUserDoAdminAction(currentChat, ChatObject.ACTION_DELETE_MESSAGES)) { + headerItem.addSubItem(auto_delete_timer, R.drawable.msg_timer, LocaleController.getString("AutoDeleteSetTimer", R.string.AutoDeleteSetTimer)); } if (currentUser == null || !currentUser.self) { muteItem = headerItem.addSubItem(mute, R.drawable.baseline_volume_off_24_white, null); @@ -2424,7 +2488,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not avatarContainer.updateSubtitle(); updateTitleIcons(); - if (chatMode == 0 && !isThreadChat()) { + if (chatMode == 0 && !isThreadChat() && reportType < 0) { attachItem = menu.addItem(chat_menu_attach, R.drawable.ic_ab_other).setOverrideMenuClick(true).setAllowCloseAnimation(false); attachItem.setContentDescription(LocaleController.getString("AccDescrAttachButton", R.string.AccDescrAttachButton)); attachItem.setVisibility(View.GONE); @@ -2483,7 +2547,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not actionModeOtherItem.setSubItemVisibility(star, selectedMessagesCanStarIds[0].size() + selectedMessagesCanStarIds[1].size() != 0); - checkActionBarMenu(); + checkActionBarMenu(false); scrimPaint = new Paint() { @Override @@ -2510,7 +2574,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not AdjustPanLayoutHelper adjustPanLayoutHelper = new AdjustPanLayoutHelper(this) { @Override - protected void onTransitionStart(boolean keyboardVisible) { + protected void onTransitionStart(boolean keyboardVisible, int contentHeight) { wasManualScroll = true; if (chatActivityEnterView != null) { chatActivityEnterView.onAdjustPanTransitionStart(keyboardVisible); @@ -3049,6 +3113,16 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not mentionListViewIgnoreLayout = false; child.measure(MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(layoutParams.height, MeasureSpec.EXACTLY)); } + } else if (child == textSelectionHelper.getOverlayView(context)) { + int contentWidthSpec = MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY); + int h = heightSize; + if (keyboardSize > AndroidUtilities.dp(20) && getLayoutParams().height < 0) { + h += keyboardSize; + textSelectionHelper.setKeyboardSize(keyboardSize); + } else { + textSelectionHelper.setKeyboardSize(0); + } + child.measure(contentWidthSpec, MeasureSpec.makeMeasureSpec(h, MeasureSpec.EXACTLY)); } else { measureChildWithMargins(child, widthMeasureSpec, 0, heightMeasureSpec, 0); } @@ -3414,7 +3488,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not return false; } boolean result = super.onInterceptTouchEvent(e); - if (actionBar.isActionModeShowed()) { + if (actionBar.isActionModeShowed() || reportType >= 0) { return result; } processTouchEvent(e); @@ -3579,7 +3653,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not return false; } boolean result = super.onTouchEvent(e); - if (actionBar.isActionModeShowed()) { + if (actionBar.isActionModeShowed() || reportType >= 0) { return result; } processTouchEvent(e); @@ -4782,7 +4856,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not @Override public boolean onInterceptTouchEvent(MotionEvent ev) { - if (getAlpha() == 0 || actionBar.isActionModeShowed()) { + if (getAlpha() == 0 || actionBar.isActionModeShowed() || reportType >= 0) { return false; } return super.onInterceptTouchEvent(ev); @@ -4790,7 +4864,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not @Override public boolean onTouchEvent(MotionEvent event) { - if (getAlpha() == 0 || actionBar.isActionModeShowed()) { + if (getAlpha() == 0 || actionBar.isActionModeShowed() || reportType >= 0) { return false; } return super.onTouchEvent(event); @@ -4817,7 +4891,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not floatingDateView.setImportantForAccessibility(View.IMPORTANT_FOR_ACCESSIBILITY_NO); contentView.addView(floatingDateView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.TOP | Gravity.CENTER_HORIZONTAL, 0, 4, 0, 0)); floatingDateView.setOnClickListener(view -> { - if (floatingDateView.getAlpha() == 0 || actionBar.isActionModeShowed()) { + if (floatingDateView.getAlpha() == 0 || actionBar.isActionModeShowed() || reportType >= 0) { return; } Calendar calendar = Calendar.getInstance(); @@ -5437,7 +5511,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not int bottom = top + Theme.chat_composeShadowDrawable.getIntrinsicHeight(); Theme.chat_composeShadowDrawable.setBounds(0, top, getMeasuredWidth(), bottom); Theme.chat_composeShadowDrawable.draw(canvas); - canvas.drawRect(0, bottom, getMeasuredWidth(), getMeasuredHeight(), Theme.chat_composeBackgroundPaint); + canvas.drawRect(0, bottom, getMeasuredWidth(), bottomPanelTranslationYReverse + getMeasuredHeight(), Theme.chat_composeBackgroundPaint); } } @@ -5664,7 +5738,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } else { mentionListView.setLayoutManager(mentionLayoutManager); } - if (show && bottomOverlay.getVisibility() == View.VISIBLE) { + if (show && bottomOverlay.getVisibility() == View.VISIBLE && !searchingForUser) { show = false; } if (show) { @@ -6120,7 +6194,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not @Override public void checkAnimation() { - if (actionBar.isActionModeShowed()) { + if (actionBar.isActionModeShowed() || reportType >= 0) { if (messageEditTextAnimator != null) { messageEditTextAnimator.cancel(); } @@ -6324,7 +6398,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not stickersAdapter.loadStikersForEmoji(text, currentChat != null && !ChatObject.canSendStickers(currentChat) || chatActivityEnterView.isEditingMessage()); } if (mentionsAdapter != null) { - mentionsAdapter.searchUsernameOrHashtag(text.toString(), chatActivityEnterView.getCursorPosition(), messages, false); + mentionsAdapter.searchUsernameOrHashtag(text.toString(), chatActivityEnterView.getCursorPosition(), messages, false, false); } if (waitingForCharaterEnterRunnable != null) { AndroidUtilities.cancelRunOnUIThread(waitingForCharaterEnterRunnable); @@ -6548,6 +6622,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not wasManualScroll = true; } bottomPanelTranslationY = chatActivityEnterView.pannelAniamationInProgress() ? chatActivityEnterView.getEmojiPadding() - translation : 0; + bottomPanelTranslationYReverse = chatActivityEnterView.pannelAniamationInProgress() ? translation : 0; chatActivityEnterView.setTranslationY(translation); translation += chatActivityEnterView.getTopViewTranslation(); @@ -6984,10 +7059,10 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not }); searchCalendarButton.setContentDescription(LocaleController.getString("JumpToDate", R.string.JumpToDate)); - searchCountText = new SimpleTextView(context); - searchCountText.setTextColor(Theme.getColor(Theme.key_chat_searchPanelText)); - searchCountText.setTextSize(15); - searchCountText.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); + searchCountText = new SearchCounterView(context); +// searchCountText.setTextColor(Theme.getColor(Theme.key_chat_searchPanelText)); +// searchCountText.setTextSize(15); +// searchCountText.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); searchCountText.setGravity(Gravity.LEFT); searchContainer.addView(searchCountText, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER_VERTICAL, 0, 0, 108, 0)); @@ -7046,7 +7121,21 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (getParentActivity() == null) { return; } - if (chatMode == MODE_PINNED) { + if (reportType >= 0) { + showDialog(new ReportAlert(getParentActivity(), reportType) { + @Override + protected void onSend(int type, String message) { + ArrayList ids = new ArrayList<>(); + for (int b = 0; b < selectedMessagesIds[0].size(); b++) { + ids.add(selectedMessagesIds[0].keyAt(b)); + } + TLRPC.InputPeer peer = currentUser != null ? MessagesController.getInputPeer(currentUser) : MessagesController.getInputPeer(currentChat); + AlertsCreator.sendReport(peer, reportType, message, ids); + finishFragment(); + chatActivityDelegate.onReport(); + } + }); + } else if (chatMode == MODE_PINNED) { finishFragment(); chatActivityDelegate.onUnpin(true, bottomOverlayChatText.getTag() == null); } else if (currentUser != null && userBlocked) { @@ -7116,6 +7205,18 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not bottomOverlayProgress.setAlpha(1.0f); bottomOverlayChat.addView(bottomOverlayProgress, LayoutHelper.createFrame(30, 30, Gravity.CENTER)); + bottomOverlayImage = new ImageView(context); + int color = Theme.getColor(Theme.key_chat_fieldOverlayText); + bottomOverlayImage.setImageResource(R.drawable.log_info); + bottomOverlayImage.setColorFilter(new PorterDuffColorFilter(color, PorterDuff.Mode.MULTIPLY)); + bottomOverlayImage.setScaleType(ImageView.ScaleType.CENTER); + if (Build.VERSION.SDK_INT >= 21) { + bottomOverlayImage.setBackgroundDrawable(Theme.createSelectorDrawable(Color.argb(24, Color.red(color), Color.green(color), Color.blue(color)), 1)); + } + bottomOverlayChat.addView(bottomOverlayImage, LayoutHelper.createFrame(48, 48, Gravity.RIGHT | Gravity.TOP, 3, 1.5f, 0, 0)); + bottomOverlayImage.setContentDescription(LocaleController.getString("SettingsHelp", R.string.SettingsHelp)); + bottomOverlayImage.setOnClickListener(v -> undoView.showWithAction(dialog_id, UndoView.ACTION_TEXT_INFO, LocaleController.getString("BroadcastGroupInfo", R.string.BroadcastGroupInfo))); + replyButton = new TextView(context); replyButton.setText(LocaleController.getString("Reply", R.string.Reply)); replyButton.setGravity(Gravity.CENTER_VERTICAL); @@ -7233,6 +7334,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (actionBar != null && actionBar.isActionModeShowed()) { clearSelectionMode(); } + undoView.showWithAction(0, UndoView.ACTION_TEXT_COPIED, null); } }); @@ -7297,7 +7399,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not Spannable spannable = new SpannableString(from + " " + name); spannable.setSpan(new ForegroundColorSpan(Theme.getColor(Theme.key_actionBarDefaultSubtitle)), from.length() + 1, spannable.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); searchItem.setSearchFieldCaption(spannable); - mentionsAdapter.searchUsernameOrHashtag(null, 0, null, false); + mentionsAdapter.searchUsernameOrHashtag(null, 0, null, false, true); searchItem.setSearchFieldHint(null); searchItem.clearSearchText(); getMediaDataController().searchMessagesInChat("", dialog_id, mergeDialogId, classGuid, 0, threadMessageId, searchingUserMessages, searchingChatMessages); @@ -7715,12 +7817,14 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (topChatPanelView != null) { topChatPanelView.setTranslationY(contentPanTranslation + contentPaddingTop + topChatPanelViewOffset); } - if (mentionListView != null && mentionLayoutManager != null) { + if (mentionListView != null && mentionLayoutManager != null && mentionsAdapter != null && !mentionsAdapter.isBotCommands()) { if (mentionLayoutManager.getReverseLayout()) { mentionListView.setTranslationY(contentPanTranslation + contentPaddingTop); } else { mentionListView.setTranslationY(contentPanTranslation); } + } else if (mentionListView != null) { + mentionListView.setTranslationY(bottomPanelTranslationYReverse); } if (alertView != null && alertView.getVisibility() == View.VISIBLE) { @@ -8227,6 +8331,30 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not NotificationCenter.getInstance(currentAccount).doOnIdle(runnable); } + public void performHistoryClear(boolean revoke) { + clearingHistory = true; + undoView.showWithAction(dialog_id, UndoView.ACTION_CLEAR, () -> { + if (!pinnedMessageIds.isEmpty()) { + SharedPreferences preferences = MessagesController.getNotificationsSettings(currentAccount); + preferences.edit().putInt("pin_" + dialog_id, pinnedMessageIds.get(0)).commit(); + pinnedMessageIds.clear(); + pinnedMessageObjects.clear(); + currentPinnedMessageId = 0; + loadedPinnedMessagesCount = 0; + totalPinnedMessagesCount = 0; + updatePinnedMessageView(true); + } + getMessagesController().deleteDialog(dialog_id, 1, revoke); + clearingHistory = false; + clearHistory(false); + chatAdapter.notifyDataSetChanged(); + }, () -> { + clearingHistory = false; + chatAdapter.notifyDataSetChanged(); + }); + chatAdapter.notifyDataSetChanged(); + } + public long getDialogId() { return dialog_id; } @@ -8705,6 +8833,9 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (pollHintView != null) { pollHintView.hide(); } + if (timerHintView != null) { + timerHintView.hide(); + } if (checksHintView != null) { checksHintView.hide(); } @@ -8720,6 +8851,31 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } } + public void showTimerHint() { + if (getParentActivity() == null || fragmentView == null || chatInfo == null) { + return; + } + if (timerHintView == null) { + timerHintView = new HintView(getParentActivity(), 7, true); + timerHintView.setAlpha(0.0f); + timerHintView.setVisibility(View.INVISIBLE); + timerHintView.setShowingDuration(4000); + contentView.addView(timerHintView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.LEFT | Gravity.TOP, 19, 0, 19, 0)); + } + String time; + if (chatInfo.ttl_period > 24 * 60 * 60) { + time = LocaleController.formatPluralString("Days", chatInfo.ttl_period / (24 * 60 * 60)); + } else if (chatInfo.ttl_period >= 60 * 60) { + time = LocaleController.formatPluralString("Hours", chatInfo.ttl_period / (60 * 60)); + } else if (chatInfo.ttl_period >= 60) { + time = LocaleController.formatPluralString("Minutes", chatInfo.ttl_period / 60); + } else { + time = LocaleController.formatPluralString("Seconds", chatInfo.ttl_period); + } + timerHintView.setText(LocaleController.formatString("AutoDeleteSetInfo", R.string.AutoDeleteSetInfo, time)); + timerHintView.showForView(avatarContainer.getTimeItem(), true); + } + private void showSearchAsListHint() { if (getParentActivity() == null || fragmentView == null || searchCountText == null) { return; @@ -8886,7 +9042,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not continue; } if (checksHintView.showForMessageCell(messageCell, true)) { - getMessagesController().removeSuggestion("NEWCOMER_TICKS"); + getMessagesController().removeSuggestion(0, "NEWCOMER_TICKS"); break; } } @@ -10442,9 +10598,6 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not int maxNegativeUnreadId = Integer.MAX_VALUE; int maxUnreadDate = Integer.MIN_VALUE; int recyclerChatViewHeight = (contentView.getHeightWithKeyboard() - (inPreviewMode ? 0 : AndroidUtilities.dp(48)) - chatListView.getTop()); - if (contentView.getKeyboardHeight() == 0) { - recyclerChatViewHeight -= chatActivityEnterView.getEmojiPadding(); - } pollsToCheck.clear(); float cilpTop = chatListViewPaddingTop; for (int a = 0; a < count; a++) { @@ -10469,7 +10622,11 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (viewBottom > height) { viewBottom = viewTop + height; } - messageCell.setVisiblePart(viewTop, viewBottom - viewTop, recyclerChatViewHeight, contentView.getKeyboardHeight()); + int keyboardOffset = contentView.getKeyboardHeight(); + if (keyboardOffset < AndroidUtilities.dp(20) && chatActivityEnterView.isPopupShowing() || chatActivityEnterView.pannelAniamationInProgress()) { + keyboardOffset = chatActivityEnterView.getEmojiPadding(); + } + messageCell.setVisiblePart(viewTop, viewBottom - viewTop, recyclerChatViewHeight, keyboardOffset); if (!threadMessageVisible && threadMessageObject != null && messageObject == threadMessageObject && messageCell.getBottom() > chatListViewPaddingTop) { threadMessageVisible = true; @@ -11193,7 +11350,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not return; } boolean hideKeyboard = false; - if (currentChat != null && !ChatObject.canSendMessages(currentChat) && (!ChatObject.isChannel(currentChat) || currentChat.megagroup)) { + if (currentChat != null && !ChatObject.canSendMessages(currentChat) && !currentChat.gigagroup && (!ChatObject.isChannel(currentChat) || currentChat.megagroup)) { if (currentChat.default_banned_rights != null && currentChat.default_banned_rights.send_messages) { bottomOverlayText.setText(LocaleController.getString("GlobalSendMessageRestricted", R.string.GlobalSendMessageRestricted)); } else if (AndroidUtilities.isBannedForever(currentChat.banned_rights)) { @@ -11239,7 +11396,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not bottomOverlay.setVisibility(View.INVISIBLE); } checkRaiseSensors(); - checkActionBarMenu(); + checkActionBarMenu(false); } if (inPreviewMode) { bottomOverlay.setVisibility(View.INVISIBLE); @@ -11310,26 +11467,32 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } } - private void checkActionBarMenu() { + private void checkActionBarMenu(boolean animated) { if (currentEncryptedChat != null && !(currentEncryptedChat instanceof TLRPC.TL_encryptedChat) || - currentChat != null && ChatObject.isNotInChat(currentChat) || - currentUser != null && UserObject.isDeleted(currentUser)) { + currentChat != null && (chatInfo == null || chatInfo.ttl_period == 0) || + currentUser != null && (UserObject.isDeleted(currentUser) || currentEncryptedChat == null && (userInfo == null || userInfo.ttl_period == 0))) { if (timeItem2 != null) { timeItem2.setVisibility(View.GONE); } if (avatarContainer != null) { - avatarContainer.hideTimeItem(); + avatarContainer.hideTimeItem(animated); } } else { if (timeItem2 != null) { timeItem2.setVisibility(View.VISIBLE); } if (avatarContainer != null) { - avatarContainer.showTimeItem(); + avatarContainer.showTimeItem(animated); } } - if (avatarContainer != null && currentEncryptedChat != null) { - avatarContainer.setTime(currentEncryptedChat.ttl); + if (avatarContainer != null) { + if (currentEncryptedChat != null) { + avatarContainer.setTime(currentEncryptedChat.ttl); + } else if (userInfo != null) { + avatarContainer.setTime(userInfo.ttl_period); + } else if (chatInfo != null) { + avatarContainer.setTime(chatInfo.ttl_period); + } } checkAndUpdateAvatar(); } @@ -11528,61 +11691,65 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } if (selectedMessagesIds[index].indexOfKey(messageObject.getId()) >= 0) { selectedMessagesIds[index].remove(messageObject.getId()); - if (messageObject.type == 0 || messageObject.isAnimatedEmoji() || messageObject.caption != null) { - selectedMessagesCanCopyIds[index].remove(messageObject.getId()); - } - if (!messageObject.isAnimatedEmoji() && (messageObject.isSticker() || messageObject.isAnimatedSticker()) && MessageObject.isStickerHasSet(messageObject.getDocument())) { - selectedMessagesCanStarIds[index].remove(messageObject.getId()); - } - if (messageObject.canEditMessage(currentChat)) { - canEditMessagesCount--; - } - if (!messageObject.canDeleteMessage(chatMode == MODE_SCHEDULED, currentChat)) { - cantDeleteMessagesCount--; - } - if (chatMode == MODE_SCHEDULED || !messageObject.canForwardMessage()) { - cantForwardMessagesCount--; - } else { - canForwardMessagesCount--; - } - if (messageObject.isMusic()) { - canSaveMusicCount--; - } else if (messageObject.isDocument()) { - canSaveDocumentsCount--; - } else { - cantSaveMessagesCount--; + if (reportType < 0) { + if (messageObject.type == 0 || messageObject.isAnimatedEmoji() || messageObject.caption != null) { + selectedMessagesCanCopyIds[index].remove(messageObject.getId()); + } + if (!messageObject.isAnimatedEmoji() && (messageObject.isSticker() || messageObject.isAnimatedSticker()) && MessageObject.isStickerHasSet(messageObject.getDocument())) { + selectedMessagesCanStarIds[index].remove(messageObject.getId()); + } + if (messageObject.canEditMessage(currentChat)) { + canEditMessagesCount--; + } + if (!messageObject.canDeleteMessage(chatMode == MODE_SCHEDULED, currentChat)) { + cantDeleteMessagesCount--; + } + if (chatMode == MODE_SCHEDULED || !messageObject.canForwardMessage()) { + cantForwardMessagesCount--; + } else { + canForwardMessagesCount--; + } + if (messageObject.isMusic()) { + canSaveMusicCount--; + } else if (messageObject.isDocument()) { + canSaveDocumentsCount--; + } else { + cantSaveMessagesCount--; + } } } else { if (selectedMessagesIds[0].size() + selectedMessagesIds[1].size() >= 100) { return; } selectedMessagesIds[index].put(messageObject.getId(), messageObject); - if (messageObject.type == 0 || messageObject.isAnimatedEmoji() || messageObject.caption != null) { - selectedMessagesCanCopyIds[index].put(messageObject.getId(), messageObject); - } - if (!messageObject.isAnimatedEmoji() && (messageObject.isSticker() || messageObject.isAnimatedSticker()) && MessageObject.isStickerHasSet(messageObject.getDocument())) { - selectedMessagesCanStarIds[index].put(messageObject.getId(), messageObject); - } - if (messageObject.canEditMessage(currentChat)) { - canEditMessagesCount++; - } - if (!messageObject.canDeleteMessage(chatMode == MODE_SCHEDULED, currentChat)) { - cantDeleteMessagesCount++; - } - if (chatMode == MODE_SCHEDULED || !messageObject.canForwardMessage()) { - cantForwardMessagesCount++; - } else { - canForwardMessagesCount++; - } - if (messageObject.isMusic()) { - canSaveMusicCount++; - } else if (messageObject.isDocument()) { - canSaveDocumentsCount++; - } else { - cantSaveMessagesCount++; - } - if (outside) { - showTextSelectionHint(messageObject); + if (reportType < 0) { + if (messageObject.type == 0 || messageObject.isAnimatedEmoji() || messageObject.caption != null) { + selectedMessagesCanCopyIds[index].put(messageObject.getId(), messageObject); + } + if (!messageObject.isAnimatedEmoji() && (messageObject.isSticker() || messageObject.isAnimatedSticker()) && MessageObject.isStickerHasSet(messageObject.getDocument())) { + selectedMessagesCanStarIds[index].put(messageObject.getId(), messageObject); + } + if (messageObject.canEditMessage(currentChat)) { + canEditMessagesCount++; + } + if (!messageObject.canDeleteMessage(chatMode == MODE_SCHEDULED, currentChat)) { + cantDeleteMessagesCount++; + } + if (chatMode == MODE_SCHEDULED || !messageObject.canForwardMessage()) { + cantForwardMessagesCount++; + } else { + canForwardMessagesCount++; + } + if (messageObject.isMusic()) { + canSaveMusicCount++; + } else if (messageObject.isDocument()) { + canSaveDocumentsCount++; + } else { + cantSaveMessagesCount++; + } + if (outside) { + showTextSelectionHint(messageObject); + } } } } @@ -11590,7 +11757,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not forwardButtonAnimation.cancel(); forwardButtonAnimation = null; } - if (last && actionBar.isActionModeShowed()) { + if (last && actionBar.isActionModeShowed() && reportType < 0) { int selectedCount = selectedMessagesIds[0].size() + selectedMessagesIds[1].size(); if (selectedCount == 0) { hideActionMode(); @@ -11847,11 +12014,24 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } private void updateActionModeTitle() { - if (!actionBar.isActionModeShowed()) { - return; - } - if (selectedMessagesIds[0].size() != 0 || selectedMessagesIds[1].size() != 0) { - selectedMessagesCountTextView.setNumber(selectedMessagesIds[0].size() + selectedMessagesIds[1].size(), true); + if (reportType < 0) { + if (!actionBar.isActionModeShowed()) { + return; + } + if (selectedMessagesIds[0].size() != 0 || selectedMessagesIds[1].size() != 0) { + selectedMessagesCountTextView.setNumber(selectedMessagesIds[0].size() + selectedMessagesIds[1].size(), true); + } + } else { + int size = selectedMessagesIds[0].size() + selectedMessagesIds[1].size(); + if (size == 0) { + bottomOverlayChatText.setText(LocaleController.getString("ReportMessages", R.string.ReportMessages)); + bottomOverlayChatText.setAlpha(0.5f); + bottomOverlayChatText.setEnabled(false); + } else { + bottomOverlayChatText.setText(LocaleController.formatString("ReportMessagesCount", R.string.ReportMessagesCount, LocaleController.formatPluralString("messages", size)).toUpperCase()); + bottomOverlayChatText.setAlpha(1.0f); + bottomOverlayChatText.setEnabled(true); + } } } @@ -12141,8 +12321,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (getParentActivity() == null) { return; } - Toast toast = Toast.makeText(getParentActivity(), LocaleController.getString("UnsupportedAttachment", R.string.UnsupportedAttachment), Toast.LENGTH_SHORT); - toast.show(); + BulletinFactory.of(this).createErrorBulletin(LocaleController.getString("UnsupportedAttachment", R.string.UnsupportedAttachment)).show(); } private void fillEditingMediaWithCaption(CharSequence caption, ArrayList entities) { @@ -12432,7 +12611,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } } if (!found) { - AlertsCreator.showSimpleToast(ChatActivity.this, LocaleController.getString("MessageNotFound", R.string.MessageNotFound)); + BulletinFactory.of(this).createErrorBulletin(LocaleController.getString("MessageNotFound", R.string.MessageNotFound)).show(); return; } showScrollToMessageError = false; @@ -12878,7 +13057,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not highlightMessageId = messageId; } if (showScrollToMessageError && messageId != startLoadFromMessageId) { - AlertsCreator.showSimpleToast(ChatActivity.this, LocaleController.getString("MessageNotFound", R.string.MessageNotFound)); + BulletinFactory.of(this).createErrorBulletin(LocaleController.getString("MessageNotFound", R.string.MessageNotFound)).show(); } scrollToMessage = obj; if (postponedScroll) { @@ -13765,6 +13944,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not chatFull.participants = chatInfo.participants; } } + showGigagroupConvertAlert(); int prevLinkedChatId = chatInfo != null ? chatInfo.linked_chat_id : 0; chatInfo = chatFull; groupCall = getMessagesController().getGroupCall(currentChat.id, true); @@ -13783,9 +13963,11 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } } } + boolean animated = openAnimationStartTime != 0 && SystemClock.elapsedRealtime() >= openAnimationStartTime + 150; + checkActionBarMenu(animated); if (chatInviterId == 0) { fillInviterId(true); - updateInfoTopView(openAnimationStartTime != 0 && SystemClock.elapsedRealtime() >= openAnimationStartTime + 150); + updateInfoTopView(animated); } if (chatActivityEnterView != null) { chatActivityEnterView.setChatInfo(chatInfo); @@ -13879,6 +14061,8 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not builder.setMessage(LocaleController.getString("ChannelCantOpenNa", R.string.ChannelCantOpenNa)); } else if (reason == 2) { builder.setMessage(LocaleController.getString("ChannelCantOpenBanned", R.string.ChannelCantOpenBanned)); + } else if (reason == 3) { + builder.setMessage(LocaleController.getString("JoinByPeekChannelText", R.string.JoinByPeekChannelText)); } builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), null); if (showDialog(closeChatDialog = builder.create()) == null) { @@ -14766,6 +14950,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not headerItem.hideSubItem(video_call); } } + checkActionBarMenu(false); if (!loadingPinnedMessagesList && !pinnedMessageIds.isEmpty() && userInfo.pinned_msg_id > pinnedMessageIds.get(0)) { getMediaDataController().loadPinnedMessages(dialog_id, 0, userInfo.pinned_msg_id); loadingPinnedMessagesList = true; @@ -14826,6 +15011,9 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not chatActivityEnterView.checkChannelRights(); checkRaiseSensors(); updateSecretStatus(); + if (currentChat.gigagroup) { + updateBottomOverlay(); + } } } else if (id == NotificationCenter.updateMentionsCount) { if (dialog_id == (Long) args[0]) { @@ -15108,6 +15296,42 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not return true; } + private void showGigagroupConvertAlert() { + if (chatInfo != null && !paused && currentChat.creator && currentChat.megagroup && !currentChat.gigagroup && chatInfo.pending_suggestions.contains("CONVERT_GIGAGROUP") && visibleDialog == null) { + AndroidUtilities.runOnUIThread(() -> { //TODO + if (chatInfo != null && !paused && currentChat.creator && currentChat.megagroup && !currentChat.gigagroup && chatInfo.pending_suggestions.contains("CONVERT_GIGAGROUP") && visibleDialog == null) { + SharedPreferences preferences = MessagesController.getNotificationsSettings(currentAccount); + int lastShowTime = preferences.getInt("group_convert_time", 0); + int timeout = BuildVars.DEBUG_PRIVATE_VERSION ? 120 : 60 * 60 * 24 * 7; + int currentTime = getConnectionsManager().getCurrentTime(); + if (Math.abs(currentTime - lastShowTime) >= timeout) { + if (visibleDialog == null && getParentActivity() != null) { + preferences.edit().putInt("group_convert_time", currentTime).commit(); + showDialog(AlertsCreator.createGigagroupConvertAlert(getParentActivity(), (dialog, which) -> { + showDialog(new GigagroupConvertAlert(getParentActivity(), ChatActivity.this) { + @Override + protected void onCovert() { + getMessagesController().convertToGigaGroup(getParentActivity(), currentChat, ChatActivity.this, (result) -> { + if (result) { + undoView.showWithAction(0, UndoView.ACTION_GIGAGROUP_SUCCESS, null); + } + }); + } + + @Override + protected void onCancel() { + undoView.showWithAction(0, UndoView.ACTION_GIGAGROUP_CANCEL, null); + getMessagesController().removeSuggestion(dialog_id, "CONVERT_GIGAGROUP"); + } + }); + }, (dialog, which) -> undoView.showWithAction(0, UndoView.ACTION_GIGAGROUP_CANCEL, null)).create()); + } + } + } + }, 1000); + } + } + private void processNewMessages(ArrayList arr) { int currentUserId = getUserConfig().getClientUserId(); boolean updateChat = false; @@ -15152,18 +15376,24 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not notifiedSearch = true; NotificationCenter.getGlobalInstance().postNotificationName(NotificationCenter.closeSearchByActiveAction); } - if (currentChat != null && currentChat.slowmode_enabled && messageObject.isSent() && chatMode != MODE_SCHEDULED) { - if (chatInfo != null) { - int date = messageObject.messageOwner.date + chatInfo.slowmode_seconds; - int currentTime = getConnectionsManager().getCurrentTime(); - if (date > getConnectionsManager().getCurrentTime()) { - chatInfo.slowmode_next_send_date = Math.max(chatInfo.slowmode_next_send_date, Math.min(currentTime + chatInfo.slowmode_seconds, date)); - if (chatActivityEnterView != null) { - chatActivityEnterView.setSlowModeTimer(chatInfo.slowmode_next_send_date); + if (currentChat != null) { + TLRPC.Chat newChat = getMessagesController().getChat(currentChat.id); + if (newChat != null) { + currentChat = newChat; + if (!newChat.gigagroup && newChat.slowmode_enabled && messageObject.isSent() && chatMode != MODE_SCHEDULED) { + if (chatInfo != null) { + int date = messageObject.messageOwner.date + chatInfo.slowmode_seconds; + int currentTime = getConnectionsManager().getCurrentTime(); + if (date > getConnectionsManager().getCurrentTime()) { + chatInfo.slowmode_next_send_date = Math.max(chatInfo.slowmode_next_send_date, Math.min(currentTime + chatInfo.slowmode_seconds, date)); + if (chatActivityEnterView != null) { + chatActivityEnterView.setSlowModeTimer(chatInfo.slowmode_next_send_date); + } + } } + getMessagesController().loadFullChat(currentChat.id, 0, true); } } - getMessagesController().loadFullChat(currentChat.id, 0, true); } } if (currentChat != null) { @@ -15172,7 +15402,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not TLRPC.Chat newChat = getMessagesController().getChat(currentChat.id); if (newChat != null) { currentChat = newChat; - checkActionBarMenu(); + checkActionBarMenu(false); updateBottomOverlay(); if (avatarContainer != null) { avatarContainer.updateSubtitle(true); @@ -15719,6 +15949,9 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not for (int a = 0; a < size; a++) { Integer mid = markAsDeletedMessages.get(a); MessageObject obj = messagesDict[loadIndex].get(mid); + if ((selectedObject != null && obj == selectedObject || obj != null && selectedObjectGroup != null && selectedObjectGroup == groupedMessagesMap.get(obj.getGroupId())) && scrimPopupWindow != null) { + scrimPopupWindow.dismiss(); + } if (loadIndex == 0) { if (pinnedMessageObjects.containsKey(mid)) { pinnedMessageObjects.remove(mid); @@ -16181,11 +16414,11 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not searchUpButton.setAlpha(searchUpButton.isEnabled() ? 1.0f : 0.5f); searchDownButton.setAlpha(searchDownButton.isEnabled() ? 1.0f : 0.5f); if (count < 0) { - searchCountText.setText(""); + searchCountText.setCount("", 0, false); } else if (count == 0) { - searchCountText.setText(LocaleController.getString("NoResult", R.string.NoResult)); + searchCountText.setCount(LocaleController.getString("NoResult", R.string.NoResult), 0, false); } else { - searchCountText.setText(LocaleController.formatString("Of", R.string.Of, num + 1, count)); + searchCountText.setCount(LocaleController.formatString("OfCounted", R.string.OfCounted, num + 1, count), num + 1, true); } } } @@ -16215,11 +16448,24 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } public void saveKeyboardPositionBeforeTransition() { + if (cancelFixedPositionRunnable != null) { + AndroidUtilities.cancelRunOnUIThread(cancelFixedPositionRunnable); + } if (chatActivityEnterView != null && contentView != null && chatActivityEnterView.getAdjustPanLayoutHelper() != null && !chatActivityEnterView.getAdjustPanLayoutHelper().animationInProgress()) { fixedKeyboardHeight = contentView.getKeyboardHeight(); } } + public void removeKeyboardPositionBeforeTransition() { + if (fixedKeyboardHeight > 0) { + AndroidUtilities.runOnUIThread(cancelFixedPositionRunnable = () -> { + cancelFixedPositionRunnable = null; + fixedKeyboardHeight = -1; + fragmentView.requestLayout(); + }, 200); + } + } + @Override public void onTransitionAnimationStart(boolean isOpen, boolean backward) { int[] alowedNotifications = null; @@ -16280,6 +16526,9 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } } } + if (cancelFixedPositionRunnable != null) { + AndroidUtilities.cancelRunOnUIThread(cancelFixedPositionRunnable); + } fixedKeyboardHeight = -1; if (isOpen) { if (blurredView != null && blurredView.getVisibility() == View.VISIBLE) { @@ -16313,7 +16562,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not BaseFragment fragment = parentLayout.fragmentsStack.get(a); if (fragment != this && fragment instanceof ChatActivity) { ChatActivity chatActivity = (ChatActivity) fragment; - if (chatActivity.needRemovePreviousSameChatActivity && chatActivity.dialog_id == dialog_id && chatActivity.getChatMode() == getChatMode() && chatActivity.threadMessageId == threadMessageId) { + if (chatActivity.needRemovePreviousSameChatActivity && chatActivity.dialog_id == dialog_id && chatActivity.getChatMode() == getChatMode() && chatActivity.threadMessageId == threadMessageId && chatActivity.reportType == reportType) { fragment.removeSelfFromStack(); break; } @@ -16457,7 +16706,9 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (bottomOverlayChatText == null || chatMode == MODE_SCHEDULED) { return; } - if (chatMode == MODE_PINNED) { + if (reportType >= 0) { + updateActionModeTitle(); + } else if (chatMode == MODE_PINNED) { boolean allowPin; if (currentChat != null) { allowPin = ChatObject.canPinMessages(currentChat); @@ -16534,6 +16785,11 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } } + if (currentChat != null && currentChat.gigagroup && reportType < 0 && chatMode == 0) { + bottomOverlayImage.setVisibility(View.VISIBLE); + } else { + bottomOverlayImage.setVisibility(View.INVISIBLE); + } if (inPreviewMode) { searchContainer.setVisibility(View.INVISIBLE); bottomOverlayChat.setVisibility(View.INVISIBLE); @@ -16559,7 +16815,10 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not muteItem.setVisibility(View.VISIBLE); } } - if (chatMode == MODE_PINNED || + if (reportType >= 0) { + bottomOverlayChat.setVisibility(View.VISIBLE); + chatActivityEnterView.setVisibility(View.INVISIBLE); + } else if (chatMode == MODE_PINNED || currentChat != null && !isThreadChat() && (ChatObject.isNotInChat(currentChat) || !ChatObject.canWriteToChat(currentChat)) || currentUser != null && (UserObject.isDeleted(currentUser) || userBlocked || UserObject.isReplyUser(currentUser))) { if (chatActivityEnterView.isEditingMessage()) { @@ -16890,7 +17149,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not pinned_msg_id = 0; } SharedPreferences preferences = MessagesController.getNotificationsSettings(currentAccount); - if (threadMessageObject == null && (chatInfo == null && userInfo == null || pinned_msg_id == 0 || actionBar != null && (actionBar.isActionModeShowed() || actionBar.isSearchFieldVisible()))) { + if (threadMessageObject == null && (chatInfo == null && userInfo == null || pinned_msg_id == 0 || actionBar != null && (actionBar.isActionModeShowed() || actionBar.isSearchFieldVisible() || reportType >= 0))) { changed = hidePinnedMessageView(animated); if (headerItem != null) headerItem.hideSubItem(show_pinned); } else if (pinned_msg_id == preferences.getInt("pin_" + dialog_id, 0)) { @@ -17726,7 +17985,11 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not openImport = false; } - AndroidUtilities.requestAdjustResize(getParentActivity(), classGuid); + if (reportType >= 0) { + AndroidUtilities.setAdjustResizeToNothing(getParentActivity(), classGuid); + } else { + AndroidUtilities.requestAdjustResize(getParentActivity(), classGuid); + } MediaController.getInstance().startRaiseToEarSensors(this); checkRaiseSensors(); if (chatAttachAlert != null) { @@ -17759,7 +18022,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } }); - checkActionBarMenu(); + checkActionBarMenu(false); if (replyImageLocation != null && replyImageView != null) { replyImageView.setImage(ImageLocation.getForObject(replyImageLocation, replyImageLocationObject), "50_50", ImageLocation.getForObject(replyImageThumbLocation, replyImageLocationObject), "50_50_b", null, replyImageSize, replyImageCacheType, replyingMessageObject); } @@ -17833,12 +18096,14 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } checkBotCommands(); updateTitle(); + showGigagroupConvertAlert(); } @Override public void finishFragment() { super.finishFragment(); if (scrimPopupWindow != null) { + scrimPopupWindow.setPauseNotifications(false); scrimPopupWindow.dismiss(); } } @@ -17847,6 +18112,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not public void onPause() { super.onPause(); if (scrimPopupWindow != null) { + scrimPopupWindow.setPauseNotifications(false); scrimPopupWindow.dismiss(); } long replyId = threadMessageId; @@ -18095,7 +18361,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not View child = chatListView.getChildAt(a); if (child instanceof ChatMessageCell) { MessageObject.GroupedMessages groupedMessages = ((ChatMessageCell) child).getCurrentMessagesGroup(); - if (groupedMessages != null && groupedMessages.hasSibling) { + if (groupedMessages != null && groupedMessages.hasSibling && !groupedMessages.messages.isEmpty()) { if (newGroups == null) { newGroups = new HashMap<>(); } @@ -18113,21 +18379,21 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } } - /*if (AndroidUtilities.isTablet()) { + if (AndroidUtilities.isTablet()) { if (AndroidUtilities.isSmallTablet() && ApplicationLoader.applicationContext.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) { actionBar.setBackButtonDrawable(new BackDrawable(false)); - if (fragmentContextView != null && fragmentContextView.getParent() == null) { + /*if (fragmentContextView != null && fragmentContextView.getParent() == null) { ((ViewGroup) fragmentView).addView(fragmentContextView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 38, Gravity.TOP | Gravity.LEFT, 0, -36, 0, 0)); - } + }*/ } else { actionBar.setBackButtonDrawable(new BackDrawable(parentLayout == null || parentLayout.fragmentsStack.isEmpty() || parentLayout.fragmentsStack.get(0) == ChatActivity.this || parentLayout.fragmentsStack.size() == 1)); - if (fragmentContextView != null && fragmentContextView.getParent() != null) { + /*if (fragmentContextView != null && fragmentContextView.getParent() != null) { fragmentView.setPadding(0, 0, 0, 0); ((ViewGroup) fragmentView).removeView(fragmentContextView); - } + }*/ } return false; - }*/ + } return true; } @@ -18329,7 +18595,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } private void createMenu(View v, boolean single, boolean listView, float x, float y, boolean searchGroup) { - if (actionBar.isActionModeShowed()) { + if (actionBar.isActionModeShowed() || reportType >= 0) { return; } @@ -18351,6 +18617,10 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not Toast.makeText(getParentActivity(), LocaleController.getString("MessageNotFound", R.string.MessageNotFound), Toast.LENGTH_SHORT).show(); } return; + } else if (message.messageOwner.action instanceof TLRPC.TL_messageActionSetMessagesTTL) { + if (avatarContainer.openSetTimer()) { + return; + } } else if (message.messageOwner.action instanceof TLRPC.TL_messageActionGroupCall || message.messageOwner.action instanceof TLRPC.TL_messageActionInviteToGroupCall) { if (getParentActivity() == null) { return; @@ -18472,7 +18742,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not icons.add(R.drawable.baseline_replay_24); items.add(LocaleController.getString("Delete", R.string.Delete)); options.add(1); - icons.add(R.drawable.baseline_delete_24); + icons.add(selectedObject.messageOwner.ttl_period != 0 ? R.drawable.msg_delete_auto : R.drawable.baseline_delete_24); } else if (type == 1) { if (currentChat != null) { /*if (selectedObject.messageOwner.action instanceof TLRPC.TL_messageActionGroupCall) { @@ -18519,7 +18789,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (message.canDeleteMessage(chatMode == MODE_SCHEDULED, currentChat) && (threadMessageObjects == null || !threadMessageObjects.contains(message))) { items.add(LocaleController.getString("Delete", R.string.Delete)); options.add(1); - icons.add(R.drawable.baseline_delete_24); + icons.add(selectedObject.messageOwner.ttl_period != 0 ? R.drawable.msg_delete_auto : R.drawable.baseline_delete_24); } } else if (type == 20) { items.add(LocaleController.getString("Retry", R.string.Retry)); @@ -18530,7 +18800,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not icons.add(R.drawable.baseline_content_copy_24); items.add(LocaleController.getString("Delete", R.string.Delete)); options.add(1); - icons.add(R.drawable.baseline_delete_24); + icons.add(selectedObject.messageOwner.ttl_period != 0 ? R.drawable.msg_delete_auto : R.drawable.baseline_delete_24); } else { if (currentEncryptedChat == null) { if (chatMode == MODE_SCHEDULED) { @@ -18903,7 +19173,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (message.canDeleteMessage(chatMode == MODE_SCHEDULED, currentChat) && (threadMessageObjects == null || !threadMessageObjects.contains(message))) { items.add(LocaleController.getString("Delete", R.string.Delete)); options.add(1); - icons.add(R.drawable.baseline_delete_24); + icons.add(selectedObject.messageOwner.ttl_period != 0 ? R.drawable.msg_delete_auto : R.drawable.baseline_delete_24); } } else { if (allowChatActions) { @@ -19027,7 +19297,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } items.add(LocaleController.getString("Delete", R.string.Delete)); options.add(1); - icons.add(R.drawable.baseline_delete_24); + icons.add(selectedObject.messageOwner.ttl_period != 0 ? R.drawable.msg_delete_auto : R.drawable.baseline_delete_24); } if (chatInfo != null && chatInfo.participants != null && chatInfo.participants.participants != null) { selectedParticipant = null; @@ -19080,6 +19350,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (scrimPopupWindow != null) { scrimPopupWindow.dismiss(); scrimPopupWindow = null; + menuDeleteItem = null; scrimPopupWindowItems = null; return; } @@ -19143,6 +19414,12 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not for (int a = 0, N = items.size(); a < N; a++) { ActionBarMenuSubItem cell = new ActionBarMenuSubItem(getParentActivity(), a == 0, a == N - 1); cell.setTextAndIcon(items.get(a), icons.get(a)); + Integer option = options.get(a); + if (option == 1 && selectedObject.messageOwner.ttl_period != 0) { + menuDeleteItem = cell; + updateDeleteItemRunnable.run(); + cell.setSubtextColor(Theme.getColor(Theme.key_windowBackgroundWhiteGrayText6)); + } scrimPopupWindowItems[a] = cell; linearLayout.addView(cell); final int i = a; @@ -19182,6 +19459,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not return; } scrimPopupWindow = null; + menuDeleteItem = null; scrimPopupWindowItems = null; if (scrimAnimatorSet != null) { scrimAnimatorSet.cancel(); @@ -19320,14 +19598,14 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (stickersPanel != null && stickersPanel.getVisibility() == View.VISIBLE) { views.add(stickersPanel); } - actionBar.showActionMode(null, null, null, new boolean[]{false, true, true}, chatListView, translationY); + actionBar.showActionMode(true, null, null, null, new boolean[]{false, true, true}, chatListView, translationY); if (getParentActivity() instanceof LaunchActivity) { ((LaunchActivity) getParentActivity()).hideVisibleActionMode(); } } else if (bottomOverlayChat.getVisibility() == View.VISIBLE) { - actionBar.showActionMode(null, null, null, new boolean[]{true}, chatListView, translationY); + actionBar.showActionMode(true, null, null, null, new boolean[]{true}, chatListView, translationY); } else { - actionBar.showActionMode(null, null, null, null, chatListView, translationY); + actionBar.showActionMode(true, null, null, null, null, chatListView, translationY); } if (scrimPopupWindow != null) { scrimPopupWindow.dismiss(); @@ -19478,7 +19756,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not return; } if (pinBulletin != null) { - pinBulletin.hide(false); + pinBulletin.hide(false, 0); } ArrayList objects = new ArrayList<>(); objects.add(selectedObject); @@ -19497,6 +19775,25 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not }).show(); } + public void openReportChat(int type) { + Bundle args = new Bundle(); + int lowerId = (int) dialog_id; + if (lowerId > 0) { + args.putInt("user_id", lowerId); + } else { + args.putInt("chat_id", -lowerId); + } + args.putInt("report", type); + ChatActivity fragment = new ChatActivity(args); + presentFragment(fragment); + fragment.chatActivityDelegate = new ChatActivityDelegate() { + @Override + public void onReport() { + undoView.showWithAction(0, UndoView.ACTION_REPORT_SENT, null); + } + }; + } + private void saveMessageToGallery(MessageObject messageObject) { String path = messageObject.messageOwner.attachPath; if (!TextUtils.isEmpty(path)) { @@ -19629,7 +19926,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not AndroidUtilities.addToClipboard(getMessageContent(selectedObject, 0, false)); } } - undoView.showWithAction(0, UndoView.ACTION_TEXT_COPIED, null); + undoView.showWithAction(0, UndoView.ACTION_MESSAGE_COPIED, null); break; } case 4: { @@ -20666,7 +20963,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not boolean disableSelection = false; boolean selected = false; - if (actionBar.isActionModeShowed()) { + if (actionBar.isActionModeShowed() || reportType >= 0) { cell.setCheckBoxVisible(threadMessageObjects == null || !threadMessageObjects.contains(messageObject), true); int idx = messageObject.getDialogId() == dialog_id ? 0 : 1; if (selectedMessagesIds[idx].indexOfKey(messageObject.getId()) >= 0) { @@ -20844,6 +21141,10 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not return threadMessageObject; } + public MessageObject getReplyMessage() { + return replyingMessageObject; + } + public int getThreadId() { return threadMessageId; } @@ -21031,7 +21332,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not openOriginalReplyChat(fallbackMessage); } else { if (getParentActivity() != null) { - Toast.makeText(getParentActivity(), LocaleController.getString("ChannelPostDeleted", R.string.ChannelPostDeleted), Toast.LENGTH_SHORT).show(); + BulletinFactory.of(this).createErrorBulletin(LocaleController.getString("ChannelPostDeleted", R.string.ChannelPostDeleted)).show(); } } } @@ -21097,6 +21398,17 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not savedHistory.messages.remove(0); } } else { + if ("CHANNEL_PRIVATE".equals(error.text)) { + if (getParentActivity() != null) { + AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity()); + builder.setTitle(LocaleController.getString("AppName", R.string.AppName)); + builder.setMessage(LocaleController.getString("JoinByPeekChannelText", R.string.JoinByPeekChannelText)); + builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), null); + AlertDialog alertDialog = builder.create(); + showDialog(builder.create()); + } + return; + } savedNoHistory = true; } processLoadedDiscussionMessage(savedNoDiscussion, savedDiscussionMessage, savedNoHistory, savedHistory, maxReadId, fallbackMessage, progressRunnable, req, chat, highlightMsgId, originalMessage); @@ -21316,7 +21628,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } } else if (str.startsWith("#") || str.startsWith("$")) { if (ChatObject.isChannel(currentChat)) { - if (chatMode == MODE_SCHEDULED) { + if (chatMode == MODE_SCHEDULED || chatMode == MODE_PINNED) { chatActivityDelegate.openSearch(str); finishFragment(); } else { @@ -21457,6 +21769,14 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } else if (which == 1) { AndroidUtilities.addToClipboard(str); + if (str.startsWith("@")) { + undoView.showWithAction(0, UndoView.ACTION_USERNAME_COPIED, null); + } else if (str.startsWith("#") || str.startsWith("$")) { + undoView.showWithAction(0, UndoView.ACTION_HASHTAG_COPIED, null); + } else { + undoView.showWithAction(0, UndoView.ACTION_LINK_COPIED, null); + } + } return Unit.INSTANCE; }); @@ -21485,13 +21805,19 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } } else if (which == 1) { String url1 = urlFinal; + boolean tel = false; if (url1.startsWith("mailto:")) { url1 = url1.substring(7); } else if (url1.startsWith("tel:")) { url1 = url1.substring(4); + tel = true; } AndroidUtilities.addToClipboard(url1); - AlertUtil.showToast(LocaleController.getString("LinkCopied", R.string.LinkCopied)); + if (tel) { + undoView.showWithAction(0, UndoView.ACTION_PHONE_COPIED, null); + } else { + undoView.showWithAction(0, UndoView.ACTION_LINK_COPIED, null); + } } return Unit.INSTANCE; }); @@ -21841,7 +22167,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not if (chat == null) { return; } - if (actionBar.isActionModeShowed()) { + if (actionBar.isActionModeShowed() || reportType >= 0) { processRowSelect(cell, true, touchX, touchY); return; } @@ -21871,7 +22197,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not @Override public void didPressUserAvatar(ChatMessageCell cell, TLRPC.User user, float touchX, float touchY) { - if (actionBar.isActionModeShowed()) { + if (actionBar.isActionModeShowed() || reportType >= 0) { processRowSelect(cell, true, touchX, touchY); return; } @@ -22093,7 +22419,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not @Override public boolean canPerformActions() { - return actionBar != null && !actionBar.isActionModeShowed(); + return actionBar != null && !actionBar.isActionModeShowed() && reportType < 0; } @Override @@ -22162,11 +22488,12 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not } else if (message.isAnimatedEmoji()) { restartSticker(cell); } else if (message.needDrawBluredPreview()) { - if (sendSecretMessageRead(message)) { - cell.invalidate(); - } SecretMediaViewer.getInstance().setParentActivity(getParentActivity()); - SecretMediaViewer.getInstance().openMedia(message, photoViewerProvider); + SecretMediaViewer.getInstance().openMedia(message, photoViewerProvider, () -> { + if (sendSecretMessageRead(message)) { + cell.invalidate(); + } + }); } else if (message.type == MessageObject.TYPE_STICKER || message.type == MessageObject.TYPE_ANIMATED_STICKER) { StickersAlert alert = new StickersAlert(getParentActivity(), ChatActivity.this, message.getInputStickerSet(), null, bottomOverlayChat.getVisibility() != View.VISIBLE && (currentChat == null || ChatObject.canSendStickers(currentChat)) ? chatActivityEnterView : null); alert.setCalcMandatoryInsets(isKeyboardVisible()); @@ -22766,7 +23093,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not boolean selected = false; boolean disableSelection = false; - if (actionBar.isActionModeShowed()) { + if (actionBar.isActionModeShowed() || reportType >= 0) { messageCell.setCheckBoxVisible(threadMessageObjects == null || !threadMessageObjects.contains(message), false); int idx = message.getDialogId() == dialog_id ? 0 : 1; if (selectedMessagesIds[idx].indexOfKey(message.getId()) >= 0) { @@ -22804,10 +23131,12 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not viewBottom = viewTop + height; } int recyclerChatViewHeight = (contentView.getHeightWithKeyboard() - (inPreviewMode ? 0 : AndroidUtilities.dp(48)) - chatListView.getTop()); - if (contentView.getKeyboardHeight() == 0) { - recyclerChatViewHeight -= chatActivityEnterView.getEmojiPadding(); + int keyboardOffset = contentView.getKeyboardHeight(); + int parentHeight = viewBottom - viewTop; + if (keyboardOffset < AndroidUtilities.dp(20) && chatActivityEnterView.isPopupShowing() || chatActivityEnterView.pannelAniamationInProgress()) { + keyboardOffset = chatActivityEnterView.getEmojiPadding(); } - messageCell.setVisiblePart(viewTop, viewBottom - viewTop, recyclerChatViewHeight, contentView.getKeyboardHeight()); + messageCell.setVisiblePart(viewTop, viewBottom - viewTop, recyclerChatViewHeight, keyboardOffset); return true; } @@ -23289,17 +23618,22 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not themeDescriptions.add(new ThemeDescription(messagesSearchListView, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_windowBackgroundWhite)); - themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_actionBarDefault)); - themeDescriptions.add(new ThemeDescription(chatListView, ThemeDescription.FLAG_LISTGLOWCOLOR, null, null, null, null, Theme.key_actionBarDefault)); - themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_ITEMSCOLOR, null, null, null, null, Theme.key_actionBarDefaultIcon)); - themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SELECTORCOLOR, null, null, null, null, Theme.key_actionBarDefaultSelector)); + if (reportType < 0) { + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_actionBarDefault)); + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_ITEMSCOLOR, null, null, null, null, Theme.key_actionBarDefaultIcon)); + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SELECTORCOLOR, null, null, null, null, Theme.key_actionBarDefaultSelector)); + } else { + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_actionBarActionModeDefault)); + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_ITEMSCOLOR, null, null, null, null, Theme.key_actionBarActionModeDefaultIcon)); + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SELECTORCOLOR, null, null, null, null, Theme.key_actionBarActionModeDefaultSelector)); + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_TITLECOLOR, null, null, null, null, Theme.key_actionBarActionModeDefaultIcon)); + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SUBTITLECOLOR, null, null, null, null, Theme.key_actionBarActionModeDefaultIcon)); + } themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SUBMENUBACKGROUND, null, null, null, selectedBackgroundDelegate, Theme.key_actionBarDefaultSubmenuBackground)); themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SUBMENUITEM, null, null, null, selectedBackgroundDelegate, Theme.key_actionBarDefaultSubmenuItem)); themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SUBMENUITEM | ThemeDescription.FLAG_IMAGECOLOR, null, null, null, selectedBackgroundDelegate, Theme.key_actionBarDefaultSubmenuItemIcon)); - - themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_actionBarDefault)); themeDescriptions.add(new ThemeDescription(chatListView, ThemeDescription.FLAG_LISTGLOWCOLOR, null, null, null, null, Theme.key_actionBarDefault)); - themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_ITEMSCOLOR, null, null, null, null, Theme.key_actionBarDefaultIcon)); + themeDescriptions.add(new ThemeDescription(avatarContainer != null ? avatarContainer.getTitleTextView() : null, ThemeDescription.FLAG_TEXTCOLOR, null, null, null, null, Theme.key_actionBarDefaultTitle)); themeDescriptions.add(new ThemeDescription(avatarContainer != null ? avatarContainer.getTitleTextView() : null, ThemeDescription.FLAG_IMAGECOLOR, null, null, null, null, Theme.key_actionBarDefaultSubtitle)); themeDescriptions.add(new ThemeDescription(avatarContainer != null ? avatarContainer.getSubtitleTextView() : null, ThemeDescription.FLAG_TEXTCOLOR | ThemeDescription.FLAG_CHECKTAG, null, new Paint[]{Theme.chat_statusPaint, Theme.chat_statusRecordPaint}, null, null, Theme.key_chat_status, null)); @@ -23309,7 +23643,6 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SEARCHPLACEHOLDER, null, null, null, null, Theme.key_actionBarDefaultSearchPlaceholder)); themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SEARCHPLACEHOLDER, null, null, null, null, Theme.key_actionBarDefaultSearchPlaceholder)); - themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_AM_ITEMSCOLOR, null, null, null, null, Theme.key_actionBarActionModeDefaultIcon)); themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_AM_BACKGROUND, null, null, null, null, Theme.key_actionBarActionModeDefault)); themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_AM_TOPBACKGROUND, null, null, null, null, Theme.key_actionBarActionModeDefaultTop)); @@ -23704,6 +24037,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not themeDescriptions.add(new ThemeDescription(bottomOverlayChatText, 0, null, null, null, null, Theme.key_chat_goDownButtonCounterBackground)); themeDescriptions.add(new ThemeDescription(bottomOverlayChatText, 0, null, null, null, null, Theme.key_chat_messagePanelBackground)); themeDescriptions.add(new ThemeDescription(bottomOverlayProgress, 0, null, null, null, null, Theme.key_chat_fieldOverlayText)); + themeDescriptions.add(new ThemeDescription(bottomOverlayImage, ThemeDescription.FLAG_IMAGECOLOR, null, null, null, null, Theme.key_chat_fieldOverlayText)); themeDescriptions.add(new ThemeDescription(bigEmptyView, ThemeDescription.FLAG_TEXTCOLOR, null, null, null, null, Theme.key_chat_serviceText)); themeDescriptions.add(new ThemeDescription(emptyView, ThemeDescription.FLAG_TEXTCOLOR, null, null, null, null, Theme.key_chat_serviceText)); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ChatEditActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ChatEditActivity.java index 10e1211b3..760b2b733 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ChatEditActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ChatEditActivity.java @@ -17,8 +17,6 @@ import android.content.Context; import android.content.Intent; import android.graphics.Canvas; import android.graphics.Paint; -import android.graphics.PorterDuff; -import android.graphics.PorterDuffColorFilter; import android.os.Build; import android.os.Bundle; import android.text.Editable; @@ -70,6 +68,7 @@ import org.telegram.ui.Components.ImageUpdater; import org.telegram.ui.Components.LayoutHelper; import org.telegram.ui.Components.RadialProgressView; import org.telegram.ui.Components.SizeNotifierFrameLayout; +import org.telegram.ui.Components.UndoView; import java.util.ArrayList; import java.util.concurrent.CountDownLatch; @@ -82,6 +81,8 @@ public class ChatEditActivity extends BaseFragment implements ImageUpdater.Image private AlertDialog progressDialog; + private UndoView undoView; + private LinearLayout avatarContainer; private BackupImageView avatarImage; private View avatarOverlay; @@ -222,18 +223,18 @@ public class ChatEditActivity extends BaseFragment implements ImageUpdater.Image } private void loadLinksCount() { -// TLRPC.TL_messages_getExportedChatInvites req = new TLRPC.TL_messages_getExportedChatInvites(); -// req.peer = getMessagesController().getInputPeer(-chatId); -// req.admin_id = getMessagesController().getInputUser(getUserConfig().getCurrentUser()); -// req.limit = 0; -// getConnectionsManager().sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { -// if (error == null) { -// TLRPC.TL_messages_exportedChatInvites invites = (TLRPC.TL_messages_exportedChatInvites) response; -// info.invitesCount = invites.count; -// getMessagesStorage().saveChatLinksCount(chatId, info.invitesCount); -// updateFields(false); -// } -// })); + TLRPC.TL_messages_getExportedChatInvites req = new TLRPC.TL_messages_getExportedChatInvites(); + req.peer = getMessagesController().getInputPeer(-chatId); + req.admin_id = getMessagesController().getInputUser(getUserConfig().getCurrentUser()); + req.limit = 0; + getConnectionsManager().sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { + if (error == null) { + TLRPC.TL_messages_exportedChatInvites invites = (TLRPC.TL_messages_exportedChatInvites) response; + info.invitesCount = invites.count; + getMessagesStorage().saveChatLinksCount(chatId, info.invitesCount); + updateFields(false); + } + })); } @Override @@ -267,9 +268,19 @@ public class ChatEditActivity extends BaseFragment implements ImageUpdater.Image if (nameTextView != null) { nameTextView.onPause(); } + if (undoView != null) { + undoView.hide(true, 0); + } imageUpdater.onPause(); } + @Override + protected void onBecomeFullyHidden() { + if (undoView != null) { + undoView.hide(true, 0); + } + } + @Override public void dismissCurrentDialog() { if (imageUpdater.dismissCurrentDialog(visibleDialog)) { @@ -771,19 +782,19 @@ public class ChatEditActivity extends BaseFragment implements ImageUpdater.Image blockCell.setOnClickListener(v -> { Bundle args = new Bundle(); args.putInt("chat_id", chatId); - args.putInt("type", !isChannel ? ChatUsersActivity.TYPE_KICKED : ChatUsersActivity.TYPE_BANNED); + args.putInt("type", !isChannel && !currentChat.gigagroup ? ChatUsersActivity.TYPE_KICKED : ChatUsersActivity.TYPE_BANNED); ChatUsersActivity fragment = new ChatUsersActivity(args); fragment.setInfo(info); presentFragment(fragment); }); -// inviteLinksCell = new TextCell(context); -// inviteLinksCell.setBackgroundDrawable(Theme.getSelectorDrawable(false)); -// inviteLinksCell.setOnClickListener(v -> { -// ManageLinksActivity fragment = new ManageLinksActivity(chatId); -// fragment.setInfo(info, info.exported_invite); -// presentFragment(fragment); -// }); + inviteLinksCell = new TextCell(context); + inviteLinksCell.setBackgroundDrawable(Theme.getSelectorDrawable(false)); + inviteLinksCell.setOnClickListener(v -> { + ManageLinksActivity fragment = new ManageLinksActivity(chatId, 0, 0); + fragment.setInfo(info, info.exported_invite); + presentFragment(fragment); + }); adminCell = new TextCell(context); adminCell.setBackgroundDrawable(Theme.getSelectorDrawable(false)); @@ -807,20 +818,25 @@ public class ChatEditActivity extends BaseFragment implements ImageUpdater.Image presentFragment(fragment); }); - if (ChatObject.isChannel(currentChat) && ChatObject.hasAdminRights(currentChat)) { + if (ChatObject.isChannel(currentChat) || currentChat.gigagroup) { logCell = new TextCell(context); logCell.setText(LocaleController.getString("EventLog", R.string.EventLog), false); logCell.setBackgroundDrawable(Theme.getSelectorDrawable(false)); logCell.setOnClickListener(v -> presentFragment(new ChannelAdminLogActivity(currentChat))); } - if (!isChannel) { + if (!isChannel && !currentChat.gigagroup) { infoContainer.addView(blockCell, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); } - // infoContainer.addView(inviteLinksCell, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); + if (!isChannel) { + infoContainer.addView(inviteLinksCell, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); + } infoContainer.addView(adminCell, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); infoContainer.addView(membersCell, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); if (isChannel) { + infoContainer.addView(inviteLinksCell, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); + } + if (isChannel || currentChat.gigagroup) { infoContainer.addView(blockCell, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); } if (logCell != null) { @@ -898,6 +914,9 @@ public class ChatEditActivity extends BaseFragment implements ImageUpdater.Image } } + undoView = new UndoView(context); + sizeNotifierFrameLayout.addView(undoView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.BOTTOM | Gravity.LEFT, 8, 0, 8, 8)); + nameTextView.setText(currentChat.title); nameTextView.setSelection(nameTextView.length()); if (info != null) { @@ -1012,6 +1031,10 @@ public class ChatEditActivity extends BaseFragment implements ImageUpdater.Image return nameTextView.getText().toString(); } + public void showConvertTooltip() { + undoView.showWithAction(0, UndoView.ACTION_GIGAGROUP_SUCCESS, null); + } + private boolean checkDiscard() { String about = info != null && info.about != null ? info.about : ""; if (info != null && ChatObject.isChannel(currentChat) && info.hidden_prehistory != historyHidden || @@ -1247,7 +1270,7 @@ public class ChatEditActivity extends BaseFragment implements ImageUpdater.Image } if (logCell != null) { - logCell.setVisibility(!currentChat.megagroup || info != null ? View.VISIBLE : View.GONE); + logCell.setVisibility(!currentChat.megagroup || currentChat.gigagroup || info != null ? View.VISIBLE : View.GONE); } if (linkedCell != null) { @@ -1318,7 +1341,7 @@ public class ChatEditActivity extends BaseFragment implements ImageUpdater.Image } } - if (info != null && historyCell != null) { + if (historyCell != null) { String type = historyHidden ? LocaleController.getString("ChatHistoryHidden", R.string.ChatHistoryHidden) : LocaleController.getString("ChatHistoryVisible", R.string.ChatHistoryVisible); historyCell.setTextAndValue(LocaleController.getString("ChatHistory", R.string.ChatHistory), type, false); } @@ -1342,39 +1365,43 @@ public class ChatEditActivity extends BaseFragment implements ImageUpdater.Image } else { membersCell.setTextAndValue(LocaleController.getString("ChannelMembers", R.string.ChannelMembers), String.format("%d", info.participants.participants.size()), logCell != null && logCell.getVisibility() == View.VISIBLE); } - int count = 0; - if (currentChat.default_banned_rights != null) { - if (!currentChat.default_banned_rights.send_stickers) { - count++; - } - if (!currentChat.default_banned_rights.send_gifs) { - count++; - } - if (!currentChat.default_banned_rights.send_media) { - count++; - } - if (!currentChat.default_banned_rights.embed_links) { - count++; - } - if (!currentChat.default_banned_rights.send_messages) { - count++; - } - if (!currentChat.default_banned_rights.pin_messages) { - count++; - } - if (!currentChat.default_banned_rights.send_polls) { - count++; - } - if (!currentChat.default_banned_rights.invite_users) { - count++; - } - if (!currentChat.default_banned_rights.change_info) { - count++; - } + if (currentChat.gigagroup) { + blockCell.setTextAndValueAndIcon(LocaleController.getString("ChannelBlacklist", R.string.ChannelBlacklist), String.format("%d", Math.max(info.banned_count, info.kicked_count)), R.drawable.actions_removed, logCell != null && logCell.getVisibility() == View.VISIBLE); } else { - count = 9; + int count = 0; + if (currentChat.default_banned_rights != null) { + if (!currentChat.default_banned_rights.send_stickers) { + count++; + } + if (!currentChat.default_banned_rights.send_gifs) { + count++; + } + if (!currentChat.default_banned_rights.send_media) { + count++; + } + if (!currentChat.default_banned_rights.embed_links) { + count++; + } + if (!currentChat.default_banned_rights.send_messages) { + count++; + } + if (!currentChat.default_banned_rights.pin_messages) { + count++; + } + if (!currentChat.default_banned_rights.send_polls) { + count++; + } + if (!currentChat.default_banned_rights.invite_users) { + count++; + } + if (!currentChat.default_banned_rights.change_info) { + count++; + } + } else { + count = 9; + } + blockCell.setTextAndValue(LocaleController.getString("ChannelPermissions", R.string.ChannelPermissions), count + " / 9", true); } - blockCell.setTextAndValue(LocaleController.getString("ChannelPermissions", R.string.ChannelPermissions), count + " / 9", true); } adminCell.setText(LocaleController.getString("ChannelAdministrators", R.string.ChannelAdministrators), true); if (info.participants != null) { @@ -1393,15 +1420,23 @@ public class ChatEditActivity extends BaseFragment implements ImageUpdater.Image blockCell.setText(LocaleController.getString("ChannelBlacklist", R.string.ChannelBlacklist), logCell != null && logCell.getVisibility() == View.VISIBLE); } else { membersCell.setText(LocaleController.getString("ChannelMembers", R.string.ChannelMembers), logCell != null && logCell.getVisibility() == View.VISIBLE); - blockCell.setText(LocaleController.getString("ChannelPermissions", R.string.ChannelPermissions), true); + if (currentChat.gigagroup) { + blockCell.setTextAndIcon(LocaleController.getString("ChannelBlacklist", R.string.ChannelBlacklist), R.drawable.actions_removed, logCell != null && logCell.getVisibility() == View.VISIBLE); + } else { + blockCell.setText(LocaleController.getString("ChannelPermissions", R.string.ChannelPermissions), true); + } } adminCell.setText(LocaleController.getString("ChannelAdministrators", R.string.ChannelAdministrators), true); } -// if (info != null && info.invitesCount >= 0) { -// inviteLinksCell.setTextAndValueAndIcon(LocaleController.getString("InviteLinks", R.string.InviteLinks), Integer.toString(info.invitesCount), R.drawable.actions_link, true); -// } else { -// inviteLinksCell.setTextAndIcon(LocaleController.getString("InviteLinks", R.string.InviteLinks), R.drawable.actions_link, true); -// } + if (info == null || !ChatObject.canUserDoAdminAction(currentChat, ChatObject.ACTION_INVITE) || (!isPrivate && currentChat.creator)) { + inviteLinksCell.setVisibility(View.GONE); + } else { + if (info.invitesCount > 0) { + inviteLinksCell.setTextAndValueAndIcon(LocaleController.getString("InviteLinks", R.string.InviteLinks), Integer.toString(info.invitesCount), R.drawable.actions_link, true); + } else { + inviteLinksCell.setTextAndValueAndIcon(LocaleController.getString("InviteLinks", R.string.InviteLinks), "1", R.drawable.actions_link, true); + } + } } if (stickersCell != null && info != null) { @@ -1439,9 +1474,9 @@ public class ChatEditActivity extends BaseFragment implements ImageUpdater.Image themeDescriptions.add(new ThemeDescription(adminCell, ThemeDescription.FLAG_SELECTOR, null, null, null, null, Theme.key_listSelector)); themeDescriptions.add(new ThemeDescription(adminCell, ThemeDescription.FLAG_TEXTCOLOR, new Class[]{TextCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlackText)); themeDescriptions.add(new ThemeDescription(adminCell, 0, new Class[]{TextCell.class}, new String[]{"imageView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayIcon)); -// themeDescriptions.add(new ThemeDescription(inviteLinksCell, ThemeDescription.FLAG_SELECTOR, null, null, null, null, Theme.key_listSelector)); -// themeDescriptions.add(new ThemeDescription(inviteLinksCell, ThemeDescription.FLAG_TEXTCOLOR, new Class[]{TextCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlackText)); -// themeDescriptions.add(new ThemeDescription(inviteLinksCell, 0, new Class[]{TextCell.class}, new String[]{"imageView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayIcon)); + themeDescriptions.add(new ThemeDescription(inviteLinksCell, ThemeDescription.FLAG_SELECTOR, null, null, null, null, Theme.key_listSelector)); + themeDescriptions.add(new ThemeDescription(inviteLinksCell, ThemeDescription.FLAG_TEXTCOLOR, new Class[]{TextCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlackText)); + themeDescriptions.add(new ThemeDescription(inviteLinksCell, 0, new Class[]{TextCell.class}, new String[]{"imageView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayIcon)); themeDescriptions.add(new ThemeDescription(blockCell, ThemeDescription.FLAG_SELECTOR, null, null, null, null, Theme.key_listSelector)); themeDescriptions.add(new ThemeDescription(blockCell, ThemeDescription.FLAG_TEXTCOLOR, new Class[]{TextCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlackText)); @@ -1501,6 +1536,14 @@ public class ChatEditActivity extends BaseFragment implements ImageUpdater.Image themeDescriptions.add(new ThemeDescription(null, 0, null, null, null, cellDelegate, Theme.key_avatar_backgroundBlue)); themeDescriptions.add(new ThemeDescription(null, 0, null, null, null, cellDelegate, Theme.key_avatar_backgroundPink)); + themeDescriptions.add(new ThemeDescription(undoView, ThemeDescription.FLAG_BACKGROUNDFILTER, null, null, null, null, Theme.key_undo_background)); + themeDescriptions.add(new ThemeDescription(undoView, 0, new Class[]{UndoView.class}, new String[]{"undoImageView"}, null, null, null, Theme.key_undo_cancelColor)); + themeDescriptions.add(new ThemeDescription(undoView, 0, new Class[]{UndoView.class}, new String[]{"undoTextView"}, null, null, null, Theme.key_undo_cancelColor)); + themeDescriptions.add(new ThemeDescription(undoView, 0, new Class[]{UndoView.class}, new String[]{"infoTextView"}, null, null, null, Theme.key_undo_infoColor)); + themeDescriptions.add(new ThemeDescription(undoView, 0, new Class[]{UndoView.class}, new String[]{"textPaint"}, null, null, null, Theme.key_undo_infoColor)); + themeDescriptions.add(new ThemeDescription(undoView, 0, new Class[]{UndoView.class}, new String[]{"progressPaint"}, null, null, null, Theme.key_undo_infoColor)); + themeDescriptions.add(new ThemeDescription(undoView, ThemeDescription.FLAG_IMAGECOLOR, new Class[]{UndoView.class}, new String[]{"leftImageView"}, null, null, null, Theme.key_undo_infoColor)); + return themeDescriptions; } } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ChatEditTypeActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ChatEditTypeActivity.java index a517d09e7..a187d9255 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ChatEditTypeActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ChatEditTypeActivity.java @@ -74,8 +74,8 @@ public class ChatEditTypeActivity extends BaseFragment implements NotificationCe private LinearLayout publicContainer; private LinearLayout privateContainer; private LinkActionView permanentLinkView; - // private TextCell manageLinksTextView; - // private TextInfoPrivacyCell manageLinksInfoCell; + private TextCell manageLinksTextView; + private TextInfoPrivacyCell manageLinksInfoCell; private TextSettingsCell shareQRCell; private ShadowSectionCell sectionCell2; private TextInfoPrivacyCell infoCell; @@ -351,7 +351,7 @@ public class ChatEditTypeActivity extends BaseFragment implements NotificationCe privateContainer.setOrientation(LinearLayout.VERTICAL); linkContainer.addView(privateContainer, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); - permanentLinkView = new LinkActionView(context, this, null, chatId, true); + permanentLinkView = new LinkActionView(context, this, null, chatId, true, ChatObject.isChannel(currentChat)); permanentLinkView.setDelegate(new LinkActionView.Delegate() { @Override public void revokeLink() { @@ -360,7 +360,7 @@ public class ChatEditTypeActivity extends BaseFragment implements NotificationCe @Override public void showUsersForPermanentLink() { - inviteLinkBottomSheet = new InviteLinkBottomSheet(context, invite, info, usersMap, ChatEditTypeActivity.this, chatId, true); + inviteLinkBottomSheet = new InviteLinkBottomSheet(context, invite, info, usersMap, ChatEditTypeActivity.this, chatId, true, ChatObject.isChannel(currentChat)); inviteLinkBottomSheet.show(); } }); @@ -398,23 +398,23 @@ public class ChatEditTypeActivity extends BaseFragment implements NotificationCe linearLayout.addView(adminedInfoCell, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); -// manageLinksTextView = new TextCell(context); -// manageLinksTextView.setBackgroundDrawable(Theme.getSelectorDrawable(true)); -// manageLinksTextView.setOnClickListener(v -> { -// if (invite == null) { -// return; -// } -// }); -// manageLinksTextView.setTextAndIcon(LocaleController.getString("ManageInviteLinks", R.string.ManageInviteLinks), R.drawable.actions_link, false); -// manageLinksTextView.setOnClickListener(v -> { -// ManageLinksActivity fragment = new ManageLinksActivity(chatId); -// fragment.setInfo(info, invite); -// presentFragment(fragment); -// }); -// linearLayout.addView(manageLinksTextView, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); -// -// manageLinksInfoCell = new TextInfoPrivacyCell(context); -// linearLayout.addView(manageLinksInfoCell, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); + manageLinksTextView = new TextCell(context); + manageLinksTextView.setBackgroundDrawable(Theme.getSelectorDrawable(true)); + manageLinksTextView.setOnClickListener(v -> { + if (invite == null) { + return; + } + }); + manageLinksTextView.setTextAndIcon(LocaleController.getString("ManageInviteLinks", R.string.ManageInviteLinks), R.drawable.actions_link, false); + manageLinksTextView.setOnClickListener(v -> { + ManageLinksActivity fragment = new ManageLinksActivity(chatId, 0, 0); + fragment.setInfo(info, invite); + presentFragment(fragment); + }); + linearLayout.addView(manageLinksTextView, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); + + manageLinksInfoCell = new TextInfoPrivacyCell(context); + linearLayout.addView(manageLinksInfoCell, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); if (!isPrivate && currentChat.username != null) { ignoreTextChanges = true; @@ -591,16 +591,16 @@ public class ChatEditTypeActivity extends BaseFragment implements NotificationCe } publicContainer.setVisibility(isPrivate ? View.GONE : View.VISIBLE); privateContainer.setVisibility(isPrivate ? View.VISIBLE : View.GONE); - //manageLinksTextView.setVisibility(isPrivate ? View.VISIBLE : View.GONE); - // manageLinksInfoCell.setVisibility(isPrivate ? View.VISIBLE : View.GONE); + manageLinksTextView.setVisibility(View.VISIBLE); + manageLinksInfoCell.setVisibility(View.VISIBLE); linkContainer.setPadding(0, 0, 0, isPrivate ? 0 : AndroidUtilities.dp(7)); permanentLinkView.setLink(invite != null ? invite.link : null); permanentLinkView.loadUsers(invite, chatId); checkTextView.setVisibility(!isPrivate && checkTextView.length() != 0 ? View.VISIBLE : View.GONE); if (isPrivate) { typeInfoCell.setBackgroundDrawable(Theme.getThemedDrawable(typeInfoCell.getContext(), R.drawable.greydivider, Theme.key_windowBackgroundGrayShadow)); - // manageLinksInfoCell.setBackground(Theme.getThemedDrawable(typeInfoCell.getContext(), R.drawable.greydivider_bottom, Theme.key_windowBackgroundGrayShadow)); - // manageLinksInfoCell.setText(LocaleController.getString("ManageLinksInfoHelp", R.string.ManageLinksInfoHelp)); + manageLinksInfoCell.setBackground(Theme.getThemedDrawable(typeInfoCell.getContext(), R.drawable.greydivider_bottom, Theme.key_windowBackgroundGrayShadow)); + manageLinksInfoCell.setText(LocaleController.getString("ManageLinksInfoHelp", R.string.ManageLinksInfoHelp)); } else { typeInfoCell.setBackgroundDrawable(checkTextView.getVisibility() == View.VISIBLE ? null : Theme.getThemedDrawable(typeInfoCell.getContext(), R.drawable.greydivider_bottom, Theme.key_windowBackgroundGrayShadow)); } @@ -699,7 +699,7 @@ public class ChatEditTypeActivity extends BaseFragment implements NotificationCe private void generateLink(final boolean newRequest) { loadingInvite = true; TLRPC.TL_messages_exportChatInvite req = new TLRPC.TL_messages_exportChatInvite(); - //req.legacy_revoke_permanent = true; TODO layer 124 + req.legacy_revoke_permanent = true; req.peer = getMessagesController().getInputPeer(-chatId); final int reqId = getConnectionsManager().sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { if (error == null) { @@ -742,7 +742,7 @@ public class ChatEditTypeActivity extends BaseFragment implements NotificationCe } permanentLinkView.updateColors(); - // manageLinksTextView.setBackgroundDrawable(Theme.getSelectorDrawable(true)); + manageLinksTextView.setBackgroundDrawable(Theme.getSelectorDrawable(true)); if (inviteLinkBottomSheet != null) { inviteLinkBottomSheet.updateColors(); } @@ -783,9 +783,9 @@ public class ChatEditTypeActivity extends BaseFragment implements NotificationCe themeDescriptions.add(new ThemeDescription(typeInfoCell, ThemeDescription.FLAG_CHECKTAG, new Class[]{TextInfoPrivacyCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayText4)); themeDescriptions.add(new ThemeDescription(typeInfoCell, ThemeDescription.FLAG_CHECKTAG, new Class[]{TextInfoPrivacyCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteRedText4)); -// themeDescriptions.add(new ThemeDescription(manageLinksInfoCell, ThemeDescription.FLAG_BACKGROUNDFILTER, new Class[]{TextInfoPrivacyCell.class}, null, null, null, Theme.key_windowBackgroundGrayShadow)); -// themeDescriptions.add(new ThemeDescription(manageLinksInfoCell, ThemeDescription.FLAG_CHECKTAG, new Class[]{TextInfoPrivacyCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayText4)); -// themeDescriptions.add(new ThemeDescription(manageLinksInfoCell, ThemeDescription.FLAG_CHECKTAG, new Class[]{TextInfoPrivacyCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteRedText4)); + themeDescriptions.add(new ThemeDescription(manageLinksInfoCell, ThemeDescription.FLAG_BACKGROUNDFILTER, new Class[]{TextInfoPrivacyCell.class}, null, null, null, Theme.key_windowBackgroundGrayShadow)); + themeDescriptions.add(new ThemeDescription(manageLinksInfoCell, ThemeDescription.FLAG_CHECKTAG, new Class[]{TextInfoPrivacyCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayText4)); + themeDescriptions.add(new ThemeDescription(manageLinksInfoCell, ThemeDescription.FLAG_CHECKTAG, new Class[]{TextInfoPrivacyCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteRedText4)); themeDescriptions.add(new ThemeDescription(adminedInfoCell, ThemeDescription.FLAG_BACKGROUNDFILTER, new Class[]{TextInfoPrivacyCell.class}, null, null, null, Theme.key_windowBackgroundGrayShadow)); themeDescriptions.add(new ThemeDescription(adminnedChannelsLayout, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_windowBackgroundWhite)); @@ -814,9 +814,9 @@ public class ChatEditTypeActivity extends BaseFragment implements NotificationCe themeDescriptions.add(new ThemeDescription(null, 0, null, null, null, cellDelegate, Theme.key_avatar_backgroundBlue)); themeDescriptions.add(new ThemeDescription(null, 0, null, null, null, cellDelegate, Theme.key_avatar_backgroundPink)); -// themeDescriptions.add(new ThemeDescription(manageLinksTextView, ThemeDescription.FLAG_SELECTOR, null, null, null, null, Theme.key_listSelector)); -// themeDescriptions.add(new ThemeDescription(manageLinksTextView, ThemeDescription.FLAG_TEXTCOLOR, new Class[]{TextCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlackText)); -// themeDescriptions.add(new ThemeDescription(manageLinksTextView, 0, new Class[]{TextCell.class}, new String[]{"imageView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayIcon)); + themeDescriptions.add(new ThemeDescription(manageLinksTextView, ThemeDescription.FLAG_SELECTOR, null, null, null, null, Theme.key_listSelector)); + themeDescriptions.add(new ThemeDescription(manageLinksTextView, ThemeDescription.FLAG_TEXTCOLOR, new Class[]{TextCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlackText)); + themeDescriptions.add(new ThemeDescription(manageLinksTextView, 0, new Class[]{TextCell.class}, new String[]{"imageView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayIcon)); return themeDescriptions; diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ChatRightsEditActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ChatRightsEditActivity.java index 264ffa0cc..f33214866 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ChatRightsEditActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ChatRightsEditActivity.java @@ -954,12 +954,20 @@ public class ChatRightsEditActivity extends BaseFragment { } else { adminRights.post_messages = adminRights.edit_messages = false; } + if (!adminRights.change_info && !adminRights.post_messages && !adminRights.edit_messages && + !adminRights.delete_messages && !adminRights.ban_users && !adminRights.invite_users && + !adminRights.pin_messages && !adminRights.add_admins && !adminRights.anonymous && !adminRights.manage_call) { + adminRights.other = true; + } else { + adminRights.other = false; + } MessagesController.getInstance(currentAccount).setUserAdminRole(chatId, currentUser, adminRights, currentRank, isChannel, getFragmentForAlert(1), isAddingNew); if (delegate != null) { delegate.didSetRights( adminRights.change_info || adminRights.post_messages || adminRights.edit_messages || adminRights.delete_messages || adminRights.ban_users || adminRights.invite_users || - adminRights.pin_messages || adminRights.add_admins || adminRights.anonymous || adminRights.manage_call ? 1 : 0, adminRights, bannedRights, currentRank); + adminRights.pin_messages || adminRights.add_admins || adminRights.anonymous || adminRights.manage_call || + adminRights.other ? 1 : 0, adminRights, bannedRights, currentRank); } } else if (currentType == TYPE_BANNED) { MessagesController.getInstance(currentAccount).setUserBannedRole(chatId, currentUser, bannedRights, isChannel, getFragmentForAlert(1)); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ChatUsersActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ChatUsersActivity.java index a10e462c1..71820530a 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ChatUsersActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ChatUsersActivity.java @@ -37,7 +37,6 @@ import android.widget.FrameLayout; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; -import android.widget.Toast; import androidx.recyclerview.widget.DefaultItemAnimator; import androidx.recyclerview.widget.DiffUtil; @@ -74,6 +73,7 @@ import org.telegram.ui.Cells.TextInfoPrivacyCell; import org.telegram.ui.Cells.TextSettingsCell; import org.telegram.ui.Components.BulletinFactory; import org.telegram.ui.Components.FlickerLoadingView; +import org.telegram.ui.Components.GigagroupConvertAlert; import org.telegram.ui.Components.IntSeekBarAccessibilityDelegate; import org.telegram.ui.Components.LayoutHelper; import org.telegram.ui.Components.RadialProgressView; @@ -130,6 +130,10 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente private int addUsersRow; private int pinMessagesRow; + private int gigaHeaderRow; + private int gigaConvertRow; + private int gigaInfoRow; + private int recentActionsRow; private int addNewRow; private int addNew2Row; @@ -443,6 +447,9 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente participantsStartRow = -1; participantsDividerRow = -1; participantsDivider2Row = -1; + gigaInfoRow = -1; + gigaConvertRow = -1; + gigaHeaderRow = -1; participantsEndRow = -1; participantsInfoRow = -1; blockedEmptyRow = -1; @@ -479,16 +486,29 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente sendMessagesRow = rowCount++; sendMediaRow = rowCount++; sendStickersRow = rowCount++; - sendGamesRow = rowCount ++; - sendInlineRow = rowCount ++; + sendGamesRow = rowCount++; + sendInlineRow = rowCount++; sendGifsRow = rowCount++; sendPollsRow = rowCount++; embedLinksRow = rowCount++; addUsersRow = rowCount++; pinMessagesRow = rowCount++; changeInfoRow = rowCount++; - if (!ChatObject.isChannel(currentChat) && currentChat.creator || currentChat.megagroup && ChatObject.canBlockUsers(currentChat)) { - participantsDivider2Row = rowCount++; + + if (ChatObject.isChannel(currentChat) && currentChat.creator && currentChat.megagroup && !currentChat.gigagroup) { + int count = Math.max(currentChat.participants_count, info != null ? info.participants_count : 0); + if (count >= getMessagesController().maxMegagroupCount - 1000) { + participantsDivider2Row = rowCount++; + gigaHeaderRow = rowCount++; + gigaConvertRow = rowCount++; + gigaInfoRow = rowCount++; + } + } + + if (!ChatObject.isChannel(currentChat) && currentChat.creator || currentChat.megagroup && !currentChat.gigagroup && ChatObject.canBlockUsers(currentChat)) { + if (participantsDivider2Row == -1) { + participantsDivider2Row = rowCount++; + } slowmodeRow = rowCount++; slowmodeSelectRow = rowCount++; slowmodeInfoRow = rowCount++; @@ -499,14 +519,20 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente } removedUsersRow = rowCount++; } - if (slowmodeInfoRow == -1 || removedUsersRow != -1) { + if (slowmodeInfoRow == -1 && gigaHeaderRow == -1 || removedUsersRow != -1) { participantsDividerRow = rowCount++; } if (ChatObject.canBlockUsers(currentChat)) { addNewRow = rowCount++; } - if (!(loadingUsers && !firstLoaded)) { + if (loadingUsers && !firstLoaded) { + if (!firstLoaded) { + if (info != null && info.banned_count > 0) { + loadingUserCellRow = rowCount++; + } + } + } else { if (!participants.isEmpty()) { participantsStartRow = rowCount; rowCount += participants.size(); @@ -515,10 +541,6 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente if (addNewRow != -1 || participantsStartRow != -1) { addNewSectionRow = rowCount++; } - } else if (!firstLoaded) { - if (info != null && info.banned_count > 0) { - loadingUserCellRow = rowCount++; - } } } else if (type == TYPE_BANNED) { if (ChatObject.canBlockUsers(currentChat)) { @@ -541,7 +563,7 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente addNewSectionRow = rowCount++; } } else { - restricted1SectionRow = rowCount++; + //restricted1SectionRow = rowCount++; blockedEmptyRow = rowCount++; } } else if (!firstLoaded) { @@ -549,8 +571,8 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente loadingUserCellRow = rowCount++; } } else if (type == TYPE_ADMIN) { - if (ChatObject.isChannel(currentChat) && currentChat.megagroup && (info == null || info.participants_count <= 200) - && ChatObject.hasAdminRights(currentChat)) { + if (ChatObject.isChannel(currentChat) && currentChat.megagroup && !currentChat.gigagroup && (info == null || info.participants_count <= 200) + && ChatObject.hasAdminRights(currentChat)) { recentActionsRow = rowCount++; addNewSectionRow = rowCount++; } @@ -763,7 +785,7 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente listView.setLayoutManager(layoutManager = new LinearLayoutManager(context, LinearLayoutManager.VERTICAL, false) { @Override public int scrollVerticallyBy(int dy, RecyclerView.Recycler recycler, RecyclerView.State state) { - if (!firstLoaded && type != TYPE_KICKED) { + if (!firstLoaded && type == TYPE_BANNED && participants.size() == 0) { return 0; } return super.scrollVerticallyBy(dy, recycler, state); @@ -795,6 +817,26 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente public long getAddDuration() { return 220; } + + int animationIndex = -1; + + @Override + protected void onAllAnimationsDone() { + super.onAllAnimationsDone(); + getNotificationCenter().onAnimationFinish(animationIndex); + } + + @Override + public void runPendingAnimations() { + boolean removalsPending = !mPendingRemovals.isEmpty(); + boolean movesPending = !mPendingMoves.isEmpty(); + boolean changesPending = !mPendingChanges.isEmpty(); + boolean additionsPending = !mPendingAdditions.isEmpty(); + if (removalsPending || movesPending || additionsPending || changesPending) { + animationIndex = getNotificationCenter().setAnimationInProgress(animationIndex, null); + } + super.runPendingAnimations(); + } }; listView.setItemAnimator(itemAnimator); itemAnimator.setSupportsChangeAnimations(false); @@ -959,6 +1001,35 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente fragment.setInfo(info); presentFragment(fragment); return; + } else if (position == gigaConvertRow) { + showDialog(new GigagroupConvertAlert(getParentActivity(), ChatUsersActivity.this) { + @Override + protected void onCovert() { + getMessagesController().convertToGigaGroup(getParentActivity(), currentChat, ChatUsersActivity.this, (result) -> { + if (result && parentLayout != null) { + BaseFragment editActivity = parentLayout.fragmentsStack.get(parentLayout.fragmentsStack.size() - 2); + if (editActivity instanceof ChatEditActivity) { + editActivity.removeSelfFromStack(); + + Bundle args = new Bundle(); + args.putInt("chat_id", chatId); + ChatEditActivity fragment = new ChatEditActivity(args); + fragment.setInfo(info); + parentLayout.addFragmentToStack(fragment, parentLayout.fragmentsStack.size() - 1); + finishFragment(); + fragment.showConvertTooltip(); + } else { + finishFragment(); + } + } + }); + } + + @Override + protected void onCancel() { + + } + }); } else if (position == addNew2Row) { presentFragment(new GroupInviteActivity(chatId)); return; @@ -969,9 +1040,9 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente } if (checkCell.hasIcon()) { if (!TextUtils.isEmpty(currentChat.username) && (position == pinMessagesRow || position == changeInfoRow)) { - Toast.makeText(getParentActivity(), LocaleController.getString("EditCantEditPermissionsPublic", R.string.EditCantEditPermissionsPublic), Toast.LENGTH_SHORT).show(); + BulletinFactory.of(this).createErrorBulletin(LocaleController.getString("EditCantEditPermissionsPublic", R.string.EditCantEditPermissionsPublic)).show(); } else { - Toast.makeText(getParentActivity(), LocaleController.getString("EditCantEditPermissions", R.string.EditCantEditPermissions), Toast.LENGTH_SHORT).show(); + BulletinFactory.of(this).createErrorBulletin(LocaleController.getString("EditCantEditPermissions", R.string.EditCantEditPermissions)).show(); } return; } @@ -1719,7 +1790,7 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente getMessagesController().deleteUserFromChat(chatId, user, null); removeParticipants(userId); if (currentChat != null && user != null && BulletinFactory.canShowBulletin(this)) { - BulletinFactory.createRemoveFromChatBulletin(this, user.first_name, currentChat.title).show(); + BulletinFactory.createRemoveFromChatBulletin(this, user, currentChat.title).show(); } } else { if (actions.get(i) == 1 && canEditAdmin && (participant instanceof TLRPC.TL_channelParticipantAdmin || participant instanceof TLRPC.TL_chatParticipantAdmin)) { @@ -3109,6 +3180,8 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente } else { privacyCell.setText(LocaleController.formatString("SlowmodeInfoSelected", R.string.SlowmodeInfoSelected, formatSeconds(seconds))); } + } else if (position == gigaInfoRow) { + privacyCell.setText(LocaleController.getString("BroadcastGroupConvertInfo", R.string.BroadcastGroupConvertInfo)); } break; case 2: @@ -3137,6 +3210,9 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente actionCell.setText(LocaleController.getString("EventLog", R.string.EventLog), null, R.drawable.baseline_content_copy_24, false); } else if (position == addNew2Row) { actionCell.setText(LocaleController.getString("ChannelInviteViaLink", R.string.ChannelInviteViaLink), null, R.drawable.profile_link, true); + } else if (position == gigaConvertRow) { + actionCell.setColors(Theme.key_windowBackgroundWhiteBlueIcon, Theme.key_windowBackgroundWhiteBlueButton); + actionCell.setText(LocaleController.getString("BroadcastGroupConvert", R.string.BroadcastGroupConvert), null, R.drawable.msg_channel, false); } break; case 3: @@ -3163,6 +3239,8 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente headerCell.setText(LocaleController.getString("ChannelPermissionsHeader", R.string.ChannelPermissionsHeader)); } else if (position == slowmodeRow) { headerCell.setText(LocaleController.getString("Slowmode", R.string.Slowmode)); + } else if (position == gigaHeaderRow) { + headerCell.setText(LocaleController.getString("BroadcastGroup", R.string.BroadcastGroup)); } break; case 6: @@ -3253,7 +3331,7 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente @Override public int getItemViewType(int position) { - if (position == addNewRow || position == addNew2Row || position == recentActionsRow) { + if (position == addNewRow || position == addNew2Row || position == recentActionsRow || position == gigaConvertRow) { return 2; } else if (position >= participantsStartRow && position < participantsEndRow || position >= botStartRow && position < botEndRow || @@ -3261,9 +3339,9 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente return 0; } else if (position == addNewSectionRow || position == participantsDividerRow || position == participantsDivider2Row) { return 3; - } else if (position == restricted1SectionRow || position == permissionsSectionRow || position == slowmodeRow) { + } else if (position == restricted1SectionRow || position == permissionsSectionRow || position == slowmodeRow || position == gigaHeaderRow) { return 5; - } else if (position == participantsInfoRow || position == slowmodeInfoRow) { + } else if (position == participantsInfoRow || position == slowmodeInfoRow || position == gigaInfoRow) { return 1; } else if (position == blockedEmptyRow) { return 4; @@ -3404,6 +3482,9 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente put(++pointer, restricted1SectionRow, sparseIntArray); put(++pointer, participantsDividerRow, sparseIntArray); put(++pointer, participantsDivider2Row, sparseIntArray); + put(++pointer, gigaHeaderRow, sparseIntArray); + put(++pointer, gigaConvertRow, sparseIntArray); + put(++pointer, gigaInfoRow, sparseIntArray); put(++pointer, participantsInfoRow, sparseIntArray); put(++pointer, blockedEmptyRow, sparseIntArray); put(++pointer, permissionsSectionRow, sparseIntArray); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ChatsWidgetConfigActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ChatsWidgetConfigActivity.java new file mode 100644 index 000000000..cd502ffff --- /dev/null +++ b/TMessagesProj/src/main/java/org/telegram/ui/ChatsWidgetConfigActivity.java @@ -0,0 +1,58 @@ +package org.telegram.ui; + +import android.appwidget.AppWidgetManager; +import android.content.Intent; +import android.os.Bundle; +import android.view.View; + +import org.telegram.messenger.AndroidUtilities; + +public class ChatsWidgetConfigActivity extends ExternalActionActivity { + + private int creatingAppWidgetId = AppWidgetManager.INVALID_APPWIDGET_ID; + + @Override + protected boolean handleIntent(Intent intent, boolean isNew, boolean restore, boolean fromPassword, int intentAccount, int state) { + if (!checkPasscode(intent, isNew, restore, fromPassword, intentAccount, state)) { + return false; + } + Bundle extras = intent.getExtras(); + if (extras != null) { + creatingAppWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID, AppWidgetManager.INVALID_APPWIDGET_ID); + } + if (creatingAppWidgetId != AppWidgetManager.INVALID_APPWIDGET_ID) { + Bundle args = new Bundle(); + args.putBoolean("onlySelect", true); + args.putInt("dialogsType", 10); + args.putBoolean("allowSwitchAccount", true); + EditWidgetActivity fragment = new EditWidgetActivity(EditWidgetActivity.TYPE_CHATS, creatingAppWidgetId, false); + fragment.setDelegate(dialogs -> { + Intent resultValue = new Intent(); + resultValue.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, creatingAppWidgetId); + setResult(RESULT_OK, resultValue); + finish(); + }); + + if (AndroidUtilities.isTablet()) { + if (layersActionBarLayout.fragmentsStack.isEmpty()) { + layersActionBarLayout.addFragmentToStack(fragment); + } + } else { + if (actionBarLayout.fragmentsStack.isEmpty()) { + actionBarLayout.addFragmentToStack(fragment); + } + } + if (!AndroidUtilities.isTablet()) { + backgroundTablet.setVisibility(View.GONE); + } + actionBarLayout.showLastFragment(); + if (AndroidUtilities.isTablet()) { + layersActionBarLayout.showLastFragment(); + } + intent.setAction(null); + } else { + finish(); + } + return true; + } +} diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/AdminLogFilterAlert.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/AdminLogFilterAlert.java index b1cfedcb1..36af11242 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/AdminLogFilterAlert.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/AdminLogFilterAlert.java @@ -22,6 +22,9 @@ import android.view.View; import android.view.ViewGroup; import android.widget.FrameLayout; +import androidx.recyclerview.widget.LinearLayoutManager; +import androidx.recyclerview.widget.RecyclerView; + import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.LocaleController; import org.telegram.messenger.MessagesController; @@ -37,9 +40,6 @@ import org.telegram.ui.ContentPreviewViewer; import java.util.ArrayList; import java.util.regex.Pattern; -import androidx.recyclerview.widget.LinearLayoutManager; -import androidx.recyclerview.widget.RecyclerView; - public class AdminLogFilterAlert extends BottomSheet { public interface AdminLogFilterAlertDelegate { @@ -67,6 +67,7 @@ public class AdminLogFilterAlert extends BottomSheet { private int restrictionsRow; private int adminsRow; private int membersRow; + private int invitesRow; private int infoRow; private int deleteRow; private int editRow; @@ -94,6 +95,7 @@ public class AdminLogFilterAlert extends BottomSheet { currentFilter.edit = filter.edit; currentFilter.delete = filter.delete; currentFilter.group_call = filter.group_call; + currentFilter.invites = filter.invites; } if (admins != null) { selectedAdmins = admins.clone(); @@ -108,6 +110,7 @@ public class AdminLogFilterAlert extends BottomSheet { } adminsRow = rowCount++; membersRow = rowCount++; + invitesRow = rowCount++; infoRow = rowCount++; deleteRow = rowCount++; editRow = rowCount++; @@ -117,8 +120,12 @@ public class AdminLogFilterAlert extends BottomSheet { pinnedRow = -1; } leavingRow = rowCount++; - callsRow = rowCount; - rowCount += 2; + if (isMegagroup) { + callsRow = rowCount++; + } else { + callsRow = -1; + } + rowCount += 1; allAdminsRow = rowCount; shadowDrawable = context.getResources().getDrawable(R.drawable.sheet_shadow_round).mutate(); @@ -147,7 +154,7 @@ public class AdminLogFilterAlert extends BottomSheet { height -= AndroidUtilities.statusBarHeight; } int measuredWidth = getMeasuredWidth(); - int contentSize = AndroidUtilities.dp(48) + (isMegagroup ? 10 : 7) * AndroidUtilities.dp(48) + backgroundPaddingTop; + int contentSize = AndroidUtilities.dp(48) + (isMegagroup ? 11 : 7) * AndroidUtilities.dp(48) + backgroundPaddingTop + AndroidUtilities.dp(17); if (currentAdmins != null) { contentSize += (currentAdmins.size() + 1) * AndroidUtilities.dp(48) + AndroidUtilities.dp(20); } @@ -226,9 +233,9 @@ public class AdminLogFilterAlert extends BottomSheet { if (isChecked) { currentFilter = new TLRPC.TL_channelAdminLogEventsFilter(); currentFilter.join = currentFilter.leave = currentFilter.invite = currentFilter.ban = - currentFilter.unban = currentFilter.kick = currentFilter.unkick = currentFilter.promote = - currentFilter.demote = currentFilter.info = currentFilter.settings = currentFilter.pinned = - currentFilter.edit = currentFilter.delete = currentFilter.group_call = false; + currentFilter.unban = currentFilter.kick = currentFilter.unkick = currentFilter.promote = + currentFilter.demote = currentFilter.info = currentFilter.settings = currentFilter.pinned = + currentFilter.edit = currentFilter.delete = currentFilter.group_call = currentFilter.invites = false; } else { currentFilter = null; } @@ -261,9 +268,9 @@ public class AdminLogFilterAlert extends BottomSheet { if (currentFilter == null) { currentFilter = new TLRPC.TL_channelAdminLogEventsFilter(); currentFilter.join = currentFilter.leave = currentFilter.invite = currentFilter.ban = - currentFilter.unban = currentFilter.kick = currentFilter.unkick = currentFilter.promote = - currentFilter.demote = currentFilter.info = currentFilter.settings = currentFilter.pinned = - currentFilter.edit = currentFilter.delete = currentFilter.group_call = true; + currentFilter.unban = currentFilter.kick = currentFilter.unkick = currentFilter.promote = + currentFilter.demote = currentFilter.info = currentFilter.settings = currentFilter.pinned = + currentFilter.edit = currentFilter.delete = currentFilter.group_call = currentFilter.invites = true; RecyclerView.ViewHolder holder = listView.findViewHolderForAdapterPosition(0); if (holder != null) { ((CheckBoxCell) holder.itemView).setChecked(false, true); @@ -287,14 +294,15 @@ public class AdminLogFilterAlert extends BottomSheet { currentFilter.leave = !currentFilter.leave; } else if (position == callsRow) { currentFilter.group_call = !currentFilter.group_call; + } else if (position == invitesRow) { + currentFilter.invites = !currentFilter.invites; } } - if (currentFilter != null && !currentFilter.join && !currentFilter.leave && - !currentFilter.leave && !currentFilter.invite && !currentFilter.ban && - !currentFilter.unban && !currentFilter.kick && !currentFilter.unkick && - !currentFilter.promote && !currentFilter.demote && !currentFilter.info && - !currentFilter.settings && !currentFilter.pinned && !currentFilter.edit && - !currentFilter.delete && !currentFilter.group_call) { + if (currentFilter != null && + !currentFilter.join && !currentFilter.leave && !currentFilter.invite && !currentFilter.ban && + !currentFilter.invites && !currentFilter.unban && !currentFilter.kick && !currentFilter.unkick && + !currentFilter.promote && !currentFilter.demote && !currentFilter.info && !currentFilter.settings && + !currentFilter.pinned && !currentFilter.edit && !currentFilter.delete && !currentFilter.group_call) { saveButton.setEnabled(false); saveButton.setAlpha(0.5f); } else { @@ -386,7 +394,7 @@ public class AdminLogFilterAlert extends BottomSheet { @Override public int getItemCount() { - return (isMegagroup ? 10 : 7) + (currentAdmins != null ? 2 + currentAdmins.size() : 0); + return (isMegagroup ? 11 : 7) + (currentAdmins != null ? 2 + currentAdmins.size() : 0); } @Override @@ -452,6 +460,8 @@ public class AdminLogFilterAlert extends BottomSheet { cell.setChecked(currentFilter == null || currentFilter.leave, false); } else if (position == callsRow) { cell.setChecked(currentFilter == null || currentFilter.group_call, false); + } else if (position == invitesRow) { + cell.setChecked(currentFilter == null || currentFilter.invites, false); } else if (position == allAdminsRow) { cell.setChecked(selectedAdmins == null, false); } @@ -492,9 +502,11 @@ public class AdminLogFilterAlert extends BottomSheet { } else if (position == pinnedRow) { cell.setText(LocaleController.getString("EventLogFilterPinnedMessages", R.string.EventLogFilterPinnedMessages), "", currentFilter == null || currentFilter.pinned, true); } else if (position == leavingRow) { - cell.setText(LocaleController.getString("EventLogFilterLeavingMembers", R.string.EventLogFilterLeavingMembers), "", currentFilter == null || currentFilter.leave, true); + cell.setText(LocaleController.getString("EventLogFilterLeavingMembers", R.string.EventLogFilterLeavingMembers), "", currentFilter == null || currentFilter.leave, callsRow != -1); } else if (position == callsRow) { cell.setText(LocaleController.getString("EventLogFilterCalls", R.string.EventLogFilterCalls), "", currentFilter == null || currentFilter.group_call, false); + } else if (position == invitesRow) { + cell.setText(LocaleController.getString("EventLogFilterInvites", R.string.EventLogFilterInvites), "", currentFilter == null || currentFilter.invites, true); } else if (position == allAdminsRow) { cell.setText(LocaleController.getString("EventLogAllAdmins", R.string.EventLogAllAdmins), "", selectedAdmins == null, true); } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/AlertsCreator.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/AlertsCreator.java index 94c7f3f33..20d270fae 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/AlertsCreator.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/AlertsCreator.java @@ -92,7 +92,6 @@ import org.telegram.ui.LaunchActivity; import org.telegram.ui.NotificationsCustomSettingsActivity; import org.telegram.ui.NotificationsSettingsActivity; import org.telegram.ui.ProfileNotificationsActivity; -import org.telegram.ui.ReportOtherActivity; import org.telegram.ui.ThemePreviewActivity; import org.telegram.ui.TooManyCommunitiesActivity; @@ -117,7 +116,7 @@ public class AlertsCreator { if (error.code == 406 || error.text == null) { return null; } - if (request instanceof TLRPC.TL_messages_initHistoryImport || request instanceof TLRPC.TL_messages_checkHistoryImport || request instanceof TLRPC.TL_messages_startHistoryImport) { + if (request instanceof TLRPC.TL_messages_initHistoryImport || request instanceof TLRPC.TL_messages_checkHistoryImportPeer || request instanceof TLRPC.TL_messages_checkHistoryImport || request instanceof TLRPC.TL_messages_startHistoryImport) { TLRPC.InputPeer peer; if (request instanceof TLRPC.TL_messages_initHistoryImport) { peer = ((TLRPC.TL_messages_initHistoryImport) request).peer; @@ -140,6 +139,8 @@ public class AlertsCreator { showSimpleAlert(fragment, LocaleController.getString("ImportErrorTitle", R.string.ImportErrorTitle), LocaleController.getString("ImportErrorNotAdmin", R.string.ImportErrorNotAdmin)); } else if (error.text.startsWith("IMPORT_FORMAT")) { showSimpleAlert(fragment, LocaleController.getString("ImportErrorTitle", R.string.ImportErrorTitle), LocaleController.getString("ImportErrorFileFormatInvalid", R.string.ImportErrorFileFormatInvalid)); + } else if (error.text.startsWith("PEER_ID_INVALID")) { + showSimpleAlert(fragment, LocaleController.getString("ImportErrorTitle", R.string.ImportErrorTitle), LocaleController.getString("ImportErrorPeerInvalid", R.string.ImportErrorPeerInvalid)); } else if (error.text.contains("IMPORT_LANG_NOT_FOUND")) { showSimpleAlert(fragment, LocaleController.getString("ImportErrorTitle", R.string.ImportErrorTitle), LocaleController.getString("ImportErrorFileLang", R.string.ImportErrorFileLang)); } else if (error.text.contains("IMPORT_UPLOAD_FAILED")) { @@ -233,6 +234,8 @@ public class AlertsCreator { showSimpleAlert(fragment, LocaleController.getString("JoinToGroupErrorFull", R.string.JoinToGroupErrorFull)); } else if (error.text.equals("CHANNELS_TOO_MUCH")) { fragment.presentFragment(new TooManyCommunitiesActivity(TooManyCommunitiesActivity.TYPE_JOIN)); + } else if (error.text.equals("INVITE_HASH_EXPIRED")) { + showSimpleAlert(fragment, LocaleController.getString("ExpiredLink", R.string.ExpiredLink), LocaleController.getString("InviteExpired", R.string.InviteExpired)); } else { showSimpleAlert(fragment, LocaleController.getString("JoinToGroupErrorNotExist", R.string.JoinToGroupErrorNotExist)); } @@ -579,7 +582,13 @@ public class AlertsCreator { if (cells[0].isChecked()) { request.report_spam = true; if (fragment.getParentActivity() != null) { - Toast.makeText(fragment.getParentActivity(), LocaleController.getString("ReportChatSent", R.string.ReportChatSent), Toast.LENGTH_SHORT).show(); + if (fragment instanceof ChatActivity) { + fragment.getUndoView().showWithAction(0, UndoView.ACTION_REPORT_SENT, null); + } else if (fragment != null) { + BulletinFactory.of(fragment).createReportSent().show(); + } else { + Toast.makeText(fragment.getParentActivity(), LocaleController.getString("ReportChatSent", R.string.ReportChatSent), Toast.LENGTH_SHORT).show(); + } } } accountInstance.getConnectionsManager().sendRequest(request, (response, error) -> { @@ -1088,7 +1097,7 @@ public class AlertsCreator { } } - public static void createImportDialogAlert(BaseFragment fragment, String title, TLRPC.User user, TLRPC.Chat chat, Runnable onProcessRunnable) { + public static void createImportDialogAlert(BaseFragment fragment, String title, String message, TLRPC.User user, TLRPC.Chat chat, Runnable onProcessRunnable) { if (fragment == null || fragment.getParentActivity() == null || chat == null && user == null) { return; } @@ -1122,7 +1131,7 @@ public class AlertsCreator { textView.setSingleLine(true); textView.setGravity((LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT) | Gravity.CENTER_VERTICAL); textView.setEllipsize(TextUtils.TruncateAt.END); - textView.setText(LocaleController.formatString("ImportMessages", R.string.ImportMessages)); + textView.setText(LocaleController.getString("ImportMessages", R.string.ImportMessages)); frameLayout.addView(textView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, (LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT) | Gravity.TOP, (LocaleController.isRTL ? 21 : 76), 11, (LocaleController.isRTL ? 76 : 21), 0)); frameLayout.addView(messageTextView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, (LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT) | Gravity.TOP, 24, 57, 24, 9)); @@ -1146,7 +1155,8 @@ public class AlertsCreator { imageView.setImage(ImageLocation.getForChat(chat, false), "50_50", avatarDrawable, chat); } - if (chat != null) { + messageTextView.setText(AndroidUtilities.replaceTags(message)); + /*if (chat != null) { if (TextUtils.isEmpty(title)) { messageTextView.setText(AndroidUtilities.replaceTags(LocaleController.formatString("ImportToChatNoTitle", R.string.ImportToChatNoTitle, chat.title))); } else { @@ -1158,7 +1168,7 @@ public class AlertsCreator { } else { messageTextView.setText(AndroidUtilities.replaceTags(LocaleController.formatString("ImportToUser", R.string.ImportToUser, title, ContactsController.formatName(user.first_name, user.last_name)))); } - } + }*/ builder.setPositiveButton(LocaleController.getString("Import", R.string.Import), (dialogInterface, i) -> { if (onProcessRunnable != null) { @@ -1271,13 +1281,10 @@ public class AlertsCreator { final boolean[] deleteForAll = {true}; boolean deleteChatForAll = false; - if (!second && (secret || canDeleteInbox) && !UserObject.isDeleted(user) || (deleteChatForAll = checkDeleteForAll && !clear && chat != null && chat.creator)) { + if (!second && (secret && !clear || canDeleteInbox) && !UserObject.isDeleted(user) || (deleteChatForAll = checkDeleteForAll && !clear && chat != null && chat.creator)) { cell[0] = new CheckBoxCell(context, 1); cell[0].setBackgroundDrawable(Theme.getSelectorDrawable(false)); - if (secret) { - cell[0].setText(LocaleController.formatString("DeleteForUser", R.string.DeleteForUser, UserObject.getFirstName(user)), "", deleteForAll[0], false); - } else if (deleteChatForAll) { - deleteForAll[0] = false; + if (deleteChatForAll) { if (ChatObject.isChannel(chat) && !chat.megagroup) { cell[0].setText(LocaleController.getString("DeleteChannelForAll", R.string.DeleteChannelForAll), "", deleteForAll[0], false); } else { @@ -2419,6 +2426,29 @@ public class AlertsCreator { return builder.create(); } + public static void sendReport(TLRPC.InputPeer peer, int type, String message, ArrayList messages) { + TLRPC.TL_messages_report request = new TLRPC.TL_messages_report(); + request.peer = peer; + request.id.addAll(messages); + request.message = message; + if (type == 0) { + request.reason = new TLRPC.TL_inputReportReasonSpam(); + } else if (type == 1) { + request.reason = new TLRPC.TL_inputReportReasonFake(); + } else if (type == 2) { + request.reason = new TLRPC.TL_inputReportReasonViolence(); + } else if (type == 3) { + request.reason = new TLRPC.TL_inputReportReasonChildAbuse(); + } else if (type == 4) { + request.reason = new TLRPC.TL_inputReportReasonPornography(); + } else if (type == 5) { + request.reason = new TLRPC.TL_inputReportReasonOther(); + } + ConnectionsManager.getInstance(UserConfig.selectedAccount).sendRequest(request, (response, error) -> { + + }); + } + public static void createReportAlert(final Context context, final long dialog_id, final int messageId, final BaseFragment parentFragment) { if (context == null || parentFragment == null) { return; @@ -2427,6 +2457,7 @@ public class AlertsCreator { BottomBuilder builder = new BottomBuilder(context); builder.addTitle(LocaleController.getString("ReportChat", R.string.ReportChat), true); String[] items; + int[] icons; if (messageId != 0) { items = new String[]{ LocaleController.getString("ReportChatSpam", R.string.ReportChatSpam), @@ -2435,6 +2466,13 @@ public class AlertsCreator { LocaleController.getString("ReportChatPornography", R.string.ReportChatPornography), LocaleController.getString("ReportChatOther", R.string.ReportChatOther) }; + icons = new int[]{ + R.drawable.msg_report_spam, + R.drawable.msg_report_violence, + R.drawable.msg_report_abuse, + R.drawable.msg_report_xxx, + R.drawable.msg_report_other + }; } else { items = new String[]{ LocaleController.getString("ReportChatSpam", R.string.ReportChatSpam), @@ -2444,53 +2482,81 @@ public class AlertsCreator { LocaleController.getString("ReportChatPornography", R.string.ReportChatPornography), LocaleController.getString("ReportChatOther", R.string.ReportChatOther) }; + icons = new int[]{ + R.drawable.msg_report_spam, + R.drawable.msg_report_fake, + R.drawable.msg_report_violence, + R.drawable.msg_report_abuse, + R.drawable.msg_report_xxx, + R.drawable.msg_report_other + }; } builder.addItems(items, null, (i, text, cell) -> { - if (i == 4) { - Bundle args = new Bundle(); - args.putLong("dialog_id", dialog_id); - args.putLong("message_id", messageId); - parentFragment.presentFragment(new ReportOtherActivity(args)); - return Unit.INSTANCE; - } - TLObject req; - TLRPC.InputPeer peer = MessagesController.getInstance(UserConfig.selectedAccount).getInputPeer((int) dialog_id); - if (messageId != 0) { - TLRPC.TL_messages_report request = new TLRPC.TL_messages_report(); - request.peer = peer; - request.id.add(messageId); - if (i == 0) { - request.reason = new TLRPC.TL_inputReportReasonSpam(); - } else if (i == 1) { - request.reason = new TLRPC.TL_inputReportReasonViolence(); - } else if (i == 2) { - request.reason = new TLRPC.TL_inputReportReasonChildAbuse(); - } else if (i == 3) { - request.reason = new TLRPC.TL_inputReportReasonPornography(); + if (messageId == 0 && (i == 0 || i == 2 || i == 3 || i == 4) && parentFragment instanceof ChatActivity) { + ((ChatActivity) parentFragment).openReportChat(i); + return Unit.INSTANCE; + } else if (messageId == 0 && (i == 5 || i == 1) || messageId != 0 && i == 4) { + parentFragment.showDialog(new ReportAlert(context, i == 4 ? 5 : i) { + @Override + protected void onSend(int type, String message) { + ArrayList ids = new ArrayList<>(); + if (messageId != 0) { + ids.add(messageId); } - req = request; - } else { - TLRPC.TL_account_reportPeer request = new TLRPC.TL_account_reportPeer(); - request.peer = peer; - if (i == 0) { - request.reason = new TLRPC.TL_inputReportReasonSpam(); - } else if (i == 1) { - request.reason = new TLRPC.TL_inputReportReasonFake(); - } else if (i == 2) { - request.reason = new TLRPC.TL_inputReportReasonViolence(); - } else if (i == 3) { - request.reason = new TLRPC.TL_inputReportReasonChildAbuse(); - } else if (i == 4) { - request.reason = new TLRPC.TL_inputReportReasonPornography(); + TLRPC.InputPeer peer = MessagesController.getInstance(UserConfig.selectedAccount).getInputPeer((int) dialog_id); + sendReport(peer, type, message, ids); + if (parentFragment instanceof ChatActivity) { + ((ChatActivity) parentFragment).getUndoView().showWithAction(0, UndoView.ACTION_REPORT_SENT, null); } - req = request; } - ConnectionsManager.getInstance(UserConfig.selectedAccount).sendRequest(req, (response, error) -> AlertUtil.showToast(error)); - Toast.makeText(context, LocaleController.getString("ReportChatSent", R.string.ReportChatSent), Toast.LENGTH_SHORT).show(); - - return Unit.INSTANCE; + }); + return Unit.INSTANCE; + } + TLObject req; + TLRPC.InputPeer peer = MessagesController.getInstance(UserConfig.selectedAccount).getInputPeer((int) dialog_id); + if (messageId != 0) { + TLRPC.TL_messages_report request = new TLRPC.TL_messages_report(); + request.peer = peer; + request.id.add(messageId); + request.message = ""; + if (i == 0) { + request.reason = new TLRPC.TL_inputReportReasonSpam(); + } else if (i == 1) { + request.reason = new TLRPC.TL_inputReportReasonViolence(); + } else if (i == 2) { + request.reason = new TLRPC.TL_inputReportReasonChildAbuse(); + } else if (i == 3) { + request.reason = new TLRPC.TL_inputReportReasonPornography(); } - ); + req = request; + } else { + TLRPC.TL_account_reportPeer request = new TLRPC.TL_account_reportPeer(); + request.peer = peer; + request.message = ""; + if (i == 0) { + request.reason = new TLRPC.TL_inputReportReasonSpam(); + } else if (i == 1) { + request.reason = new TLRPC.TL_inputReportReasonFake(); + } else if (i == 2) { + request.reason = new TLRPC.TL_inputReportReasonViolence(); + } else if (i == 3) { + request.reason = new TLRPC.TL_inputReportReasonChildAbuse(); + } else if (i == 4) { + request.reason = new TLRPC.TL_inputReportReasonPornography(); + } + req = request; + } + ConnectionsManager.getInstance(UserConfig.selectedAccount).sendRequest(req, (response, error) -> AlertUtil.showToast(error)); + if (parentFragment instanceof ChatActivity) { + ((ChatActivity) parentFragment).getUndoView().showWithAction(0, UndoView.ACTION_REPORT_SENT, null); + } else { + BulletinFactory.of(parentFragment).createReportSent().show(); + + return Unit.INSTANCE; + } + + return Unit.INSTANCE; + }); BottomSheet sheet = builder.create(); parentFragment.showDialog(sheet); } @@ -2966,6 +3032,33 @@ public class AlertsCreator { return builder; } + public static AlertDialog.Builder createGigagroupConvertAlert(Activity activity, DialogInterface.OnClickListener onProcess, DialogInterface.OnClickListener onCancel) { + AlertDialog.Builder builder = new AlertDialog.Builder(activity); + String svg = RLottieDrawable.readRes(null, R.raw.gigagroup); + FrameLayout frameLayout = new FrameLayout(activity); + if (Build.VERSION.SDK_INT >= 21) { + frameLayout.setClipToOutline(true); + frameLayout.setOutlineProvider(new ViewOutlineProvider() { + @Override + public void getOutline(View view, Outline outline) { + outline.setRoundRect(0, 0, view.getMeasuredWidth(), view.getMeasuredHeight() + AndroidUtilities.dp(6), AndroidUtilities.dp(6)); + } + }); + } + float aspectRatio = 372f / 936f; + View background = new View(activity); + background.setBackground(new BitmapDrawable(SvgHelper.getBitmap(svg, AndroidUtilities.dp(320), AndroidUtilities.dp(320 * aspectRatio), false))); + frameLayout.addView(background, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, 0, -1, -1, -1, -1)); + + builder.setTopView(frameLayout); + builder.setTopViewAspectRatio(aspectRatio); + builder.setTitle(LocaleController.getString("GigagroupAlertTitle", R.string.GigagroupAlertTitle)); + builder.setMessage(AndroidUtilities.replaceTags(LocaleController.getString("GigagroupAlertText", R.string.GigagroupAlertText))); + builder.setPositiveButton(LocaleController.getString("GigagroupAlertLearnMore", R.string.GigagroupAlertLearnMore), onProcess); + builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), onCancel); + return builder; + } + @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP) public static AlertDialog.Builder createDrawOverlayPermissionDialog(Activity activity, DialogInterface.OnClickListener onCancel) { AlertDialog.Builder builder = new AlertDialog.Builder(activity); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/AudioPlayerAlert.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/AudioPlayerAlert.java index 9fb16c6fa..de77a0fe0 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/AudioPlayerAlert.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/AudioPlayerAlert.java @@ -583,10 +583,10 @@ public class AudioPlayerAlert extends BottomSheet implements NotificationCenter. textView.setOnClickListener(view -> { int dialogsCount = MessagesController.getInstance(currentAccount).getTotalDialogsCount(); - if (dialogsCount <= 10) { + if (dialogsCount <= 10 || TextUtils.isEmpty(textView.getText().toString())) { return; } - String query = (String) textView.getText(); + String query = textView.getText().toString(); if (parentActivity.getActionBarLayout().getLastFragment() instanceof DialogsActivity) { DialogsActivity dialogsActivity = (DialogsActivity) parentActivity.getActionBarLayout().getLastFragment(); if (!dialogsActivity.onlyDialogsAdapter()) { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/BackgroundGradientDrawable.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/BackgroundGradientDrawable.java index bc86a7a10..622d7a91a 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/BackgroundGradientDrawable.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/BackgroundGradientDrawable.java @@ -240,6 +240,9 @@ public class BackgroundGradientDrawable extends GradientDrawable { for (int i = 0; i < sizesArr.length; i++) { final IntSize size = sizesArr[i]; + if (size.width == 0 || size.height == 0) { + continue; + } final int index = i; Utilities.globalQueue.postRunnable(runnables[i] = () -> { Bitmap gradientBitmap = null; diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/Bulletin.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/Bulletin.java index ebabd512f..dbfc9d2b4 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/Bulletin.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/Bulletin.java @@ -59,6 +59,9 @@ public final class Bulletin { public static final int DURATION_SHORT = 1500; public static final int DURATION_LONG = 2750; + public static final int TYPE_STICKER = 0; + public static final int TYPE_ERROR = 1; + public static Bulletin make(@NonNull ViewGroup containerLayout, @NonNull Layout contentLayout, int duration) { return new Bulletin(containerLayout, contentLayout, duration); } @@ -90,7 +93,7 @@ public final class Bulletin { public static void hide(@NonNull FrameLayout containerLayout, boolean animated) { final Bulletin bulletin = find(containerLayout); if (bulletin != null) { - bulletin.hide(animated && isTransitionsEnabled()); + bulletin.hide(animated && isTransitionsEnabled(), 0); } } @@ -194,7 +197,7 @@ public final class Bulletin { @Override public void onViewDetachedFromWindow(View v) { layout.removeOnAttachStateChangeListener(this); - hide(false); + hide(false, 0); } }); @@ -221,10 +224,14 @@ public final class Bulletin { } public void hide() { - hide(isTransitionsEnabled()); + hide(isTransitionsEnabled(), 0); } - public void hide(boolean animated) { + public void hide(long duration) { + hide(isTransitionsEnabled(), duration); + } + + public void hide(boolean animated, long duration) { if (showing) { showing = false; @@ -241,7 +248,13 @@ public final class Bulletin { layout.transitionRunning = true; layout.delegate = currentDelegate; layout.invalidate(); - ensureLayoutTransitionCreated(); + if (duration >= 0) { + Layout.DefaultTransition transition = new Layout.DefaultTransition(); + transition.duration = duration; + layoutTransition = transition; + } else { + ensureLayoutTransitionCreated(); + } layoutTransition.animateExit(layout, layout::onExitTransitionStart, () -> { if (currentDelegate != null) { currentDelegate.onOffsetChange(0); @@ -682,6 +695,8 @@ public final class Bulletin { public static class DefaultTransition implements Transition { + long duration = 255; + @Override public void animateEnter(@NonNull Layout layout, @Nullable Runnable startAction, @Nullable Runnable endAction, @Nullable Consumer onUpdate, int bottomOffset) { layout.setInOutOffset(layout.getMeasuredHeight()); @@ -689,7 +704,7 @@ public final class Bulletin { onUpdate.accept(layout.getTranslationY()); } final ObjectAnimator animator = ObjectAnimator.ofFloat(layout, IN_OUT_OFFSET_Y2, 0); - animator.setDuration(225); + animator.setDuration(duration); animator.setInterpolator(Easings.easeOutQuad); if (startAction != null || endAction != null) { animator.addListener(new AnimatorListenerAdapter() { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/BulletinFactory.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/BulletinFactory.java index dd6583b48..feda9ab7f 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/BulletinFactory.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/BulletinFactory.java @@ -10,6 +10,7 @@ import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.LocaleController; import org.telegram.messenger.NotificationsController; import org.telegram.messenger.R; +import org.telegram.tgnet.TLRPC; import org.telegram.ui.ActionBar.BaseFragment; public final class BulletinFactory { @@ -26,6 +27,9 @@ public final class BulletinFactory { return fragment != null && fragment.getParentActivity() != null && fragment.getLayoutContainer() != null; } + public static final int ICON_TYPE_NOT_FOUND = 0; + public static final int ICON_TYPE_WARNING = 1; + public enum FileType { PHOTO("PhotoSavedHint", R.string.PhotoSavedHint, Icon.SAVED_TO_GALLERY), @@ -109,6 +113,12 @@ public final class BulletinFactory { this.fragment = null; } + public Bulletin createSimpleBulletin(int iconRawId, String text) { + final Bulletin.LottieLayout layout = new Bulletin.LottieLayout(getContext()); + layout.setAnimation(iconRawId, 36, 36); + layout.textView.setText(text); + return create(layout, Bulletin.DURATION_SHORT); + } @CheckResult public Bulletin createDownloadBulletin(FileType fileType) { @@ -120,6 +130,13 @@ public final class BulletinFactory { return createDownloadBulletin(fileType, filesAmount, 0, 0); } + public Bulletin createReportSent() { + final Bulletin.LottieLayout layout = new Bulletin.LottieLayout(getContext()); + layout.setAnimation(R.raw.chats_infotip); + layout.textView.setText(LocaleController.getString("ReportChatSent", R.string.ReportChatSent)); + return create(layout, Bulletin.DURATION_SHORT); + } + @CheckResult public Bulletin createDownloadBulletin(FileType fileType, int filesAmount, int backgroundColor, int textColor) { final Bulletin.LottieLayout layout; @@ -136,11 +153,29 @@ public final class BulletinFactory { return create(layout, Bulletin.DURATION_SHORT); } + + public Bulletin createErrorBulletin(String errorMessage) { + Bulletin.LottieLayout layout = new Bulletin.LottieLayout(getContext()); + layout.setAnimation(R.raw.chats_infotip); + layout.textView.setText(errorMessage); + layout.textView.setSingleLine(false); + layout.textView.setMaxLines(2); + return create(layout, Bulletin.DURATION_SHORT); + } + @CheckResult public Bulletin createCopyLinkBulletin() { return createCopyLinkBulletin(false); } + @CheckResult + public Bulletin createCopyBulletin(String message) { + final Bulletin.LottieLayout layout = new Bulletin.LottieLayout(getContext()); + layout.setAnimation(R.raw.copy, 36, 36, "NULL ROTATION", "Back", "Front"); + layout.textView.setText(message); + return create(layout, Bulletin.DURATION_SHORT); + } + @CheckResult public Bulletin createCopyLinkBulletin(boolean isPrivate) { if (isPrivate) { @@ -270,10 +305,16 @@ public final class BulletinFactory { } @CheckResult - public static Bulletin createRemoveFromChatBulletin(BaseFragment fragment, String userFirstName, String chatName) { + public static Bulletin createRemoveFromChatBulletin(BaseFragment fragment, TLRPC.User user, String chatName) { final Bulletin.LottieLayout layout = new Bulletin.LottieLayout(fragment.getParentActivity()); layout.setAnimation(R.raw.ic_ban, "Hand"); - layout.textView.setText(AndroidUtilities.replaceTags(LocaleController.formatString("UserRemovedFromChatHint", R.string.UserRemovedFromChatHint, userFirstName, chatName))); + String name; + if (user.deleted) { + name = LocaleController.formatString("HiddenName", R.string.HiddenName); + } else { + name = user.first_name; + } + layout.textView.setText(AndroidUtilities.replaceTags(LocaleController.formatString("UserRemovedFromChatHint", R.string.UserRemovedFromChatHint, name, chatName))); return Bulletin.make(fragment, layout, Bulletin.DURATION_SHORT); } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/ChatAttachAlert.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/ChatAttachAlert.java index 321b15c0d..fcb16b04f 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/ChatAttachAlert.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/ChatAttachAlert.java @@ -598,8 +598,8 @@ public class ChatAttachAlert extends BottomSheet implements NotificationCenter.N AdjustPanLayoutHelper adjustPanLayoutHelper = new AdjustPanLayoutHelper(this) { @Override - protected void onTransitionStart(boolean keyboardVisible) { - super.onTransitionStart(keyboardVisible); + protected void onTransitionStart(boolean keyboardVisible, int contentHeight) { + super.onTransitionStart(keyboardVisible, contentHeight); if (previousScrollOffsetY > 0 && previousScrollOffsetY != scrollOffsetY[0] && keyboardVisible) { fromScrollY = previousScrollOffsetY; toScrollY = scrollOffsetY[0]; diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/ChatAvatarContainer.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/ChatAvatarContainer.java index a3d9b9380..10dac14f2 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/ChatAvatarContainer.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/ChatAvatarContainer.java @@ -65,6 +65,8 @@ public class ChatAvatarContainer extends FrameLayout implements NotificationCent private boolean[] isOnline = new boolean[1]; + private boolean secretChatTimer; + private int onlineCount = -1; private int currentConnectionState; private CharSequence lastSubtitle; @@ -119,14 +121,30 @@ public class ChatAvatarContainer extends FrameLayout implements NotificationCent subtitleTextView.setGravity(Gravity.LEFT); addView(subtitleTextView); - if (needTime) { + if (parentFragment != null) { timeItem = new ImageView(context); timeItem.setPadding(AndroidUtilities.dp(10), AndroidUtilities.dp(10), AndroidUtilities.dp(5), AndroidUtilities.dp(5)); timeItem.setScaleType(ImageView.ScaleType.CENTER); + timeItem.setAlpha(0.0f); + timeItem.setScaleY(0.0f); + timeItem.setScaleX(0.0f); + timeItem.setVisibility(GONE); timeItem.setImageDrawable(timerDrawable = new TimerDrawable(context)); addView(timeItem); - timeItem.setOnClickListener(v -> parentFragment.showDialog(AlertsCreator.createTTLAlert(getContext(), parentFragment.getCurrentEncryptedChat()).create())); - timeItem.setContentDescription(LocaleController.getString("SetTimer", R.string.SetTimer)); + secretChatTimer = needTime; + + timeItem.setOnClickListener(v -> { + if (secretChatTimer) { + parentFragment.showDialog(AlertsCreator.createTTLAlert(getContext(), parentFragment.getCurrentEncryptedChat()).create()); + } else { + openSetTimer(); + } + }); + if (secretChatTimer) { + timeItem.setContentDescription(LocaleController.getString("SetTimer", R.string.SetTimer)); + } else { + timeItem.setContentDescription(LocaleController.getString("AccAutoDeleteTimer", R.string.AccAutoDeleteTimer)); + } } if (parentFragment != null && parentFragment.getChatMode() == 0) { @@ -146,6 +164,33 @@ public class ChatAvatarContainer extends FrameLayout implements NotificationCent } } + public boolean openSetTimer() { + if (parentFragment.getParentActivity() == null) { + return false; + } + TLRPC.Chat chat = parentFragment.getCurrentChat(); + if (chat != null && !ChatObject.canUserDoAdminAction(chat, ChatObject.ACTION_DELETE_MESSAGES)) { + if (timeItem.getTag() != null) { + parentFragment.showTimerHint(); + } + return false; + } + ClearHistoryAlert alert = new ClearHistoryAlert(parentFragment.getParentActivity(), parentFragment.getCurrentUser(), parentFragment.getCurrentChat(), false); + alert.setDelegate(new ClearHistoryAlert.ClearHistoryAlertDelegate() { + @Override + public void onAutoDeleteHistory(int ttl, int action) { + parentFragment.getMessagesController().setDialogHistoryTTL(parentFragment.getDialogId(), ttl); + TLRPC.ChatFull chatInfo = parentFragment.getCurrentChatInfo(); + TLRPC.UserFull userInfo = parentFragment.getCurrentUserInfo(); + if (userInfo != null || chatInfo != null) { + parentFragment.getUndoView().showWithAction(parentFragment.getDialogId(), action, parentFragment.getCurrentUser(), userInfo != null ? userInfo.ttl_period : chatInfo.ttl_period, null, null); + } + } + }); + parentFragment.showDialog(alert); + return true; + } + private void openProfile(boolean byAvatar) { if (byAvatar && (AndroidUtilities.isTablet() || AndroidUtilities.displaySize.x > AndroidUtilities.displaySize.y || !avatarImageView.getImageReceiver().hasNotThumb())) { byAvatar = false; @@ -236,24 +281,51 @@ public class ChatAvatarContainer extends FrameLayout implements NotificationCent leftPadding = value; } - public void showTimeItem() { - if (timeItem == null) { + public void showTimeItem(boolean animated) { + if (timeItem == null || timeItem.getTag() != null) { return; } + timeItem.clearAnimation(); timeItem.setVisibility(VISIBLE); + timeItem.setTag(1); + if (animated) { + timeItem.animate().setDuration(180).alpha(1.0f).scaleX(1.0f).scaleY(1.0f).setListener(null).start(); + } else { + timeItem.setAlpha(1.0f); + timeItem.setScaleY(1.0f); + timeItem.setScaleX(1.0f); + } } - public void hideTimeItem() { - if (timeItem == null) { + public void hideTimeItem(boolean animated) { + if (timeItem == null || timeItem.getTag() == null) { return; } - timeItem.setVisibility(GONE); + timeItem.clearAnimation(); + timeItem.setTag(null); + if (animated) { + timeItem.animate().setDuration(180).alpha(0.0f).scaleX(0.0f).scaleY(0.0f).setListener(new AnimatorListenerAdapter() { + @Override + public void onAnimationEnd(Animator animation) { + timeItem.setVisibility(GONE); + super.onAnimationEnd(animation); + } + }).start(); + } else { + timeItem.setVisibility(GONE); + timeItem.setAlpha(0.0f); + timeItem.setScaleY(0.0f); + timeItem.setScaleX(0.0f); + } } public void setTime(int value) { if (timerDrawable == null) { return; } + if (value == 0 && !secretChatTimer) { + return; + } timerDrawable.setTime(value); } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/ClearHistoryAlert.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/ClearHistoryAlert.java new file mode 100644 index 000000000..81ab12dfb --- /dev/null +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/ClearHistoryAlert.java @@ -0,0 +1,443 @@ +/* + * This is the source code of Telegram for Android v. 7.x.x. + * It is licensed under GNU GPL v. 2 or later. + * You should have received a copy of the license in this archive (see LICENSE). + * + * Copyright Nikolai Kudashov, 2013-2021. + */ + +package org.telegram.ui.Components; + +import android.content.Context; +import android.graphics.Canvas; +import android.graphics.PorterDuff; +import android.graphics.PorterDuffColorFilter; +import android.graphics.drawable.ColorDrawable; +import android.graphics.drawable.Drawable; +import android.text.TextUtils; +import android.util.TypedValue; +import android.view.Gravity; +import android.view.MotionEvent; +import android.view.View; +import android.widget.FrameLayout; +import android.widget.LinearLayout; +import android.widget.TextView; + +import androidx.core.widget.NestedScrollView; + +import org.telegram.messenger.AndroidUtilities; +import org.telegram.messenger.BuildVars; +import org.telegram.messenger.ChatObject; +import org.telegram.messenger.LocaleController; +import org.telegram.messenger.MessagesController; +import org.telegram.messenger.R; +import org.telegram.messenger.UserConfig; +import org.telegram.messenger.UserObject; +import org.telegram.tgnet.TLRPC; +import org.telegram.ui.ActionBar.BottomSheet; +import org.telegram.ui.ActionBar.Theme; +import org.telegram.ui.Cells.CheckBoxCell; +import org.telegram.ui.Cells.HeaderCell; +import org.telegram.ui.Cells.ShadowSectionCell; +import org.telegram.ui.Cells.TextInfoPrivacyCell; + +public class ClearHistoryAlert extends BottomSheet { + + private Drawable shadowDrawable; + private LinearLayout linearLayout; + private BottomSheetCell setTimerButton; + private CheckBoxCell cell; + + private boolean autoDeleteOnly; + private int scrollOffsetY; + + private int[] location = new int[2]; + + private int currentTimer; + private int newTimer; + + private boolean dismissedDelayed; + + private ClearHistoryAlertDelegate delegate; + + public interface ClearHistoryAlertDelegate { + + default void onClearHistory(boolean revoke) { + + } + + default void onAutoDeleteHistory(int ttl, int action) { + + } + } + + public static class BottomSheetCell extends FrameLayout { + + private View background; + private TextView textView; + private LinearLayout linearLayout; + + public BottomSheetCell(Context context) { + super(context); + + background = new View(context); + background.setBackground(Theme.createSimpleSelectorRoundRectDrawable(AndroidUtilities.dp(4), Theme.getColor(Theme.key_featuredStickers_addButton), Theme.getColor(Theme.key_featuredStickers_addButtonPressed))); + addView(background, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, 0, 16, 16, 16, 16)); + + textView = new TextView(context); + textView.setLines(1); + textView.setSingleLine(true); + textView.setGravity(Gravity.CENTER_HORIZONTAL); + textView.setEllipsize(TextUtils.TruncateAt.END); + textView.setGravity(Gravity.CENTER); + textView.setTextColor(Theme.getColor(Theme.key_featuredStickers_buttonText)); + textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); + textView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); + addView(textView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER)); + } + + @Override + protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { + super.onMeasure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(AndroidUtilities.dp(80), MeasureSpec.EXACTLY)); + } + + public void setText(CharSequence text) { + textView.setText(text); + } + } + + public ClearHistoryAlert(final Context context, TLRPC.User user, TLRPC.Chat chat, boolean full) { + super(context, false); + autoDeleteOnly = !full; + setApplyBottomPadding(false); + + int ttl; + if (user != null) { + TLRPC.UserFull userFull = MessagesController.getInstance(currentAccount).getUserFull(user.id); + ttl = userFull != null ? userFull.ttl_period : 0; + } else { + TLRPC.ChatFull chatFull = MessagesController.getInstance(currentAccount).getChatFull(chat.id); + ttl = chatFull != null ? chatFull.ttl_period : 0; + } + if (ttl == 0) { + newTimer = currentTimer = 0; + } else if (ttl == 24 * 60 * 60) { + newTimer = currentTimer = 1; + } else { + newTimer = currentTimer = 2; + } + + shadowDrawable = context.getResources().getDrawable(R.drawable.sheet_shadow_round).mutate(); + shadowDrawable.setColorFilter(new PorterDuffColorFilter(Theme.getColor(Theme.key_dialogBackground), PorterDuff.Mode.MULTIPLY)); + + NestedScrollView scrollView = new NestedScrollView(context) { + + private boolean ignoreLayout; + + @Override + public boolean onInterceptTouchEvent(MotionEvent ev) { + if (ev.getAction() == MotionEvent.ACTION_DOWN && scrollOffsetY != 0 && ev.getY() < scrollOffsetY) { + dismiss(); + return true; + } + return super.onInterceptTouchEvent(ev); + } + + @Override + public boolean onTouchEvent(MotionEvent e) { + return !isDismissed() && super.onTouchEvent(e); + } + + @Override + public void setTranslationY(float translationY) { + super.setTranslationY(translationY); + updateLayout(); + } + + @Override + protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { + int height = MeasureSpec.getSize(heightMeasureSpec); + measureChildWithMargins(linearLayout, widthMeasureSpec, 0, heightMeasureSpec, 0); + int contentHeight = linearLayout.getMeasuredHeight(); + int padding = (height / 5 * 3); + int visiblePart = height - padding; + if (autoDeleteOnly || contentHeight - visiblePart < AndroidUtilities.dp(90) || contentHeight < height / 2 + AndroidUtilities.dp(90)) { + padding = height - contentHeight; + } else { + int minHeight = contentHeight / 2 + AndroidUtilities.dp(40); + if (visiblePart < minHeight) { + padding = height - minHeight; + } + } + if (getPaddingTop() != padding) { + ignoreLayout = true; + setPadding(0, padding, 0, 0); + ignoreLayout = false; + } + super.onMeasure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY)); + } + + @Override + protected void onLayout(boolean changed, int left, int top, int right, int bottom) { + super.onLayout(changed, left, top, right, bottom); + updateLayout(); + } + + @Override + public void requestLayout() { + if (ignoreLayout) { + return; + } + super.requestLayout(); + } + + @Override + protected void onDraw(Canvas canvas) { + int top = (int) (scrollOffsetY - backgroundPaddingTop + getScrollY() - getTranslationY()); + shadowDrawable.setBounds(0, top, getMeasuredWidth(), top + linearLayout.getMeasuredHeight() + backgroundPaddingTop + AndroidUtilities.dp(19)); + shadowDrawable.draw(canvas); + } + + @Override + protected void onScrollChanged(int l, int t, int oldl, int oldt) { + super.onScrollChanged(l, t, oldl, oldt); + updateLayout(); + } + }; + scrollView.setFillViewport(true); + scrollView.setWillNotDraw(false); + scrollView.setClipToPadding(false); + scrollView.setPadding(backgroundPaddingLeft, 0, backgroundPaddingLeft, 0); + containerView = scrollView; + + linearLayout = new LinearLayout(context) { + @Override + protected void onLayout(boolean changed, int l, int t, int r, int b) { + super.onLayout(changed, l, t, r, b); + updateLayout(); + } + }; + linearLayout.setOrientation(LinearLayout.VERTICAL); + scrollView.addView(linearLayout, LayoutHelper.createScroll(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.BOTTOM)); + setCustomView(linearLayout); + + int selfUserId = UserConfig.getInstance(currentAccount).getClientUserId(); + + boolean canRevokeInbox = user != null && !user.bot && user.id != selfUserId && MessagesController.getInstance(currentAccount).canRevokePmInbox; + int revokeTimeLimit; + if (user != null) { + revokeTimeLimit = MessagesController.getInstance(currentAccount).revokeTimePmLimit; + } else { + revokeTimeLimit = MessagesController.getInstance(currentAccount).revokeTimeLimit; + } + boolean canDeleteInbox = user != null && canRevokeInbox && revokeTimeLimit == 0x7fffffff; + final boolean[] deleteForAll = new boolean[]{false}; + boolean deleteChatForAll = false; + + if (!autoDeleteOnly) { + TextView textView = new TextView(context); + textView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); + textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 20); + textView.setTextColor(Theme.getColor(Theme.key_dialogTextBlack)); + textView.setText(LocaleController.getString("ClearHistory", R.string.ClearHistory)); + textView.setSingleLine(true); + textView.setEllipsize(TextUtils.TruncateAt.END); + linearLayout.addView(textView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.TOP | Gravity.LEFT, 23, 20, 23, 0)); + + TextView messageTextView = new TextView(getContext()); + messageTextView.setTextColor(Theme.getColor(Theme.key_dialogTextBlack)); + messageTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 16); + messageTextView.setText(LocaleController.getString("")); + messageTextView.setMovementMethod(new AndroidUtilities.LinkMovementMethodMy()); + messageTextView.setLinkTextColor(Theme.getColor(Theme.key_dialogTextLink)); + messageTextView.setGravity((LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT) | Gravity.TOP); + linearLayout.addView(messageTextView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.TOP | Gravity.LEFT, 23, 16, 23, 5)); + if (user != null) { + messageTextView.setText(AndroidUtilities.replaceTags(LocaleController.formatString("AreYouSureClearHistoryWithUser", R.string.AreYouSureClearHistoryWithUser, UserObject.getUserName(user)))); + } else { + if (!ChatObject.isChannel(chat) || chat.megagroup && TextUtils.isEmpty(chat.username)) { + messageTextView.setText(AndroidUtilities.replaceTags(LocaleController.formatString("AreYouSureClearHistoryWithChat", R.string.AreYouSureClearHistoryWithChat, chat.title))); + } else if (chat.megagroup) { + messageTextView.setText(LocaleController.getString("AreYouSureClearHistoryGroup", R.string.AreYouSureClearHistoryGroup)); + } else { + messageTextView.setText(LocaleController.getString("AreYouSureClearHistoryChannel", R.string.AreYouSureClearHistoryChannel)); + } + } + + if (canDeleteInbox && !UserObject.isDeleted(user)) { + cell = new CheckBoxCell(context, 1); + cell.setBackgroundDrawable(Theme.getSelectorDrawable(false)); + cell.setText(LocaleController.formatString("ClearHistoryOptionAlso", R.string.ClearHistoryOptionAlso, UserObject.getFirstName(user)), "", false, false); + cell.setPadding(LocaleController.isRTL ? AndroidUtilities.dp(16) : AndroidUtilities.dp(5), 0, LocaleController.isRTL ? AndroidUtilities.dp(5) : AndroidUtilities.dp(16), 0); + linearLayout.addView(cell, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, 48, Gravity.TOP | Gravity.LEFT, 0, 0, 0, 0)); + cell.setOnClickListener(v -> { + CheckBoxCell cell1 = (CheckBoxCell) v; + deleteForAll[0] = !deleteForAll[0]; + cell1.setChecked(deleteForAll[0], true); + }); + } + + BottomSheetCell clearButton = new BottomSheetCell(context); + clearButton.setBackground(null); + clearButton.setText(LocaleController.getString("AlertClearHistory", R.string.AlertClearHistory)); + clearButton.background.setOnClickListener(v -> { + if (dismissedDelayed) { + return; + } + delegate.onClearHistory(cell != null && cell.isChecked()); + dismiss(); + }); + linearLayout.addView(clearButton, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, 50, Gravity.LEFT | Gravity.TOP, 0, 0, 0, 0)); + + ShadowSectionCell shadowSectionCell = new ShadowSectionCell(context); + Drawable drawable = Theme.getThemedDrawable(context, R.drawable.greydivider, Theme.key_windowBackgroundGrayShadow); + CombinedDrawable combinedDrawable = new CombinedDrawable(new ColorDrawable(Theme.getColor(Theme.key_windowBackgroundGray)), drawable); + combinedDrawable.setFullsize(true); + shadowSectionCell.setBackgroundDrawable(combinedDrawable); + linearLayout.addView(shadowSectionCell, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); + + HeaderCell headerCell = new HeaderCell(context); + headerCell.setText(LocaleController.getString("AutoDeleteHeader", R.string.AutoDeleteHeader)); + linearLayout.addView(headerCell, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, 1, autoDeleteOnly ? 20 : 0, 1, 0)); + } else { + RLottieImageView lottieImageView = new RLottieImageView(context); + lottieImageView.setAutoRepeat(false); + lottieImageView.setAnimation(R.raw.utyan_private, 120, 120); + lottieImageView.setPadding(0, AndroidUtilities.dp(20), 0, 0); + lottieImageView.playAnimation(); + linearLayout.addView(lottieImageView, LayoutHelper.createLinear(160, 160, Gravity.CENTER_HORIZONTAL | Gravity.TOP, 17, 0, 17, 0)); + + TextView percentTextView = new TextView(context); + percentTextView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); + percentTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 24); + percentTextView.setTextColor(Theme.getColor(Theme.key_dialogTextBlack)); + percentTextView.setText(LocaleController.getString("AutoDeleteAlertTitle", R.string.AutoDeleteAlertTitle)); + linearLayout.addView(percentTextView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.TOP | Gravity.CENTER_HORIZONTAL, 17, 18, 17, 0)); + + TextView infoTextView = new TextView(context); + infoTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); + infoTextView.setTextColor(Theme.getColor(Theme.key_dialogTextGray3)); + infoTextView.setGravity(Gravity.CENTER_HORIZONTAL); + if (user != null) { + infoTextView.setText(LocaleController.formatString("AutoDeleteAlertUserInfo", R.string.AutoDeleteAlertUserInfo, UserObject.getFirstName(user))); + } else { + if (ChatObject.isChannel(chat) && !chat.megagroup) { + infoTextView.setText(LocaleController.getString("AutoDeleteAlertChannelInfo", R.string.AutoDeleteAlertChannelInfo)); + } else { + infoTextView.setText(LocaleController.getString("AutoDeleteAlertGroupInfo", R.string.AutoDeleteAlertGroupInfo)); + } + } + linearLayout.addView(infoTextView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.TOP | Gravity.CENTER_HORIZONTAL, 30, 22, 30, 20)); + } + + SlideChooseView slideChooseView = new SlideChooseView(context); + slideChooseView.setCallback(new SlideChooseView.Callback() { + @Override + public void onOptionSelected(int index) { + newTimer = index; + updateTimerButton(true); + } + + @Override + public void onTouchEnd() { + scrollView.smoothScrollTo(0, linearLayout.getMeasuredHeight()); + } + }); + String[] strings = new String[]{ + LocaleController.getString("AutoDeleteNever", R.string.AutoDeleteNever), + LocaleController.getString("AutoDelete24Hours", R.string.AutoDelete24Hours), + LocaleController.getString("AutoDelete7Days", R.string.AutoDelete7Days) + }; + slideChooseView.setOptions(currentTimer, strings); + linearLayout.addView(slideChooseView, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, 0, 8, 0, 0)); + + FrameLayout buttonContainer = new FrameLayout(context); + Drawable drawable = Theme.getThemedDrawable(context, R.drawable.greydivider_bottom, Theme.key_windowBackgroundGrayShadow); + CombinedDrawable combinedDrawable = new CombinedDrawable(new ColorDrawable(Theme.getColor(Theme.key_windowBackgroundGray)), drawable); + combinedDrawable.setFullsize(true); + buttonContainer.setBackgroundDrawable(combinedDrawable); + linearLayout.addView(buttonContainer, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); + + TextInfoPrivacyCell infoCell = new TextInfoPrivacyCell(context); + + infoCell.setText(LocaleController.getString("AutoDeleteInfo", R.string.AutoDeleteInfo)); + buttonContainer.addView(infoCell); + + setTimerButton = new BottomSheetCell(context); + setTimerButton.setBackgroundColor(Theme.getColor(Theme.key_dialogBackground)); + if (autoDeleteOnly) { + setTimerButton.setText(LocaleController.getString("AutoDeleteSet", R.string.AutoDeleteSet)); + } else if (full && currentTimer == 0) { + setTimerButton.setText(LocaleController.getString("EnableAutoDelete", R.string.EnableAutoDelete)); + } else { + setTimerButton.setText(LocaleController.getString("AutoDeleteConfirm", R.string.AutoDeleteConfirm)); + } + setTimerButton.background.setOnClickListener(v -> { + if (dismissedDelayed) { + return; + } + if (newTimer != currentTimer) { + dismissedDelayed = true; + int time; + int action; + if (newTimer == 2) { + time = BuildVars.DEBUG_PRIVATE_VERSION ? 5 : 7 * 24 * 60 * 60; + action = UndoView.ACTION_AUTO_DELETE_ON; + } else if (newTimer == 1) { + time = 24 * 60 * 60; + action = UndoView.ACTION_AUTO_DELETE_ON; + } else { + time = 0; + action = UndoView.ACTION_AUTO_DELETE_OFF; + } + delegate.onAutoDeleteHistory(time, action); + } + if (dismissedDelayed) { + AndroidUtilities.runOnUIThread(this::dismiss, 200); + } else { + dismiss(); + } + }); + buttonContainer.addView(setTimerButton); + + updateTimerButton(false); + } + + private void updateTimerButton(boolean animated) { + if (currentTimer == newTimer && !autoDeleteOnly) { + if (animated) { + setTimerButton.animate().alpha(0.0f).setDuration(180).start(); + } else { + setTimerButton.setVisibility(View.INVISIBLE); + setTimerButton.setAlpha(0.0f); + } + } else { + setTimerButton.setVisibility(View.VISIBLE); + if (animated) { + setTimerButton.animate().alpha(1.0f).setDuration(180).start(); + } else { + setTimerButton.setAlpha(1.0f); + } + } + } + + private void updateLayout() { + View child = linearLayout.getChildAt(0); + child.getLocationInWindow(location); + int top = location[1] - AndroidUtilities.dp(autoDeleteOnly ? 6 : 19); + int newOffset = Math.max(top, 0); + if (scrollOffsetY != newOffset) { + scrollOffsetY = newOffset; + containerView.invalidate(); + } + } + + @Override + protected boolean canDismissWithSwipe() { + return false; + } + + public void setDelegate(ClearHistoryAlertDelegate clearHistoryAlertDelegate) { + delegate = clearHistoryAlertDelegate; + } +} diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/CrossOutDrawable.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/CrossOutDrawable.java index b84e9fc61..04c2c4e62 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/CrossOutDrawable.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/CrossOutDrawable.java @@ -6,8 +6,8 @@ import android.graphics.ColorFilter; import android.graphics.Paint; import android.graphics.PixelFormat; import android.graphics.PorterDuff; +import android.graphics.PorterDuffColorFilter; import android.graphics.PorterDuffXfermode; -import android.graphics.Rect; import android.graphics.RectF; import android.graphics.drawable.Drawable; @@ -67,14 +67,15 @@ public class CrossOutDrawable extends Drawable { progress = 0; } } - if (progress == 0) { - iconDrawable.draw(canvas); - return; - } int newColor = Theme.getColor(colorKey); if (color != newColor) { color = newColor; paint.setColor(newColor); + iconDrawable.setColorFilter(new PorterDuffColorFilter(Theme.getColor(colorKey), PorterDuff.Mode.MULTIPLY)); + } + if (progress == 0) { + iconDrawable.draw(canvas); + return; } rectF.set(iconDrawable.getBounds()); canvas.saveLayerAlpha(rectF, 255, Canvas.ALL_SAVE_FLAG); @@ -101,14 +102,14 @@ public class CrossOutDrawable extends Drawable { } @Override - public void setBounds(int left, int top, int right, int bottom) { - super.setBounds(left, top, right, bottom); - iconDrawable.setBounds(left, top, right, bottom); + public void setColorFilter(@Nullable ColorFilter colorFilter) { + } @Override - public void setColorFilter(@Nullable ColorFilter colorFilter) { - iconDrawable.setColorFilter(colorFilter); + public void setBounds(int left, int top, int right, int bottom) { + super.setBounds(left, top, right, bottom); + iconDrawable.setBounds(left, top, right, bottom); } @Override @@ -123,10 +124,11 @@ public class CrossOutDrawable extends Drawable { @Override public int getOpacity() { - return PixelFormat.TRANSLUCENT; + return PixelFormat.TRANSPARENT; } public void setColorKey(String colorKey) { this.colorKey = colorKey; } + } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/EmbedBottomSheet.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/EmbedBottomSheet.java index 77ac7b1ef..8d85977d2 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/EmbedBottomSheet.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/EmbedBottomSheet.java @@ -830,9 +830,10 @@ public class EmbedBottomSheet extends BottomSheet { dismiss(); }); - boolean canHandleUrl = videoView.canHandleUrl(embedUrl); - if (!canHandleUrl) { - videoView.setVisibility(View.INVISIBLE); + boolean canHandleUrl = videoView.canHandleUrl(embedUrl) || videoView.canHandleUrl(originalUrl); + videoView.setVisibility(canHandleUrl ? View.VISIBLE : View.INVISIBLE); + if (canHandleUrl) { + videoView.willHandle(); } setDelegate(new BottomSheet.BottomSheetDelegate() { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/FragmentContextView.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/FragmentContextView.java index a25de5c63..5f3193385 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/FragmentContextView.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/FragmentContextView.java @@ -22,9 +22,6 @@ import android.graphics.PorterDuffColorFilter; import android.graphics.Typeface; import android.os.Build; import android.os.Bundle; - -import androidx.annotation.Keep; - import android.os.SystemClock; import android.text.SpannableStringBuilder; import android.text.Spanned; @@ -41,6 +38,8 @@ import android.widget.FrameLayout; import android.widget.ImageView; import android.widget.TextView; +import androidx.annotation.Keep; + import org.telegram.messenger.AccountInstance; import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.ChatObject; @@ -1394,7 +1393,7 @@ public class FragmentContextView extends FrameLayout implements NotificationCent } TypefaceSpan span = new TypefaceSpan(AndroidUtilities.getTypeface("fonts/rmedium.ttf"), 0, Theme.getColor(Theme.key_inappPlayerPerformer)); stringBuilder.setSpan(span, 0, messageObject.getMusicAuthor().length(), Spanned.SPAN_INCLUSIVE_INCLUSIVE); - titleTextView.setText(stringBuilder, !create && wasVisible); + titleTextView.setText(stringBuilder, !create && wasVisible && isMusic); } } } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/FragmentContextViewWavesDrawable.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/FragmentContextViewWavesDrawable.java index 39d4b7269..21df6f108 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/FragmentContextViewWavesDrawable.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/FragmentContextViewWavesDrawable.java @@ -153,9 +153,11 @@ public class FragmentContextViewWavesDrawable { lineBlobDrawable2.minRadius = AndroidUtilities.dp(0); lineBlobDrawable2.maxRadius = AndroidUtilities.dp(3) + AndroidUtilities.dp(9) * amplitude; - lineBlobDrawable.update(amplitude, 0.3f); - lineBlobDrawable1.update(amplitude, 0.7f); - lineBlobDrawable2.update(amplitude, 0.7f); + if (i == 1) { + lineBlobDrawable.update(amplitude, 0.3f); + lineBlobDrawable1.update(amplitude, 0.7f); + lineBlobDrawable2.update(amplitude, 0.7f); + } // if (rippleTransition) { // paint.setAlpha(76); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/GigagroupConvertAlert.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/GigagroupConvertAlert.java new file mode 100644 index 000000000..1d3ca6026 --- /dev/null +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/GigagroupConvertAlert.java @@ -0,0 +1,165 @@ +/* + * This is the source code of Telegram for Android v. 5.x.x. + * It is licensed under GNU GPL v. 2 or later. + * You should have received a copy of the license in this archive (see LICENSE). + * + * Copyright Nikolai Kudashov, 2013-2018. + */ + +package org.telegram.ui.Components; + +import android.content.Context; +import android.graphics.PorterDuff; +import android.graphics.PorterDuffColorFilter; +import android.text.TextUtils; +import android.util.TypedValue; +import android.view.Gravity; +import android.view.View; +import android.widget.FrameLayout; +import android.widget.ImageView; +import android.widget.LinearLayout; +import android.widget.TextView; + +import org.telegram.messenger.AndroidUtilities; +import org.telegram.messenger.LocaleController; +import org.telegram.messenger.R; +import org.telegram.ui.ActionBar.AlertDialog; +import org.telegram.ui.ActionBar.BaseFragment; +import org.telegram.ui.ActionBar.BottomSheet; +import org.telegram.ui.ActionBar.Theme; + +public class GigagroupConvertAlert extends BottomSheet { + + private boolean compteled; + + public static class BottomSheetCell extends FrameLayout { + + private View background; + private TextView textView; + private LinearLayout linearLayout; + + public BottomSheetCell(Context context) { + super(context); + + background = new View(context); + background.setBackground(Theme.createSimpleSelectorRoundRectDrawable(AndroidUtilities.dp(4), Theme.getColor(Theme.key_featuredStickers_addButton), Theme.getColor(Theme.key_featuredStickers_addButtonPressed))); + addView(background, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, 0, 16, 16, 16, 16)); + + textView = new TextView(context); + textView.setLines(1); + textView.setSingleLine(true); + textView.setGravity(Gravity.CENTER_HORIZONTAL); + textView.setEllipsize(TextUtils.TruncateAt.END); + textView.setGravity(Gravity.CENTER); + textView.setTextColor(Theme.getColor(Theme.key_featuredStickers_buttonText)); + textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); + textView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); + addView(textView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER)); + } + + @Override + protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { + super.onMeasure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(AndroidUtilities.dp(80), MeasureSpec.EXACTLY)); + } + + public void setText(CharSequence text) { + textView.setText(text); + } + } + + public GigagroupConvertAlert(final Context context, BaseFragment parentFragment) { + super(context, true); + setApplyBottomPadding(false); + setApplyTopPadding(false); + + LinearLayout linearLayout = new LinearLayout(context); + linearLayout.setOrientation(LinearLayout.VERTICAL); + setCustomView(linearLayout); + + RLottieImageView lottieImageView = new RLottieImageView(context); + lottieImageView.setAutoRepeat(true); + lottieImageView.setAnimation(R.raw.utyan_gigagroup, 120, 120); + lottieImageView.playAnimation(); + linearLayout.addView(lottieImageView, LayoutHelper.createLinear(160, 160, Gravity.CENTER_HORIZONTAL | Gravity.TOP, 17, 30, 17, 0)); + + TextView percentTextView = new TextView(context); + percentTextView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); + percentTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 24); + percentTextView.setTextColor(Theme.getColor(Theme.key_dialogTextBlack)); + percentTextView.setText(LocaleController.getString("GigagroupConvertTitle", R.string.GigagroupConvertTitle)); + linearLayout.addView(percentTextView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.TOP | Gravity.CENTER_HORIZONTAL, 17, 18, 17, 0)); + + LinearLayout container = new LinearLayout(context); + container.setOrientation(LinearLayout.VERTICAL); + linearLayout.addView(container, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER_HORIZONTAL, 0, 12, 0, 0)); + + for (int a = 0; a < 3; a++) { + LinearLayout linearLayout2 = new LinearLayout(context); + linearLayout2.setOrientation(LinearLayout.HORIZONTAL); + container.addView(linearLayout2, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT, 0, 8, 0, 0)); + + ImageView imageView = new ImageView(context); + imageView.setColorFilter(new PorterDuffColorFilter(Theme.getColor(Theme.key_dialogTextGray3), PorterDuff.Mode.MULTIPLY)); + imageView.setImageResource(R.drawable.list_circle); + + TextView textView = new TextView(context); + textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 15); + textView.setTextColor(Theme.getColor(Theme.key_dialogTextGray3)); + textView.setGravity(Gravity.CENTER_VERTICAL | (LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT)); + textView.setMaxWidth(AndroidUtilities.dp(260)); + + switch (a) { + case 0: + textView.setText(LocaleController.getString("GigagroupConvertInfo1", R.string.GigagroupConvertInfo1)); + break; + case 1: + textView.setText(LocaleController.getString("GigagroupConvertInfo2", R.string.GigagroupConvertInfo2)); + break; + case 2: + textView.setText(LocaleController.getString("GigagroupConvertInfo3", R.string.GigagroupConvertInfo3)); + break; + } + + if (LocaleController.isRTL) { + linearLayout2.addView(textView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT)); + linearLayout2.addView(imageView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, 8, 7, 0, 0)); + } else { + linearLayout2.addView(imageView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, 0, 8, 8, 0)); + linearLayout2.addView(textView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT)); + } + } + + BottomSheetCell clearButton = new BottomSheetCell(context); + clearButton.setBackground(null); + clearButton.setText(LocaleController.getString("GigagroupConvertProcessButton", R.string.GigagroupConvertProcessButton)); + clearButton.background.setOnClickListener(v -> { + dismiss(); + AlertDialog.Builder builder = new AlertDialog.Builder(context); + builder.setTitle(LocaleController.getString("GigagroupConvertAlertTitle", R.string.GigagroupConvertAlertTitle)); + builder.setMessage(AndroidUtilities.replaceTags(LocaleController.getString("GigagroupConvertAlertText", R.string.GigagroupConvertAlertText))); + builder.setPositiveButton(LocaleController.getString("GigagroupConvertAlertConver", R.string.GigagroupConvertAlertConver), (dialogInterface, i) -> onCovert()); + builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null); + parentFragment.showDialog(builder.create()); + }); + linearLayout.addView(clearButton, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, 50, Gravity.LEFT | Gravity.TOP, 0, 29, 0, 0)); + + TextView cancelTextView = new TextView(context); + cancelTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); + cancelTextView.setTextColor(Theme.getColor(Theme.key_dialogTextBlue2)); + cancelTextView.setText(LocaleController.getString("GigagroupConvertCancelButton", R.string.GigagroupConvertCancelButton)); + cancelTextView.setGravity(Gravity.CENTER); + linearLayout.addView(cancelTextView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, 48, Gravity.TOP | Gravity.CENTER_HORIZONTAL, 17, 0, 17, 16)); + cancelTextView.setOnClickListener(v -> { + onCancel(); + dismiss(); + }); + } + + protected void onCovert() { + + } + + protected void onCancel() { + + } +} diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/GroupVoipInviteAlert.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/GroupVoipInviteAlert.java index 88df5a0a1..f46a6bb40 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/GroupVoipInviteAlert.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/GroupVoipInviteAlert.java @@ -8,38 +8,17 @@ package org.telegram.ui.Components; -import android.animation.Animator; -import android.animation.AnimatorListenerAdapter; -import android.animation.AnimatorSet; -import android.animation.ObjectAnimator; -import android.annotation.SuppressLint; import android.content.Context; -import android.graphics.Canvas; -import android.graphics.Color; -import android.graphics.Paint; -import android.graphics.PorterDuff; -import android.graphics.PorterDuffColorFilter; -import android.graphics.RectF; -import android.graphics.drawable.Drawable; -import android.os.Build; -import android.text.Editable; import android.text.SpannableStringBuilder; import android.text.Spanned; import android.text.TextUtils; -import android.text.TextWatcher; import android.text.style.ForegroundColorSpan; -import android.util.Property; import android.util.SparseArray; -import android.util.TypedValue; -import android.view.Gravity; -import android.view.KeyEvent; import android.view.MotionEvent; import android.view.View; import android.view.ViewGroup; -import android.view.ViewTreeObserver; -import android.view.inputmethod.EditorInfo; -import android.widget.FrameLayout; -import android.widget.ImageView; + +import androidx.recyclerview.widget.RecyclerView; import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.ChatObject; @@ -53,12 +32,9 @@ import org.telegram.messenger.Utilities; import org.telegram.tgnet.ConnectionsManager; import org.telegram.tgnet.TLObject; import org.telegram.tgnet.TLRPC; -import org.telegram.ui.ActionBar.BottomSheet; import org.telegram.ui.ActionBar.Theme; import org.telegram.ui.Adapters.SearchAdapterHelper; import org.telegram.ui.Cells.GraySectionCell; -import org.telegram.ui.Cells.GroupCallTextCell; -import org.telegram.ui.Cells.GroupCallUserCell; import org.telegram.ui.Cells.ManageChatTextCell; import org.telegram.ui.Cells.ManageChatUserCell; import org.telegram.ui.ChatUsersActivity; @@ -67,9 +43,6 @@ import java.util.ArrayList; import java.util.Collections; import java.util.HashSet; -import androidx.recyclerview.widget.LinearLayoutManager; -import androidx.recyclerview.widget.RecyclerView; - public class GroupVoipInviteAlert extends UsersAlertBase { private final SearchAdapter searchAdapter; @@ -366,7 +339,13 @@ public class GroupVoipInviteAlert extends UsersAlertBase { if (delayResults <= 0) { loadingUsers = false; firstLoaded = true; - showItemsAnimated(listViewAdapter != null ? listViewAdapter.getItemCount() - 1 : 0); + int num; + if (flickerProgressRow == 1) { + num = 1; + } else { + num = listViewAdapter != null ? listViewAdapter.getItemCount() - 1 : 0; + } + showItemsAnimated(num); } updateRows(); if (listViewAdapter != null) { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/HintView.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/HintView.java index b6e35b7a0..b202bb9b2 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/HintView.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/HintView.java @@ -20,7 +20,6 @@ import org.telegram.messenger.LocaleController; import org.telegram.messenger.MessageObject; import org.telegram.messenger.R; import org.telegram.tgnet.TLRPC; -import org.telegram.ui.ActionBar.SimpleTextView; import org.telegram.ui.ActionBar.Theme; import org.telegram.ui.Cells.ChatMessageCell; @@ -62,7 +61,13 @@ public class HintView extends FrameLayout { textView.setTextColor(Theme.getColor(Theme.key_chat_gifSaveHintText)); textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); textView.setMaxLines(2); - textView.setMaxWidth(AndroidUtilities.dp(type == 4 ? 280 : 250)); + if (type == 7) { + textView.setMaxWidth(AndroidUtilities.dp(310)); + } else if (type == 4) { + textView.setMaxWidth(AndroidUtilities.dp(280)); + } else { + textView.setMaxWidth(AndroidUtilities.dp(250)); + } if (currentType == TYPE_SEARCH_AS_LIST) { textView.setGravity(Gravity.LEFT | Gravity.CENTER_VERTICAL); textView.setBackground(Theme.createRoundRectDrawable(AndroidUtilities.dp(5), Theme.getColor(Theme.key_chat_gifSaveHintBackground))); @@ -70,11 +75,13 @@ public class HintView extends FrameLayout { addView(textView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, 30, Gravity.LEFT | Gravity.TOP, 0, topArrow ? 6 : 0, 0, topArrow ? 0 : 6)); } else { textView.setGravity(Gravity.LEFT | Gravity.TOP); - textView.setBackground(Theme.createRoundRectDrawable(AndroidUtilities.dp(3), Theme.getColor(Theme.key_chat_gifSaveHintBackground))); + textView.setBackground(Theme.createRoundRectDrawable(AndroidUtilities.dp(currentType == 7 ? 6 : 3), Theme.getColor(Theme.key_chat_gifSaveHintBackground))); if (currentType == TYPE_POLL_VOTE || currentType == 4) { textView.setPadding(AndroidUtilities.dp(9), AndroidUtilities.dp(6), AndroidUtilities.dp(9), AndroidUtilities.dp(7)); } else if (currentType == 2) { textView.setPadding(AndroidUtilities.dp(7), AndroidUtilities.dp(6), AndroidUtilities.dp(7), AndroidUtilities.dp(7)); + } else if (currentType == 7) { + textView.setPadding(AndroidUtilities.dp(8), AndroidUtilities.dp(7), AndroidUtilities.dp(8), AndroidUtilities.dp(8)); } else { textView.setPadding(AndroidUtilities.dp(currentType == 0 ? 54 : 5), AndroidUtilities.dp(6), AndroidUtilities.dp(5), AndroidUtilities.dp(7)); } @@ -281,15 +288,18 @@ public class HintView extends FrameLayout { top += AndroidUtilities.dp(4); } else if (currentType == 6) { top += view.getMeasuredHeight() + getMeasuredHeight() + AndroidUtilities.dp(10); + } else if (currentType == 7) { + top += view.getMeasuredHeight() + getMeasuredHeight() + AndroidUtilities.dp(8); } int centerX; if (currentType == TYPE_SEARCH_AS_LIST) { - if (view instanceof SimpleTextView) { - centerX = position[0] + ((SimpleTextView) view).getTextWidth() / 2; - } else { - throw new IllegalArgumentException(); - } +// if (view instanceof SimpleTextView) { +// centerX = position[0] + ((SimpleTextView) view).getTextWidth() / 2; +// } else { +// throw new IllegalArgumentException(); +// } + centerX = position[0]; } else { centerX = position[0] + view.getMeasuredWidth() / 2; } @@ -302,7 +312,7 @@ public class HintView extends FrameLayout { top -= bottomOffset; int parentWidth = parentView.getMeasuredWidth(); - if (isTopArrow && currentType != 6) { + if (isTopArrow && currentType != 6 && currentType != 7) { setTranslationY(extraTranslationY + (translationY = AndroidUtilities.dp(44))); } else { setTranslationY(extraTranslationY + (translationY = top - getMeasuredHeight())); @@ -330,6 +340,9 @@ public class HintView extends FrameLayout { } setTranslationX(offset); float arrowX = centerX - (leftMargin + offset) - arrowImageView.getMeasuredWidth() / 2; + if (currentType == 7) { + arrowX += AndroidUtilities.dp(2); + } arrowImageView.setTranslationX(arrowX); if (centerX > parentView.getMeasuredWidth() / 2) { if (arrowX < AndroidUtilities.dp(10)) { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/InviteLinkBottomSheet.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/InviteLinkBottomSheet.java index c22e63a53..1030d0323 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/InviteLinkBottomSheet.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/InviteLinkBottomSheet.java @@ -28,11 +28,11 @@ import androidx.recyclerview.widget.RecyclerView; import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.LocaleController; import org.telegram.messenger.MessagesController; +import org.telegram.messenger.MessagesStorage; import org.telegram.messenger.R; import org.telegram.messenger.UserConfig; import org.telegram.tgnet.ConnectionsManager; import org.telegram.tgnet.TLRPC; -import org.telegram.ui.ActionBar.AlertDialog; import org.telegram.ui.ActionBar.BaseFragment; import org.telegram.ui.ActionBar.BottomSheet; import org.telegram.ui.ActionBar.Theme; @@ -40,11 +40,13 @@ import org.telegram.ui.Cells.HeaderCell; import org.telegram.ui.Cells.ShadowSectionCell; import org.telegram.ui.Cells.TextInfoPrivacyCell; import org.telegram.ui.Cells.UserCell; +import org.telegram.ui.LinkEditActivity; import org.telegram.ui.ManageLinksActivity; import org.telegram.ui.ProfileActivity; import java.util.ArrayList; import java.util.HashMap; +import java.util.Locale; public class InviteLinkBottomSheet extends BottomSheet { @@ -64,6 +66,7 @@ public class InviteLinkBottomSheet extends BottomSheet { int loadingRow; int emptyView; int emptyView2; + int emptyHintRow; boolean usersLoading; boolean hasMore; @@ -80,12 +83,15 @@ public class InviteLinkBottomSheet extends BottomSheet { private int scrollOffsetY; private boolean ignoreLayout; private boolean permanent; + private boolean titleVisible; ArrayList invitedUsers = new ArrayList<>(); private int chatId; + private boolean isChannel; + private final long timeDif; - public InviteLinkBottomSheet(Context context, TLRPC.TL_chatInviteExported invite, TLRPC.ChatFull info, HashMap users, BaseFragment fragment, int chatId, boolean permanent) { + public InviteLinkBottomSheet(Context context, TLRPC.TL_chatInviteExported invite, TLRPC.ChatFull info, HashMap users, BaseFragment fragment, int chatId, boolean permanent, boolean isChannel) { super(context, false); this.invite = invite; this.users = users; @@ -93,6 +99,13 @@ public class InviteLinkBottomSheet extends BottomSheet { this.info = info; this.chatId = chatId; this.permanent = permanent; + this.isChannel = isChannel; + + if (this.users == null) { + this.users = new HashMap<>(); + } + + timeDif = ConnectionsManager.getInstance(currentAccount).getCurrentTime() - (System.currentTimeMillis() / 1000L); containerView = new FrameLayout(context) { @@ -192,6 +205,7 @@ public class InviteLinkBottomSheet extends BottomSheet { listView = new RecyclerListView(context) { int lastH; + @Override public void requestLayout() { if (ignoreLayout) { @@ -247,6 +261,9 @@ public class InviteLinkBottomSheet extends BottomSheet { listView.setOnItemClickListener(new RecyclerListView.OnItemClickListener() { @Override public void onItemClick(View view, int position) { + if (position == creatorRow && invite.admin_id == UserConfig.getInstance(currentAccount).clientUserId) { + return; + } if (position == creatorRow || (position >= usersStartRow && position < usersEndRow)) { TLRPC.User user; if (position == creatorRow) { @@ -266,24 +283,31 @@ public class InviteLinkBottomSheet extends BottomSheet { } } }); - containerView.addView(listView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, Gravity.TOP | Gravity.LEFT, 0, permanent ? 0 : 48, 0, 0)); + titleTextView = new TextView(context); + titleTextView.setLines(1); + titleTextView.setSingleLine(true); + titleTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 20); + titleTextView.setEllipsize(TextUtils.TruncateAt.END); + titleTextView.setPadding(AndroidUtilities.dp(18), 0, AndroidUtilities.dp(18), 0); + titleTextView.setGravity(Gravity.CENTER_VERTICAL); + titleTextView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); if (!permanent) { - titleTextView = new TextView(context); - titleTextView.setLines(1); - titleTextView.setSingleLine(true); - titleTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 20); - titleTextView.setEllipsize(TextUtils.TruncateAt.END); - titleTextView.setPadding(AndroidUtilities.dp(18), 0, AndroidUtilities.dp(18), 0); - titleTextView.setGravity(Gravity.CENTER_VERTICAL); titleTextView.setText(invite.revoked ? LocaleController.getString("RevokedLink", R.string.RevokedLink) : LocaleController.getString("InviteLink", R.string.InviteLink)); - titleTextView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); - containerView.addView(titleTextView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 50, Gravity.LEFT | Gravity.TOP, 0, 0, 40, 0)); + titleVisible = true; + } else { + titleTextView.setText(LocaleController.getString("InviteLink", R.string.InviteLink)); + titleVisible = false; + titleTextView.setVisibility(View.INVISIBLE); + titleTextView.setAlpha(0f); } + containerView.addView(listView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, Gravity.TOP | Gravity.LEFT, 0, !titleVisible ? 0 : 48, 0, 0)); + containerView.addView(titleTextView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, !titleVisible ? 48 : 50, Gravity.LEFT | Gravity.TOP, 0, 0, 0, 0)); + updateRows(); loadUsers(); - if (users.get(invite.admin_id) == null) { + if (users == null || users.get(invite.admin_id) == null) { loadCreator(); } @@ -295,6 +319,9 @@ public class InviteLinkBottomSheet extends BottomSheet { titleTextView.setTextColor(Theme.getColor(Theme.key_dialogTextBlack)); titleTextView.setLinkTextColor(Theme.getColor(Theme.key_dialogTextLink)); titleTextView.setHighlightColor(Theme.getColor(Theme.key_dialogLinkSelection)); + if (!titleVisible) { + titleTextView.setBackgroundColor(Theme.getColor(Theme.key_windowBackgroundWhite)); + } } listView.setGlowColor(Theme.getColor(Theme.key_dialogScrollGlow)); shadow.setBackgroundColor(Theme.getColor(Theme.key_dialogShadowLine)); @@ -323,7 +350,7 @@ public class InviteLinkBottomSheet extends BottomSheet { private void updateColorForView(View view) { if (view instanceof HeaderCell) { ((HeaderCell) view).getTextView().setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteBlueHeader)); - } else if (view instanceof LinkActionView){ + } else if (view instanceof LinkActionView) { ((LinkActionView) view).updateColors(); } else if (view instanceof TextInfoPrivacyCell) { CombinedDrawable combinedDrawable = new CombinedDrawable(new ColorDrawable(Theme.getColor(Theme.key_windowBackgroundGray)), Theme.getThemedDrawable(view.getContext(), R.drawable.greydivider, Theme.key_windowBackgroundGrayShadow)); @@ -334,7 +361,7 @@ public class InviteLinkBottomSheet extends BottomSheet { ((UserCell) view).update(0); } RecyclerView.ViewHolder holder = listView.getChildViewHolder(view); - if (holder != null){ + if (holder != null) { if (holder.getItemViewType() == 7) { Drawable shadowDrawable = Theme.getThemedDrawable(view.getContext(), R.drawable.greydivider_bottom, Theme.key_windowBackgroundGrayShadow); Drawable background = new ColorDrawable(Theme.getColor(Theme.key_windowBackgroundGray)); @@ -366,7 +393,6 @@ public class InviteLinkBottomSheet extends BottomSheet { } } }); - }); } @@ -385,7 +411,7 @@ public class InviteLinkBottomSheet extends BottomSheet { emptyView2 = -1; linkActionRow = -1; linkInfoRow = -1; - + emptyHintRow = -1; if (!permanent) { linkActionRow = rowCount++; @@ -395,19 +421,24 @@ public class InviteLinkBottomSheet extends BottomSheet { creatorRow = rowCount++; emptyView = rowCount++; - if (invite.usage > 0) { + if (!(invite.usage == 0 && invite.usage_limit == 0)) { dividerRow = rowCount++; usersHeaderRow = rowCount++; if (!invitedUsers.isEmpty()) { usersStartRow = rowCount; rowCount += invitedUsers.size(); usersEndRow = rowCount; - } else { + emptyView2 = rowCount++; + } else if (invite.usage > 0) { loadingRow = rowCount++; + emptyView2 = rowCount++; + } else { + emptyHintRow = rowCount++; } - emptyView2 = rowCount++; } - divider2Row = rowCount++; + if (emptyHintRow == -1) { + divider2Row = rowCount++; + } adapter.notifyDataSetChanged(); } @@ -432,6 +463,8 @@ public class InviteLinkBottomSheet extends BottomSheet { return 6; } else if (position == divider2Row) { return 7; + } else if (position == emptyHintRow) { + return 8; } return 0; } @@ -444,7 +477,11 @@ public class InviteLinkBottomSheet extends BottomSheet { switch (viewType) { default: case 0: - view = new HeaderCell(context); + HeaderCell headerCell = new HeaderCell(context, Theme.key_windowBackgroundWhiteBlueHeader, 21, 15, true); + headerCell.getTextView2().setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteRedText)); + headerCell.getTextView2().setTextSize(15); + headerCell.getTextView2().setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); + view = headerCell; break; case 1: view = new UserCell(context, 12, 0, true); @@ -453,13 +490,36 @@ public class InviteLinkBottomSheet extends BottomSheet { view = new ShadowSectionCell(context, 12, Theme.getColor(Theme.key_windowBackgroundGray)); break; case 3: - LinkActionView linkActionView = new LinkActionView(context, fragment, InviteLinkBottomSheet.this, chatId, false); + LinkActionView linkActionView = new LinkActionView(context, fragment, InviteLinkBottomSheet.this, chatId, false, isChannel); view = linkActionView; linkActionView.setDelegate(new LinkActionView.Delegate() { @Override public void revokeLink() { if (fragment instanceof ManageLinksActivity) { ((ManageLinksActivity) fragment).revokeLink(invite); + } else { + TLRPC.TL_messages_editExportedChatInvite req = new TLRPC.TL_messages_editExportedChatInvite(); + req.link = invite.link; + req.revoked = true; + req.peer = MessagesController.getInstance(currentAccount).getInputPeer(-chatId); + ConnectionsManager.getInstance(currentAccount).sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { + if (error == null) { + if (response instanceof TLRPC.TL_messages_exportedChatInviteReplaced) { + TLRPC.TL_messages_exportedChatInviteReplaced replaced = (TLRPC.TL_messages_exportedChatInviteReplaced) response; + if (info != null) { + info.exported_invite = (TLRPC.TL_chatInviteExported) replaced.new_invite; + } + } else { + if (info != null) { + info.invitesCount--; + if (info.invitesCount < 0) { + info.invitesCount = 0; + } + MessagesStorage.getInstance(currentAccount).saveChatLinksCount(chatId, info.invitesCount); + } + } + } + })); } dismiss(); } @@ -468,6 +528,10 @@ public class InviteLinkBottomSheet extends BottomSheet { public void editLink() { if (fragment instanceof ManageLinksActivity) { ((ManageLinksActivity) fragment).editLink(invite); + } else { + LinkEditActivity activity = new LinkEditActivity(LinkEditActivity.EDIT_TYPE, chatId); + activity.setInviteToEdit(invite); + fragment.presentFragment(activity); } dismiss(); } @@ -476,6 +540,15 @@ public class InviteLinkBottomSheet extends BottomSheet { public void removeLink() { if (fragment instanceof ManageLinksActivity) { ((ManageLinksActivity) fragment).deleteLink(invite); + } else { + TLRPC.TL_messages_deleteExportedChatInvite req = new TLRPC.TL_messages_deleteExportedChatInvite(); + req.link = invite.link; + req.peer = MessagesController.getInstance(currentAccount).getInputPeer(-chatId); + ConnectionsManager.getInstance(currentAccount).sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { + if (error == null) { + + } + })); } dismiss(); } @@ -483,7 +556,7 @@ public class InviteLinkBottomSheet extends BottomSheet { view.setLayoutParams(new RecyclerView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)); break; case 4: - view = new TextInfoPrivacyCell(context); + view = new TimerPrivacyCell(context); CombinedDrawable combinedDrawable = new CombinedDrawable(new ColorDrawable(Theme.getColor(Theme.key_windowBackgroundGray)), Theme.getThemedDrawable(context, R.drawable.greydivider, Theme.key_windowBackgroundGrayShadow)); combinedDrawable.setFullsize(true); view.setBackground(combinedDrawable); @@ -511,6 +584,9 @@ public class InviteLinkBottomSheet extends BottomSheet { combinedDrawable.setFullsize(true); view.setBackgroundDrawable(combinedDrawable); break; + case 8: + view = new EmptyHintRow(context); + break; } view.setLayoutParams(new RecyclerView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)); return new RecyclerListView.Holder(view); @@ -523,8 +599,18 @@ public class InviteLinkBottomSheet extends BottomSheet { HeaderCell headerCell = (HeaderCell) holder.itemView; if (position == creatorHeaderRow) { headerCell.setText(LocaleController.getString("LinkCreatedeBy", R.string.LinkCreatedeBy)); + headerCell.setText2(null); } else if (position == usersHeaderRow) { - headerCell.setText(LocaleController.formatPluralString("PeopleJoined", invite.usage)); + if (invite.usage > 0) { + headerCell.setText(LocaleController.formatPluralString("PeopleJoined", invite.usage)); + } else { + headerCell.setText(LocaleController.getString("NoOneJoined", R.string.NoOneJoined)); + } + if (!invite.expired && !invite.revoked && invite.usage_limit > 0 && invite.usage > 0) { + headerCell.setText2(LocaleController.formatPluralString("PeopleJoinedRemaining", invite.usage_limit - invite.usage)); + } else { + headerCell.setText2(null); + } } break; case 1: @@ -534,10 +620,13 @@ public class InviteLinkBottomSheet extends BottomSheet { String status = null; if (position == creatorRow) { user = users.get(invite.admin_id); + if (user == null) { + user = MessagesController.getInstance(currentAccount).getUser(invite.admin_id); + } if (user != null) { status = LocaleController.formatDateAudio(invite.date, false); } - if (info != null && user != null) { + if (info != null && user != null && info.participants != null) { for (int i = 0; i < info.participants.participants.size(); i++) { if (info.participants.participants.get(i).user_id == user.id) { TLRPC.ChatParticipant part = info.participants.participants.get(i); @@ -567,7 +656,6 @@ public class InviteLinkBottomSheet extends BottomSheet { break; } } - } } else { TLRPC.TL_chatInviteImporter invitedUser = invitedUsers.get(position - usersStartRow); @@ -581,19 +669,59 @@ public class InviteLinkBottomSheet extends BottomSheet { actionView.setUsers(0, null); actionView.setLink(invite.link); actionView.setRevoke(invite.revoked); + actionView.setPermanent(invite.permanent); break; case 4: - TextInfoPrivacyCell privacyCell = (TextInfoPrivacyCell) holder.itemView; + TimerPrivacyCell privacyCell = (TimerPrivacyCell) holder.itemView; + privacyCell.cancelTimer(); + privacyCell.timer = false; + privacyCell.setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteGrayText4)); + privacyCell.setFixedSize(0); if (invite.revoked) { privacyCell.setText(LocaleController.getString("LinkIsNoActive", R.string.LinkIsNoActive)); } else if (invite.expired) { - privacyCell.setText(LocaleController.getString("LinkIsExpired", R.string.LinkIsExpired)); + if (invite.usage_limit > 0 && invite.usage_limit == invite.usage) { + privacyCell.setText(LocaleController.getString("LinkIsExpiredLimitReached", R.string.LinkIsExpiredLimitReached)); + } else { + privacyCell.setText(LocaleController.getString("LinkIsExpired", R.string.LinkIsExpired)); + privacyCell.setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteRedText)); + } + } else if (invite.expire_date > 0) { - privacyCell.setText(LocaleController.formatString("LinkExpiresIn", R.string.LinkExpiresIn, LocaleController.formatDateAudio(invite.expire_date, false))); + long currentTime = System.currentTimeMillis() + timeDif * 1000L; + long expireTime = invite.expire_date * 1000L; + + long timeLeft = expireTime - currentTime; + if (timeLeft < 0) { + timeLeft = 0; + } + String time; + if (timeLeft > 86400000L) { + time = LocaleController.formatDateAudio(invite.expire_date, false); + privacyCell.setText(LocaleController.formatString("LinkExpiresIn", R.string.LinkExpiresIn, time)); + } else { + int s = (int) ((timeLeft / 1000) % 60); + int m = (int) ((timeLeft / 1000 / 60) % 60); + int h = (int) ((timeLeft / 1000 / 60 / 60)); + time = String.format(Locale.ENGLISH, "%02d", h) + String.format(Locale.ENGLISH, ":%02d", m) + String.format(Locale.ENGLISH, ":%02d", s); + privacyCell.timer = true; + privacyCell.runTimer(); + privacyCell.setText(LocaleController.formatString("LinkExpiresInTime", R.string.LinkExpiresInTime, time)); + } } else { + privacyCell.setFixedSize(12); privacyCell.setText(null); } break; + case 8: + EmptyHintRow emptyHintRow = (EmptyHintRow) holder.itemView; + if (invite.usage_limit > 0) { + emptyHintRow.textView.setText(LocaleController.formatPluralString("PeopleCanJoinViaLink", invite.usage_limit)); + emptyHintRow.textView.setVisibility(View.VISIBLE); + } else { + emptyHintRow.textView.setVisibility(View.GONE); + } + break; } } @@ -605,7 +733,12 @@ public class InviteLinkBottomSheet extends BottomSheet { @Override public boolean isEnabled(RecyclerView.ViewHolder holder) { int position = holder.getAdapterPosition(); - if (position == creatorRow || (position >= usersStartRow && position < usersEndRow)) { + if (position == creatorRow) { + if (invite.admin_id == UserConfig.getInstance(currentAccount).clientUserId) { + return false; + } + return true; + } else if (position >= usersStartRow && position < usersEndRow) { return true; } return false; @@ -645,12 +778,16 @@ public class InviteLinkBottomSheet extends BottomSheet { shadow.setTag(show ? null : 1); if (show) { shadow.setVisibility(View.VISIBLE); + titleTextView.setVisibility(View.VISIBLE); } if (shadowAnimation != null) { shadowAnimation.cancel(); } shadowAnimation = new AnimatorSet(); shadowAnimation.playTogether(ObjectAnimator.ofFloat(shadow, View.ALPHA, show ? 1.0f : 0.0f)); + if (!titleVisible) { + shadowAnimation.playTogether(ObjectAnimator.ofFloat(titleTextView, View.ALPHA, show ? 1.0f : 0.0f)); + } shadowAnimation.setDuration(150); shadowAnimation.addListener(new AnimatorListenerAdapter() { @Override @@ -658,6 +795,7 @@ public class InviteLinkBottomSheet extends BottomSheet { if (shadowAnimation != null && shadowAnimation.equals(animation)) { if (!show) { shadow.setVisibility(View.INVISIBLE); + titleTextView.setVisibility(View.INVISIBLE); } shadowAnimation = null; } @@ -707,4 +845,67 @@ public class InviteLinkBottomSheet extends BottomSheet { }); }); } + + private class TimerPrivacyCell extends TextInfoPrivacyCell { + + Runnable timerRunnable = new Runnable() { + @Override + public void run() { + if (listView != null && listView.getAdapter() != null) { + int p = listView.getChildAdapterPosition(TimerPrivacyCell.this); + if (p >= 0) + adapter.onBindViewHolder(listView.getChildViewHolder(TimerPrivacyCell.this), p); + } + AndroidUtilities.runOnUIThread(this); + } + }; + + boolean timer; + + public TimerPrivacyCell(Context context) { + super(context); + } + + @Override + protected void onAttachedToWindow() { + super.onAttachedToWindow(); + runTimer(); + } + + @Override + protected void onDetachedFromWindow() { + super.onDetachedFromWindow(); + cancelTimer(); + } + + public void cancelTimer() { + AndroidUtilities.cancelRunOnUIThread(timerRunnable); + } + + public void runTimer() { + cancelTimer(); + if (timer) { + AndroidUtilities.runOnUIThread(timerRunnable, 500); + } + } + } + + private class EmptyHintRow extends FrameLayout { + + TextView textView; + + public EmptyHintRow(@NonNull Context context) { + super(context); + textView = new TextView(context); + textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); + textView.setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteGrayText)); + textView.setGravity(Gravity.CENTER_HORIZONTAL); + addView(textView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER_VERTICAL, 60, 0, 60, 0)); + } + + @Override + protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { + super.onMeasure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(AndroidUtilities.dp(84), MeasureSpec.EXACTLY)); + } + } } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/InviteMembersBottomSheet.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/InviteMembersBottomSheet.java index efff27794..bbbd627b8 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/InviteMembersBottomSheet.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/InviteMembersBottomSheet.java @@ -28,7 +28,6 @@ import android.view.ViewConfiguration; import android.view.ViewGroup; import android.view.ViewOutlineProvider; import android.widget.ImageView; -import android.widget.LinearLayout; import android.widget.ScrollView; import androidx.annotation.NonNull; @@ -38,12 +37,11 @@ import androidx.recyclerview.widget.RecyclerView; import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.ApplicationLoader; -import org.telegram.messenger.ChatObject; import org.telegram.messenger.ContactsController; import org.telegram.messenger.LocaleController; import org.telegram.messenger.MessagesController; +import org.telegram.messenger.NotificationCenter; import org.telegram.messenger.R; -import org.telegram.messenger.UserObject; import org.telegram.messenger.Utilities; import org.telegram.tgnet.ConnectionsManager; import org.telegram.tgnet.TLObject; @@ -52,7 +50,6 @@ import org.telegram.ui.ActionBar.AlertDialog; import org.telegram.ui.ActionBar.BaseFragment; import org.telegram.ui.ActionBar.Theme; import org.telegram.ui.Adapters.SearchAdapterHelper; -import org.telegram.ui.Cells.CheckBoxCell; import org.telegram.ui.Cells.GroupCreateSectionCell; import org.telegram.ui.Cells.GroupCreateUserCell; import org.telegram.ui.Cells.ManageChatTextCell; @@ -62,12 +59,12 @@ import org.telegram.ui.LaunchActivity; import java.util.ArrayList; -public class InviteMembersBottomSheet extends UsersAlertBase { +public class InviteMembersBottomSheet extends UsersAlertBase implements NotificationCenter.NotificationCenterDelegate { private SparseArray ignoreUsers; private final SpansContainer spansContainer; private final ScrollView spansScrollView; - SearchAdapter searchAdapter; + private SearchAdapter searchAdapter; private int emptyRow; private int copyLinkRow; @@ -82,21 +79,22 @@ public class InviteMembersBottomSheet extends UsersAlertBase { private ArrayList contacts = new ArrayList<>(); private SparseArray selectedContacts = new SparseArray<>(); - private ArrayList allSpans = new ArrayList<>(); - boolean spanEnter; - float spansEnterProgress = 0; + private boolean spanEnter; + private float spansEnterProgress = 0; private ValueAnimator spansEnterAnimator; private GroupCreateSpan currentDeletingSpan; - int scrollViewH; + private int scrollViewH; private GroupCreateActivity.ContactsAddActivityDelegate delegate; + private InviteMembersBottomSheetDelegate dialogsDelegate; + private ArrayList dialogsServerOnly; - int additionalHeight; + private int additionalHeight; - float touchSlop; - BaseFragment parentFragment; + private float touchSlop; + private BaseFragment parentFragment; - View.OnClickListener spanClickListener = new View.OnClickListener() { + private View.OnClickListener spanClickListener = new View.OnClickListener() { @Override public void onClick(View v) { GroupCreateSpan span = (GroupCreateSpan) v; @@ -104,7 +102,7 @@ public class InviteMembersBottomSheet extends UsersAlertBase { currentDeletingSpan = null; selectedContacts.remove(span.getUid()); spansContainer.removeSpan(span); - spansCountChanged(); + spansCountChanged(true); AndroidUtilities.updateVisibleRows(listView); } else { if (currentDeletingSpan != null) { @@ -121,6 +119,10 @@ public class InviteMembersBottomSheet extends UsersAlertBase { private int searchAdditionalHeight; private int chatId; + public interface InviteMembersBottomSheetDelegate { + void didSelectDialogs(ArrayList dids); + } + public InviteMembersBottomSheet(Context context, int account, SparseArray ignoreUsers, int chatId, BaseFragment parentFragment) { super(context, false, account); this.ignoreUsers = ignoreUsers; @@ -128,6 +130,8 @@ public class InviteMembersBottomSheet extends UsersAlertBase { this.parentFragment = parentFragment; this.chatId = chatId; + searchView.searchEditText.setHint(LocaleController.getString("SearchForChats", R.string.SearchForChats)); + final ViewConfiguration configuration = ViewConfiguration.get(context); touchSlop = configuration.getScaledTouchSlop(); @@ -160,6 +164,9 @@ public class InviteMembersBottomSheet extends UsersAlertBase { } else if (position > localCount + localServerCount && position <= globalCount + localCount + localServerCount) { object = searchAdapter.searchAdapterHelper.getGlobalSearch().get(position - localCount - localServerCount - 1); } + if (dialogsDelegate != null) { + searchView.closeSearch(); + } } else { if (position == copyLinkRow) { TLRPC.Chat chat = MessagesController.getInstance(currentAccount).getChat(chatId); @@ -179,11 +186,11 @@ public class InviteMembersBottomSheet extends UsersAlertBase { android.content.ClipboardManager clipboard = (android.content.ClipboardManager) ApplicationLoader.applicationContext.getSystemService(Context.CLIPBOARD_SERVICE); android.content.ClipData clip = android.content.ClipData.newPlainText("label", link); clipboard.setPrimaryClip(clip); - BulletinFactory.createCopyLinkBulletin(parentFragment).show(); dismiss(); + BulletinFactory.createCopyLinkBulletin(parentFragment).show(); } else if (position >= contactsStartRow && position < contactsEndRow) { - object = contacts.get(position - contactsStartRow); + object = ((ListAdapter) listViewAdapter).getObject(position); } } @@ -208,10 +215,10 @@ public class InviteMembersBottomSheet extends UsersAlertBase { GroupCreateSpan groupCreateSpan = new GroupCreateSpan(context, object); groupCreateSpan.setOnClickListener(spanClickListener); selectedContacts.put(id, groupCreateSpan); - spansContainer.addSpan(groupCreateSpan); + spansContainer.addSpan(groupCreateSpan, true); } } - spansCountChanged(); + spansCountChanged(true); AndroidUtilities.updateVisibleRows(listView); } }); @@ -232,9 +239,7 @@ public class InviteMembersBottomSheet extends UsersAlertBase { } else { maxSize = AndroidUtilities.dp(56); } - int lastH = getMeasuredHeight(); super.onMeasure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(maxSize, MeasureSpec.AT_MOST)); - } }; spansScrollView.setVisibility(View.GONE); @@ -272,67 +277,57 @@ public class InviteMembersBottomSheet extends UsersAlertBase { } floatingButton.setOnClickListener(v -> { - if (selectedContacts.size() == 0) { + if (dialogsDelegate == null && selectedContacts.size() == 0) { return; } Activity activity = AndroidUtilities.findActivity(context); if (activity == null) { return; } - AlertDialog.Builder builder = new AlertDialog.Builder(activity); - if (selectedContacts.size() == 1) { - builder.setTitle(LocaleController.getString("AddOneMemberAlertTitle", R.string.AddOneMemberAlertTitle)); + if (dialogsDelegate != null) { + ArrayList dialogs = new ArrayList<>(); + for (int a = 0; a < selectedContacts.size(); a++) { + int uid = selectedContacts.keyAt(a); + dialogs.add((long) uid); + } + dialogsDelegate.didSelectDialogs(dialogs); + dismiss(); } else { - builder.setTitle(LocaleController.formatString("AddMembersAlertTitle", R.string.AddMembersAlertTitle, LocaleController.formatPluralString("Members", selectedContacts.size()))); - } - StringBuilder stringBuilder = new StringBuilder(); - for (int a = 0; a < selectedContacts.size(); a++) { - int uid = selectedContacts.keyAt(a); - TLRPC.User user = MessagesController.getInstance(currentAccount).getUser(uid); - if (user == null) { - continue; + AlertDialog.Builder builder = new AlertDialog.Builder(activity); + if (selectedContacts.size() == 1) { + builder.setTitle(LocaleController.getString("AddOneMemberAlertTitle", R.string.AddOneMemberAlertTitle)); + } else { + builder.setTitle(LocaleController.formatString("AddMembersAlertTitle", R.string.AddMembersAlertTitle, LocaleController.formatPluralString("Members", selectedContacts.size()))); } - if (stringBuilder.length() > 0) { - stringBuilder.append(", "); + StringBuilder stringBuilder = new StringBuilder(); + for (int a = 0; a < selectedContacts.size(); a++) { + int uid = selectedContacts.keyAt(a); + TLRPC.User user = MessagesController.getInstance(currentAccount).getUser(uid); + if (user == null) { + continue; + } + if (stringBuilder.length() > 0) { + stringBuilder.append(", "); + } + stringBuilder.append("**").append(ContactsController.formatName(user.first_name, user.last_name)).append("**"); } - stringBuilder.append("**").append(ContactsController.formatName(user.first_name, user.last_name)).append("**"); - } - TLRPC.Chat chat = MessagesController.getInstance(currentAccount).getChat(chatId); - if (selectedContacts.size() > 5) { - SpannableStringBuilder spannableStringBuilder = new SpannableStringBuilder(AndroidUtilities.replaceTags(LocaleController.formatString("AddMembersAlertNamesText", R.string.AddMembersAlertNamesText, LocaleController.formatPluralString("Members", selectedContacts.size()), chat.title))); - String countString = String.format("%d", selectedContacts.size()); - int index = TextUtils.indexOf(spannableStringBuilder, countString); - if (index >= 0) { - spannableStringBuilder.setSpan(new TypefaceSpan(AndroidUtilities.getTypeface("fonts/rmedium.ttf")), index, index + countString.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); + TLRPC.Chat chat = MessagesController.getInstance(currentAccount).getChat(chatId); + if (selectedContacts.size() > 5) { + SpannableStringBuilder spannableStringBuilder = new SpannableStringBuilder(AndroidUtilities.replaceTags(LocaleController.formatString("AddMembersAlertNamesText", R.string.AddMembersAlertNamesText, LocaleController.formatPluralString("Members", selectedContacts.size()), chat.title))); + String countString = String.format("%d", selectedContacts.size()); + int index = TextUtils.indexOf(spannableStringBuilder, countString); + if (index >= 0) { + spannableStringBuilder.setSpan(new TypefaceSpan(AndroidUtilities.getTypeface("fonts/rmedium.ttf")), index, index + countString.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); + } + builder.setMessage(spannableStringBuilder); + } else { + builder.setMessage(AndroidUtilities.replaceTags(LocaleController.formatString("AddMembersAlertNamesText", R.string.AddMembersAlertNamesText, stringBuilder, chat.title))); } - builder.setMessage(spannableStringBuilder); - } else { - builder.setMessage(AndroidUtilities.replaceTags(LocaleController.formatString("AddMembersAlertNamesText", R.string.AddMembersAlertNamesText, stringBuilder, chat.title))); + builder.setPositiveButton(LocaleController.getString("Add", R.string.Add), (dialogInterface, i) -> onAddToGroupDone(0)); + builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null); + builder.create(); + builder.show(); } -// CheckBoxCell[] cells = new CheckBoxCell[1]; -// if (!ChatObject.isChannel(chat)) { -// LinearLayout linearLayout = new LinearLayout(activity); -// linearLayout.setOrientation(LinearLayout.VERTICAL); -// cells[0] = new CheckBoxCell(activity, 1); -// cells[0].setBackgroundDrawable(Theme.getSelectorDrawable(false)); -// cells[0].setMultiline(true); -// if (selectedContacts.size() == 1) { -// TLRPC.User user = MessagesController.getInstance(currentAccount).getUser(selectedContacts.keyAt(0)); -// cells[0].setText(AndroidUtilities.replaceTags(LocaleController.formatString("AddOneMemberForwardMessages", R.string.AddOneMemberForwardMessages, UserObject.getFirstName(user))), "", true, false); -// } else { -// cells[0].setText(LocaleController.getString("AddMembersForwardMessages", R.string.AddMembersForwardMessages), "", true, false); -// } -// cells[0].setPadding(LocaleController.isRTL ? AndroidUtilities.dp(16) : AndroidUtilities.dp(8), 0, LocaleController.isRTL ? AndroidUtilities.dp(8) : AndroidUtilities.dp(16), 0); -// linearLayout.addView(cells[0], LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); -// cells[0].setOnClickListener(v1 -> cells[0].setChecked(!cells[0].isChecked(), true)); -// -// builder.setCustomViewOffset(12); -// builder.setView(linearLayout); -// } - builder.setPositiveButton(LocaleController.getString("Add", R.string.Add), (dialogInterface, i) -> onAddToGroupDone(0)); - builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null); - builder.create(); - builder.show(); }); floatingButton.setVisibility(View.INVISIBLE); floatingButton.setScaleX(0.0f); @@ -359,7 +354,75 @@ public class InviteMembersBottomSheet extends UsersAlertBase { dismiss(); } - private void spansCountChanged() { + @Override + public void dismiss() { + super.dismiss(); + NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.dialogsNeedReload); + } + + public void setSelectedContacts(ArrayList dialogs) { + for (int a = 0, N = dialogs.size(); a < N; a++) { + int lowerId = (int) (long) dialogs.get(a); + TLObject object; + if (lowerId < 0) { + object = MessagesController.getInstance(currentAccount).getChat(-lowerId); + } else { + object = MessagesController.getInstance(currentAccount).getUser(lowerId); + } + GroupCreateSpan span = new GroupCreateSpan(spansContainer.getContext(), object); + spansContainer.addSpan(span, false); + span.setOnClickListener(spanClickListener); + } + spansCountChanged(false); + + int count = spansContainer.getChildCount(); + + boolean isPortrait = AndroidUtilities.displaySize.x < AndroidUtilities.displaySize.y; + + if (AndroidUtilities.isTablet() || isPortrait) { + maxSize = AndroidUtilities.dp(144); + } else { + maxSize = AndroidUtilities.dp(56); + } + + int width; + if (AndroidUtilities.isTablet()) { + width = (int) (Math.min(AndroidUtilities.displaySize.x, AndroidUtilities.displaySize.y) * 0.8f); + } else { + width = isPortrait ? AndroidUtilities.displaySize.x : (int) Math.max(AndroidUtilities.displaySize.x * 0.8f, Math.min(AndroidUtilities.dp(480), AndroidUtilities.displaySize.x)); + } + int maxWidth = width - AndroidUtilities.dp(26); + int currentLineWidth = 0; + int y = AndroidUtilities.dp(10); + for (int a = 0; a < count; a++) { + View child = spansContainer.getChildAt(a); + if (!(child instanceof GroupCreateSpan)) { + continue; + } + child.measure(View.MeasureSpec.makeMeasureSpec(width, View.MeasureSpec.AT_MOST), View.MeasureSpec.makeMeasureSpec(AndroidUtilities.dp(32), View.MeasureSpec.EXACTLY)); + if (currentLineWidth + child.getMeasuredWidth() > maxWidth) { + y += child.getMeasuredHeight() + AndroidUtilities.dp(8); + currentLineWidth = 0; + } + currentLineWidth += child.getMeasuredWidth() + AndroidUtilities.dp(9); + } + + int animateToH = y + AndroidUtilities.dp(32 + 10); + + int newAdditionalH; + if (dialogsDelegate != null) { + newAdditionalH = spanEnter ? Math.min(maxSize, animateToH) : 0; + } else { + newAdditionalH = Math.max(0, Math.min(maxSize, animateToH) - AndroidUtilities.dp(52)); + } + int oldSearchAdditionalH = searchAdditionalHeight; + searchAdditionalHeight = (selectedContacts.size() > 0 ? AndroidUtilities.dp(56) : 0); + if (newAdditionalH != additionalHeight || oldSearchAdditionalH != searchAdditionalHeight) { + additionalHeight = newAdditionalH; + } + } + + private void spansCountChanged(boolean animated) { boolean enter = selectedContacts.size() > 0; if (spanEnter != enter) { if (spansEnterAnimator != null) { @@ -370,51 +433,73 @@ public class InviteMembersBottomSheet extends UsersAlertBase { if (spanEnter) { spansScrollView.setVisibility(View.VISIBLE); } - spansEnterAnimator = ValueAnimator.ofFloat(spansEnterProgress, enter ? 1f : 0f); - spansEnterAnimator.addUpdateListener(valueAnimator1 -> { - spansEnterProgress = (float) valueAnimator1.getAnimatedValue(); - containerView.invalidate(); - }); - spansEnterAnimator.addListener(new AnimatorListenerAdapter() { - @Override - public void onAnimationEnd(Animator animation) { - spansEnterProgress = enter ? 1f : 0f; + if (animated) { + spansEnterAnimator = ValueAnimator.ofFloat(spansEnterProgress, enter ? 1f : 0f); + spansEnterAnimator.addUpdateListener(valueAnimator1 -> { + spansEnterProgress = (float) valueAnimator1.getAnimatedValue(); containerView.invalidate(); - if (!enter) { - spansScrollView.setVisibility(View.GONE); - } - } - }); - spansEnterAnimator.setDuration(150); - spansEnterAnimator.start(); - - if (!spanEnter) { - if (currentDoneButtonAnimation != null) { - currentDoneButtonAnimation.cancel(); - } - currentDoneButtonAnimation = new AnimatorSet(); - currentDoneButtonAnimation.playTogether(ObjectAnimator.ofFloat(floatingButton, View.SCALE_X, 0.0f), - ObjectAnimator.ofFloat(floatingButton, View.SCALE_Y, 0.0f), - ObjectAnimator.ofFloat(floatingButton, View.ALPHA, 0.0f)); - currentDoneButtonAnimation.addListener(new AnimatorListenerAdapter() { + }); + spansEnterAnimator.addListener(new AnimatorListenerAdapter() { @Override public void onAnimationEnd(Animator animation) { - floatingButton.setVisibility(View.INVISIBLE); + spansEnterProgress = enter ? 1f : 0f; + containerView.invalidate(); + if (!enter) { + spansScrollView.setVisibility(View.GONE); + } } }); - currentDoneButtonAnimation.setDuration(180); - currentDoneButtonAnimation.start(); + spansEnterAnimator.setDuration(150); + spansEnterAnimator.start(); + + if (!spanEnter && dialogsDelegate == null) { + if (currentDoneButtonAnimation != null) { + currentDoneButtonAnimation.cancel(); + } + currentDoneButtonAnimation = new AnimatorSet(); + currentDoneButtonAnimation.playTogether(ObjectAnimator.ofFloat(floatingButton, View.SCALE_X, 0.0f), + ObjectAnimator.ofFloat(floatingButton, View.SCALE_Y, 0.0f), + ObjectAnimator.ofFloat(floatingButton, View.ALPHA, 0.0f)); + currentDoneButtonAnimation.addListener(new AnimatorListenerAdapter() { + @Override + public void onAnimationEnd(Animator animation) { + floatingButton.setVisibility(View.INVISIBLE); + } + }); + currentDoneButtonAnimation.setDuration(180); + currentDoneButtonAnimation.start(); + } else { + if (currentDoneButtonAnimation != null) { + currentDoneButtonAnimation.cancel(); + } + currentDoneButtonAnimation = new AnimatorSet(); + floatingButton.setVisibility(View.VISIBLE); + currentDoneButtonAnimation.playTogether(ObjectAnimator.ofFloat(floatingButton, View.SCALE_X, 1.0f), + ObjectAnimator.ofFloat(floatingButton, View.SCALE_Y, 1.0f), + ObjectAnimator.ofFloat(floatingButton, View.ALPHA, 1.0f)); + currentDoneButtonAnimation.setDuration(180); + currentDoneButtonAnimation.start(); + } } else { + spansEnterProgress = enter ? 1.0f : 0.0f; + containerView.invalidate(); + if (!enter) { + spansScrollView.setVisibility(View.GONE); + } if (currentDoneButtonAnimation != null) { currentDoneButtonAnimation.cancel(); } - currentDoneButtonAnimation = new AnimatorSet(); - floatingButton.setVisibility(View.VISIBLE); - currentDoneButtonAnimation.playTogether(ObjectAnimator.ofFloat(floatingButton, View.SCALE_X, 1.0f), - ObjectAnimator.ofFloat(floatingButton, View.SCALE_Y, 1.0f), - ObjectAnimator.ofFloat(floatingButton, View.ALPHA, 1.0f)); - currentDoneButtonAnimation.setDuration(180); - currentDoneButtonAnimation.start(); + if (!spanEnter && dialogsDelegate == null) { + floatingButton.setScaleY(0.0f); + floatingButton.setScaleX(0.0f); + floatingButton.setAlpha(0.0f); + floatingButton.setVisibility(View.INVISIBLE); + } else { + floatingButton.setScaleY(1.0f); + floatingButton.setScaleX(1.0f); + floatingButton.setAlpha(1.0f); + floatingButton.setVisibility(View.VISIBLE); + } } } } @@ -426,19 +511,39 @@ public class InviteMembersBottomSheet extends UsersAlertBase { rowCount = 0; emptyRow = rowCount++; - copyLinkRow = rowCount++; - - if (contacts.size() != 0) { - contactsStartRow = rowCount; - rowCount += contacts.size(); - contactsEndRow = rowCount; + if (dialogsDelegate == null) { + copyLinkRow = rowCount++; + if (contacts.size() != 0) { + contactsStartRow = rowCount; + rowCount += contacts.size(); + contactsEndRow = rowCount; + } else { + noContactsStubRow = rowCount++; + } } else { - noContactsStubRow = rowCount++; + copyLinkRow = -1; + if (dialogsServerOnly.size() != 0) { + contactsStartRow = rowCount; + rowCount += dialogsServerOnly.size(); + contactsEndRow = rowCount; + } else { + noContactsStubRow = rowCount++; + } } lastRow = rowCount++; } + @Override + public void didReceivedNotification(int id, int account, Object... args) { + if (id == NotificationCenter.dialogsNeedReload) { + if (dialogsDelegate != null && dialogsServerOnly.isEmpty()) { + dialogsServerOnly = new ArrayList<>(MessagesController.getInstance(currentAccount).dialogsServerOnly); + listViewAdapter.notifyDataSetChanged(); + } + } + } + private class ListAdapter extends RecyclerListView.SelectionAdapter { @NonNull @@ -463,7 +568,7 @@ public class InviteMembersBottomSheet extends UsersAlertBase { }; break; case 3: - view = new GroupCreateUserCell(context, true, 0, false); + view = new GroupCreateUserCell(context, true, 0, dialogsDelegate != null); break; case 4: view = new View(context); @@ -478,7 +583,11 @@ public class InviteMembersBottomSheet extends UsersAlertBase { }; stickerEmptyView.setLayoutParams(new RecyclerView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)); stickerEmptyView.subtitle.setVisibility(View.GONE); - stickerEmptyView.title.setText(LocaleController.getString("NoContacts", R.string.NoContacts)); + if (dialogsDelegate != null) { + stickerEmptyView.title.setText(LocaleController.getString("FilterNoChats", R.string.FilterNoChats)); + } else { + stickerEmptyView.title.setText(LocaleController.getString("NoContacts", R.string.NoContacts)); + } stickerEmptyView.setAnimateLayoutChange(true); view = stickerEmptyView; break; @@ -486,6 +595,20 @@ public class InviteMembersBottomSheet extends UsersAlertBase { return new RecyclerListView.Holder(view); } + public TLObject getObject(int position) { + if (dialogsDelegate != null) { + TLRPC.Dialog dialog = dialogsServerOnly.get(position - contactsStartRow); + int lowerId = (int) dialog.id; + if (lowerId > 0) { + return MessagesController.getInstance(currentAccount).getUser(lowerId); + } else { + return MessagesController.getInstance(currentAccount).getChat(-lowerId); + } + } else { + return contacts.get(position - contactsStartRow); + } + } + @Override public void onBindViewHolder(@NonNull RecyclerView.ViewHolder holder, int position) { switch (holder.getItemViewType()) { @@ -494,10 +617,7 @@ public class InviteMembersBottomSheet extends UsersAlertBase { break; case 3: GroupCreateUserCell cell = (GroupCreateUserCell) holder.itemView; - TLObject object; - CharSequence username = null; - CharSequence name = null; - object = contacts.get(position - contactsStartRow); + TLObject object = getObject(position); Object oldObject = cell.getObject(); int oldId; @@ -509,7 +629,7 @@ public class InviteMembersBottomSheet extends UsersAlertBase { oldId = 0; } - cell.setObject(object, name, username, position != contactsEndRow); + cell.setObject(object, null, null, position != contactsEndRow); int id; if (object instanceof TLRPC.User) { id = ((TLRPC.User) object).id; @@ -785,7 +905,7 @@ public class InviteMembersBottomSheet extends UsersAlertBase { } emptyView.showProgress(true, false); Utilities.searchQueue.postRunnable(searchRunnable = () -> AndroidUtilities.runOnUIThread(() -> { - searchAdapterHelper.queryServerSearch(query, true, false, true, false, false, 0, false, 0, 0); + searchAdapterHelper.queryServerSearch(query, true, dialogsDelegate != null, true, dialogsDelegate != null, false, 0, false, 0, 0); Utilities.searchQueue.postRunnable(searchRunnable = () -> { String search1 = query.trim().toLowerCase(); if (search1.length() == 0) { @@ -897,7 +1017,6 @@ public class InviteMembersBottomSheet extends UsersAlertBase { private boolean animationStarted; private ArrayList animators = new ArrayList<>(); - private View addingSpan; private View removingSpan; private int animationIndex = -1; boolean addAnimation; @@ -937,10 +1056,10 @@ public class InviteMembersBottomSheet extends UsersAlertBase { child.setTranslationY(allY); } else if (removingSpan != null) { if (child.getTranslationX() != x) { - animators.add(ObjectAnimator.ofFloat(child, "translationX", x)); + animators.add(ObjectAnimator.ofFloat(child, View.TRANSLATION_X, x)); } if (child.getTranslationY() != y) { - animators.add(ObjectAnimator.ofFloat(child, "translationY", y)); + animators.add(ObjectAnimator.ofFloat(child, View.TRANSLATION_Y, y)); } } else { child.setTranslationX(x); @@ -956,9 +1075,14 @@ public class InviteMembersBottomSheet extends UsersAlertBase { int h = allY + AndroidUtilities.dp(32 + 10); int animateToH = y + AndroidUtilities.dp(32 + 10); - int newAdditionalH = Math.max(0, Math.min(maxSize, animateToH) - AndroidUtilities.dp(52)); + int newAdditionalH; + if (dialogsDelegate != null) { + newAdditionalH = spanEnter ? Math.min(maxSize, animateToH) : 0; + } else { + newAdditionalH = Math.max(0, Math.min(maxSize, animateToH) - AndroidUtilities.dp(52)); + } int oldSearchAdditionalH = searchAdditionalHeight; - searchAdditionalHeight = (selectedContacts.size() > 0 ? AndroidUtilities.dp(56) : 0); + searchAdditionalHeight = (dialogsDelegate == null && selectedContacts.size() > 0 ? AndroidUtilities.dp(56) : 0); if (newAdditionalH != additionalHeight || oldSearchAdditionalH != searchAdditionalHeight) { additionalHeight = newAdditionalH; if (listView.getAdapter() != null && listView.getAdapter().getItemCount() > 0) { @@ -1021,9 +1145,8 @@ public class InviteMembersBottomSheet extends UsersAlertBase { } } - public void addSpan(final GroupCreateSpan span) { + public void addSpan(final GroupCreateSpan span, boolean animated) { addAnimation = true; - allSpans.add(span); selectedContacts.put(span.getUid(), span); if (currentAnimation != null) { @@ -1031,22 +1154,22 @@ public class InviteMembersBottomSheet extends UsersAlertBase { currentAnimation.cancel(); } animationStarted = false; - currentAnimation = new AnimatorSet(); - currentAnimation.addListener(new AnimatorListenerAdapter() { - @Override - public void onAnimationEnd(Animator animator) { - addingSpan = null; - currentAnimation = null; - animationStarted = false; - } - }); - currentAnimation.setDuration(150); - currentAnimation.setInterpolator(CubicBezierInterpolator.DEFAULT); - addingSpan = span; - animators.clear(); - animators.add(ObjectAnimator.ofFloat(addingSpan, View.SCALE_X, 0.01f, 1.0f)); - animators.add(ObjectAnimator.ofFloat(addingSpan, View.SCALE_Y, 0.01f, 1.0f)); - animators.add(ObjectAnimator.ofFloat(addingSpan, View.ALPHA, 0.0f, 1.0f)); + if (animated) { + currentAnimation = new AnimatorSet(); + currentAnimation.addListener(new AnimatorListenerAdapter() { + @Override + public void onAnimationEnd(Animator animator) { + currentAnimation = null; + animationStarted = false; + } + }); + currentAnimation.setDuration(150); + currentAnimation.setInterpolator(CubicBezierInterpolator.DEFAULT); + animators.clear(); + animators.add(ObjectAnimator.ofFloat(span, View.SCALE_X, 0.01f, 1.0f)); + animators.add(ObjectAnimator.ofFloat(span, View.SCALE_Y, 0.01f, 1.0f)); + animators.add(ObjectAnimator.ofFloat(span, View.ALPHA, 0.0f, 1.0f)); + } addView(span); } @@ -1054,7 +1177,6 @@ public class InviteMembersBottomSheet extends UsersAlertBase { addAnimation = false; boolean ignoreScrollEvent = true; selectedContacts.remove(span.getUid()); - allSpans.remove(span); span.setOnClickListener(null); if (currentAnimation != null) { @@ -1164,8 +1286,15 @@ public class InviteMembersBottomSheet extends UsersAlertBase { searchAdapter.searchDialogs(text); } - public void setDelegate(GroupCreateActivity.ContactsAddActivityDelegate delegate) { - this.delegate = delegate; + public void setDelegate(GroupCreateActivity.ContactsAddActivityDelegate contactsAddActivityDelegate) { + delegate = contactsAddActivityDelegate; + } + + public void setDelegate(InviteMembersBottomSheetDelegate inviteMembersBottomSheetDelegate, ArrayList selectedDialogs) { + dialogsDelegate = inviteMembersBottomSheetDelegate; + NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.dialogsNeedReload); + dialogsServerOnly = new ArrayList<>(MessagesController.getInstance(currentAccount).dialogsServerOnly); + updateRows(); } private class ItemAnimator extends DefaultItemAnimator { @@ -1202,7 +1331,7 @@ public class InviteMembersBottomSheet extends UsersAlertBase { } linkGenerating = true; TLRPC.TL_messages_exportChatInvite req = new TLRPC.TL_messages_exportChatInvite(); - //req.legacy_revoke_permanent = true; TODO layer 124 + req.legacy_revoke_permanent = true; req.peer = MessagesController.getInstance(currentAccount).getInputPeer(-chatId); ConnectionsManager.getInstance(currentAccount).sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { if (error == null) { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/LinkActionView.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/LinkActionView.java index 1009a57bb..e1ad392cc 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/LinkActionView.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/LinkActionView.java @@ -5,16 +5,21 @@ import android.animation.AnimatorListenerAdapter; import android.content.Context; import android.content.Intent; import android.graphics.Canvas; +import android.graphics.Color; +import android.graphics.drawable.ColorDrawable; import android.text.SpannableStringBuilder; +import android.text.TextUtils; import android.util.TypedValue; import android.view.Gravity; import android.view.KeyEvent; import android.view.View; import android.view.ViewGroup; +import android.view.ViewTreeObserver; import android.view.WindowManager; import android.widget.FrameLayout; import android.widget.ImageView; import android.widget.LinearLayout; +import android.widget.PopupWindow; import android.widget.ScrollView; import android.widget.TextView; @@ -62,25 +67,31 @@ public class LinkActionView extends LinearLayout { private boolean permanent; boolean loadingImporters; private QRCodeBottomSheet qrCodeBottomSheet; - private boolean isPublic; + private boolean hideRevokeOption; + private boolean canEdit = true; + private boolean isChannel; float[] point = new float[2]; - public LinkActionView(Context context, BaseFragment fragment, BottomSheet bottomSheet, int chatId, boolean permanent) { + public LinkActionView(Context context, BaseFragment fragment, BottomSheet bottomSheet, int chatId, boolean permanent, boolean isChannel) { super(context); this.fragment = fragment; this.permanent = permanent; + this.isChannel = isChannel; + setOrientation(VERTICAL); frameLayout = new FrameLayout(context); linkView = new TextView(context); linkView.setPadding(AndroidUtilities.dp(20), AndroidUtilities.dp(18), AndroidUtilities.dp(40), AndroidUtilities.dp(18)); linkView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 16); + linkView.setEllipsize(TextUtils.TruncateAt.MIDDLE); + linkView.setSingleLine(true); frameLayout.addView(linkView); optionsView = new ImageView(context); optionsView.setImageDrawable(ContextCompat.getDrawable(context, R.drawable.ic_ab_other)); optionsView.setScaleType(ImageView.ScaleType.CENTER); - frameLayout.addView(optionsView, LayoutHelper.createFrame(40, 48, Gravity.RIGHT | Gravity.CENTER_VERTICAL)); + frameLayout.addView(optionsView, LayoutHelper.createFrame(40, 48, Gravity.RIGHT | Gravity.CENTER_VERTICAL)); addView(frameLayout, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, 0, 4, 0, 4, 0)); LinearLayout linearLayout = new LinearLayout(context); @@ -91,13 +102,13 @@ public class LinkActionView extends LinearLayout { SpannableStringBuilder spannableStringBuilder = new SpannableStringBuilder(); spannableStringBuilder.append("..").setSpan(new ColoredImageSpan(ContextCompat.getDrawable(context, R.drawable.baseline_content_copy_24)), 0, 1, 0); spannableStringBuilder.setSpan(new DialogCell.FixedWidthSpan(AndroidUtilities.dp(8)), 1, 2, 0); - spannableStringBuilder.append(LocaleController.getString("CopyLink", R.string.CopyLink)); + spannableStringBuilder.append(LocaleController.getString("LinkActionCopy", R.string.LinkActionCopy)); spannableStringBuilder.append(".").setSpan(new DialogCell.FixedWidthSpan(AndroidUtilities.dp(5)), spannableStringBuilder.length() - 1, spannableStringBuilder.length(), 0); copyView.setText(spannableStringBuilder); copyView.setPadding(AndroidUtilities.dp(10), AndroidUtilities.dp(10), AndroidUtilities.dp(10), AndroidUtilities.dp(10)); copyView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); copyView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); - copyView.setLines(1); + copyView.setSingleLine(true); linearLayout.addView(copyView, LayoutHelper.createLinear(0, 40, 1f, 0, 4, 0, 4, 0)); shareView = new TextView(context); @@ -105,14 +116,14 @@ public class LinkActionView extends LinearLayout { spannableStringBuilder = new SpannableStringBuilder(); spannableStringBuilder.append("..").setSpan(new ColoredImageSpan(ContextCompat.getDrawable(context, R.drawable.baseline_forward_24)), 0, 1, 0); spannableStringBuilder.setSpan(new DialogCell.FixedWidthSpan(AndroidUtilities.dp(8)), 1, 2, 0); - spannableStringBuilder.append(LocaleController.getString("ShareLink", R.string.ShareLink)); + spannableStringBuilder.append(LocaleController.getString("LinkActionShare", R.string.LinkActionShare)); spannableStringBuilder.append(".").setSpan(new DialogCell.FixedWidthSpan(AndroidUtilities.dp(5)), spannableStringBuilder.length() - 1, spannableStringBuilder.length(), 0); shareView.setText(spannableStringBuilder); shareView.setPadding(AndroidUtilities.dp(10), AndroidUtilities.dp(10), AndroidUtilities.dp(10), AndroidUtilities.dp(10)); shareView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); shareView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); - shareView.setLines(1); + shareView.setSingleLine(true); linearLayout.addView(shareView, LayoutHelper.createLinear(0, 40, 1f, 4, 0, 4, 0)); @@ -127,15 +138,14 @@ public class LinkActionView extends LinearLayout { removeView.setPadding(AndroidUtilities.dp(10), AndroidUtilities.dp(10), AndroidUtilities.dp(10), AndroidUtilities.dp(10)); removeView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); removeView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); - removeView.setLines(1); + removeView.setSingleLine(true); linearLayout.addView(removeView, LayoutHelper.createLinear(0, LayoutHelper.WRAP_CONTENT, 1f, 4, 0, 4, 0)); removeView.setVisibility(View.GONE); - - addView(linearLayout, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, 0 , 20, 0, 0)); + addView(linearLayout, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, 0, 20, 0, 0)); avatarsContainer = new AvatarsContainer(context); - addView(avatarsContainer, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, 28 + 16, 0 , 12, 0, 0)); + addView(avatarsContainer, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, 28 + 16, 0, 12, 0, 0)); copyView.setOnClickListener(view -> { try { if (link == null) { @@ -188,45 +198,43 @@ public class LinkActionView extends LinearLayout { }); optionsView.setOnClickListener(view -> { - if (isPublic) { - showQrCode(); - return; - } if (actionBarPopupWindow != null) { return; } ActionBarPopupWindow.ActionBarPopupWindowLayout layout = new ActionBarPopupWindow.ActionBarPopupWindowLayout(context); ActionBarMenuSubItem subItem; - if (!permanent) { + if (!this.permanent && canEdit) { subItem = new ActionBarMenuSubItem(context, true, false); subItem.setTextAndIcon(LocaleController.getString("Edit", R.string.Edit), R.drawable.baseline_edit_24); layout.addView(subItem, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, 48)); subItem.setOnClickListener(view12 -> { - delegate.editLink(); if (actionBarPopupWindow != null) { actionBarPopupWindow.dismiss(); } + delegate.editLink(); }); } -// subItem = new ActionBarMenuSubItem(context, true, false); -// subItem.setTextAndIcon(LocaleController.getString("GetQRCode", R.string.GetQRCode), R.drawable.msg_qrcode); -// layout.addView(subItem, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, 48)); -// subItem.setOnClickListener(view12 -> { -// showQrCode(); -// }); - - subItem = new ActionBarMenuSubItem(context, false, true); - subItem.setTextAndIcon(LocaleController.getString("RevokeLink", R.string.RevokeLink), R.drawable.baseline_delete_24); - subItem.setColors(Theme.getColor(Theme.key_windowBackgroundWhiteRedText), Theme.getColor(Theme.key_windowBackgroundWhiteRedText)); - subItem.setOnClickListener(view1 -> { - revokeLink(); - if (actionBarPopupWindow != null) { - actionBarPopupWindow.dismiss(); - } - }); + subItem = new ActionBarMenuSubItem(context, true, false); + subItem.setTextAndIcon(LocaleController.getString("GetQRCode", R.string.GetQRCode), R.drawable.msg_qrcode); layout.addView(subItem, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, 48)); + subItem.setOnClickListener(view12 -> { + showQrCode(); + }); + + if (!hideRevokeOption) { + subItem = new ActionBarMenuSubItem(context, false, true); + subItem.setTextAndIcon(LocaleController.getString("RevokeLink", R.string.RevokeLink), R.drawable.baseline_delete_24); + subItem.setColors(Theme.getColor(Theme.key_windowBackgroundWhiteRedText), Theme.getColor(Theme.key_windowBackgroundWhiteRedText)); + subItem.setOnClickListener(view1 -> { + if (actionBarPopupWindow != null) { + actionBarPopupWindow.dismiss(); + } + revokeLink(); + }); + layout.addView(subItem, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, 48)); + } ViewGroup container; if (bottomSheet == null) { @@ -236,7 +244,6 @@ public class LinkActionView extends LinearLayout { } - if (container != null) { float x = 0; float y; @@ -251,21 +258,35 @@ public class LinkActionView extends LinearLayout { canvas.drawColor(0x33000000); getPointOnScreen(frameLayout, finalContainer, point); canvas.save(); + float clipTop = ((View) frameLayout.getParent()).getY() + frameLayout.getY(); + if (clipTop < 1) { + canvas.clipRect(0, point[1] - clipTop + 1, getMeasuredWidth(), getMeasuredHeight()); + } canvas.translate(point[0], point[1]); + frameLayout.draw(canvas); canvas.restore(); } }; + + ViewTreeObserver.OnPreDrawListener preDrawListener = new ViewTreeObserver.OnPreDrawListener() { + @Override + public boolean onPreDraw() { + dimView.invalidate(); + return true; + } + }; + finalContainer.getViewTreeObserver().addOnPreDrawListener(preDrawListener); container.addView(dimView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT)); dimView.setAlpha(0); dimView.animate().alpha(1f).setDuration(150); layout.measure(MeasureSpec.makeMeasureSpec(container.getMeasuredWidth(), MeasureSpec.UNSPECIFIED), MeasureSpec.makeMeasureSpec(container.getMeasuredHeight(), MeasureSpec.UNSPECIFIED)); - actionBarPopupWindow = new ActionBarPopupWindow(layout, LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT) { + actionBarPopupWindow = new ActionBarPopupWindow(layout, LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT); + actionBarPopupWindow.setOnDismissListener(new PopupWindow.OnDismissListener() { @Override - public void dismiss() { - super.dismiss(); + public void onDismiss() { actionBarPopupWindow = null; dimView.animate().cancel(); dimView.animate().alpha(0).setDuration(150).setListener(new AnimatorListenerAdapter() { @@ -274,17 +295,16 @@ public class LinkActionView extends LinearLayout { if (dimView.getParent() != null) { finalContainer.removeView(dimView); } + finalContainer.getViewTreeObserver().removeOnPreDrawListener(preDrawListener); } }); } - }; + }); actionBarPopupWindow.setOutsideTouchable(true); - actionBarPopupWindow.setClippingEnabled(true); + actionBarPopupWindow.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT)); actionBarPopupWindow.setAnimationStyle(R.style.PopupContextAnimation); - actionBarPopupWindow.setFocusable(true); actionBarPopupWindow.setInputMethodMode(ActionBarPopupWindow.INPUT_METHOD_NOT_NEEDED); actionBarPopupWindow.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED); - actionBarPopupWindow.getContentView().setFocusableInTouchMode(true); layout.setDispatchKeyEventListener(keyEvent -> { if (keyEvent.getKeyCode() == KeyEvent.KEYCODE_BACK && keyEvent.getRepeatCount() == 0 && actionBarPopupWindow.isShowing()) { @@ -332,7 +352,7 @@ public class LinkActionView extends LinearLayout { } private void showQrCode() { - qrCodeBottomSheet = new QRCodeBottomSheet(getContext(), link) { + qrCodeBottomSheet = new QRCodeBottomSheet(getContext(), link, isChannel ? LocaleController.getString("QRCodeLinkHelpChannel", R.string.QRCodeLinkHelpChannel) : LocaleController.getString("QRCodeLinkHelpGroup", R.string.QRCodeLinkHelpGroup)) { @Override public void dismiss() { super.dismiss(); @@ -351,13 +371,13 @@ public class LinkActionView extends LinearLayout { removeView.setTextColor(Theme.getColor(Theme.key_featuredStickers_buttonText)); copyView.setBackground(Theme.createSimpleSelectorRoundRectDrawable(AndroidUtilities.dp(6), Theme.getColor(Theme.key_featuredStickers_addButton), Theme.getColor(Theme.key_featuredStickers_addButtonPressed))); shareView.setBackground(Theme.createSimpleSelectorRoundRectDrawable(AndroidUtilities.dp(6), Theme.getColor(Theme.key_featuredStickers_addButton), Theme.getColor(Theme.key_featuredStickers_addButtonPressed))); - removeView.setBackground(Theme.createSimpleSelectorRoundRectDrawable(AndroidUtilities.dp(6), Theme.getColor(Theme.key_chat_attachAudioBackground), Theme.getColor(Theme.key_featuredStickers_addButtonPressed))); + removeView.setBackground(Theme.createSimpleSelectorRoundRectDrawable(AndroidUtilities.dp(6), Theme.getColor(Theme.key_chat_attachAudioBackground), ColorUtils.setAlphaComponent(Theme.getColor(Theme.key_windowBackgroundWhite), 120))); frameLayout.setBackground(Theme.createSimpleSelectorRoundRectDrawable(AndroidUtilities.dp(6), Theme.getColor(Theme.key_graySection), ColorUtils.setAlphaComponent(Theme.getColor(Theme.key_listSelector), (int) (255 * 0.3f)))); linkView.setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteBlackText)); optionsView.setColorFilter(Theme.getColor(Theme.key_dialogTextGray3)); //optionsView.setBackground(Theme.createSelectorDrawable(Theme.getColor(Theme.key_listSelector), 1)); avatarsContainer.countTextView.setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteBlueText)); - avatarsContainer.setBackground(Theme.createSimpleSelectorRoundRectDrawable(AndroidUtilities.dp(6),0, ColorUtils.setAlphaComponent(Theme.getColor(Theme.key_windowBackgroundWhiteBlueText), (int) (255 * 0.3f)))); + avatarsContainer.setBackground(Theme.createSimpleSelectorRoundRectDrawable(AndroidUtilities.dp(6), 0, ColorUtils.setAlphaComponent(Theme.getColor(Theme.key_windowBackgroundWhiteBlueText), (int) (255 * 0.3f)))); if (qrCodeBottomSheet != null) { qrCodeBottomSheet.updateColors(); @@ -395,16 +415,11 @@ public class LinkActionView extends LinearLayout { optionsView.setVisibility(b ? View.VISIBLE : View.GONE); } - public void setPublic(boolean b) { - if (isPublic != b) { - isPublic = b; - if (isPublic) { - optionsView.setVisibility(View.GONE); - optionsView.setImageDrawable(ContextCompat.getDrawable(optionsView.getContext(), R.drawable.msg_qrcode)); - } else { - optionsView.setVisibility(View.VISIBLE); - optionsView.setImageDrawable(ContextCompat.getDrawable(optionsView.getContext(), R.drawable.ic_ab_other)); - } + public void showRevokeOption(boolean b) { + if (hideRevokeOption != b) { + hideRevokeOption = b; + optionsView.setVisibility(View.VISIBLE); + optionsView.setImageDrawable(ContextCompat.getDrawable(optionsView.getContext(), R.drawable.ic_ab_other)); } } @@ -419,7 +434,7 @@ public class LinkActionView extends LinearLayout { @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { int N = Math.min(3, usersCount); - int x = N == 0 ? 0 :(20 * (N - 1) + 24 + 8); + int x = N == 0 ? 0 : (20 * (N - 1) + 24 + 8); super.onMeasure(MeasureSpec.makeMeasureSpec(AndroidUtilities.dp(x), MeasureSpec.EXACTLY), heightMeasureSpec); } }; @@ -436,7 +451,7 @@ public class LinkActionView extends LinearLayout { linearLayout.addView(avatarsImageView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.MATCH_PARENT)); linearLayout.addView(countTextView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER_VERTICAL)); - setPadding(0, AndroidUtilities.dp(8), 0 ,AndroidUtilities.dp(8)); + setPadding(0, AndroidUtilities.dp(8), 0, AndroidUtilities.dp(8)); avatarsImageView.commitTransition(false); } } @@ -451,7 +466,7 @@ public class LinkActionView extends LinearLayout { } }); builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null); - fragment.showDialog(builder.create()); + builder.show(); } public void setDelegate(Delegate delegate) { @@ -517,12 +532,22 @@ public class LinkActionView extends LinearLayout { public interface Delegate { void revokeLink(); - default void editLink() {} - default void removeLink() {} - default void showUsersForPermanentLink() {} + + default void editLink() { + } + + default void removeLink() { + } + + default void showUsersForPermanentLink() { + } } public void setPermanent(boolean permanent) { this.permanent = permanent; } + + public void setCanEdit(boolean canEdit) { + this.canEdit = canEdit; + } } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/PermanentLinkBottomSheet.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/PermanentLinkBottomSheet.java index a4d7ed38c..9a5e28292 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/PermanentLinkBottomSheet.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/PermanentLinkBottomSheet.java @@ -1,10 +1,8 @@ package org.telegram.ui.Components; import android.content.Context; -import android.graphics.Color; import android.view.Gravity; import android.view.View; -import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; @@ -15,8 +13,10 @@ import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.LocaleController; import org.telegram.messenger.MessagesController; import org.telegram.messenger.R; +import org.telegram.messenger.UserConfig; import org.telegram.tgnet.ConnectionsManager; import org.telegram.tgnet.TLRPC; +import org.telegram.ui.ActionBar.AlertDialog; import org.telegram.ui.ActionBar.BaseFragment; import org.telegram.ui.ActionBar.BottomSheet; import org.telegram.ui.ActionBar.Theme; @@ -31,27 +31,31 @@ public class PermanentLinkBottomSheet extends BottomSheet { RLottieDrawable linkIcon; private final TextView titleView; private final TextView subtitle; - // private final TextView manage; + private final TextView manage; private final RLottieImageView imageView; private final LinkActionView linkActionView; private int chatId; + private BaseFragment fragment; + private boolean isChannel; - public PermanentLinkBottomSheet(Context context, boolean needFocus, BaseFragment fragment, TLRPC.ChatFull info, int chatId) { + public PermanentLinkBottomSheet(Context context, boolean needFocus, BaseFragment fragment, TLRPC.ChatFull info, int chatId, boolean isChannel) { super(context, needFocus); this.info = info; this.chatId = chatId; + this.isChannel = isChannel; setAllowNestedScroll(true); setApplyBottomPadding(false); - linkActionView = new LinkActionView(context, fragment, this, chatId, true); + linkActionView = new LinkActionView(context, fragment, this, chatId, true, isChannel); linkActionView.setPermanent(true); imageView = new RLottieImageView(context); linkIcon = new RLottieDrawable(R.raw.shared_link_enter, "" + R.raw.shared_link_enter, AndroidUtilities.dp(90), AndroidUtilities.dp(90), false, null); linkIcon.setCustomEndFrame(42); imageView.setAnimation(linkIcon); linkActionView.setUsers(0, null); - linkActionView.setPublic(true); + linkActionView.showRevokeOption(true); + linkActionView.setDelegate(() -> generateLink(true)); titleView = new TextView(context); titleView.setText(LocaleController.getString("InviteLink", R.string.InviteLink)); @@ -60,12 +64,11 @@ public class PermanentLinkBottomSheet extends BottomSheet { titleView.setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteBlackText)); subtitle = new TextView(context); - subtitle.setText(LocaleController.getString("LinkInfo", R.string.LinkInfo)); + subtitle.setText(isChannel ? LocaleController.getString("LinkInfoChannel", R.string.LinkInfoChannel) : LocaleController.getString("LinkInfo", R.string.LinkInfo)); subtitle.setTextSize(14); subtitle.setGravity(Gravity.CENTER_HORIZONTAL); subtitle.setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteGrayText)); - /* manage = new TextView(context); manage.setText(LocaleController.getString("ManageInviteLinks", R.string.ManageInviteLinks)); manage.setTextSize(14); @@ -73,20 +76,20 @@ public class PermanentLinkBottomSheet extends BottomSheet { manage.setBackground(Theme.createRadSelectorDrawable(ColorUtils.setAlphaComponent(Theme.getColor(Theme.key_windowBackgroundWhiteBlueText), (int) (255 * 0.3f)), AndroidUtilities.dp(4), AndroidUtilities.dp(4))); manage.setPadding(AndroidUtilities.dp(12), AndroidUtilities.dp(4), AndroidUtilities.dp(12), AndroidUtilities.dp(4)); - manage.setOnClickListener(view -> { - ManageLinksActivity manageFragment = new ManageLinksActivity(info.id); + manage.setOnClickListener(view -> { + ManageLinksActivity manageFragment = new ManageLinksActivity(info.id, 0, 0); manageFragment.setInfo(info, info.exported_invite); fragment.presentFragment(manageFragment); dismiss(); }); -*/ + LinearLayout linearLayout = new LinearLayout(context); linearLayout.setOrientation(LinearLayout.VERTICAL); linearLayout.addView(imageView, LayoutHelper.createLinear(90, 90, Gravity.CENTER_HORIZONTAL, 0, 24, 0, 0)); linearLayout.addView(titleView, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER_HORIZONTAL, 60, 16, 60, 0)); linearLayout.addView(subtitle, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER_HORIZONTAL, 60, 16, 60, 0)); linearLayout.addView(linkActionView, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); - // linearLayout.addView(manage, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER_HORIZONTAL, 60, 26, 60, 26)); + linearLayout.addView(manage, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER_HORIZONTAL, 60, 26, 60, 26)); NestedScrollView scrollView = new NestedScrollView(context); scrollView.setVerticalScrollBarEnabled(false); @@ -94,10 +97,14 @@ public class PermanentLinkBottomSheet extends BottomSheet { setCustomView(scrollView); - if (info != null && info.exported_invite != null) { + TLRPC.Chat chat = MessagesController.getInstance(UserConfig.selectedAccount).getChat(chatId); + if (chat != null && chat.username != null) { + linkActionView.setLink("https://t.me/" + chat.username); + manage.setVisibility(View.GONE); + } else if (info != null && info.exported_invite != null) { linkActionView.setLink(info.exported_invite.link); } else { - generateLink(); + generateLink(false); } updateColors(); @@ -106,13 +113,13 @@ public class PermanentLinkBottomSheet extends BottomSheet { boolean linkGenerating; TLRPC.TL_chatInviteExported invite; - private void generateLink() { + private void generateLink(boolean showDialog) { if (linkGenerating) { return; } linkGenerating = true; TLRPC.TL_messages_exportChatInvite req = new TLRPC.TL_messages_exportChatInvite(); - //req.legacy_revoke_permanent = true; TODO layer 124 + req.legacy_revoke_permanent = true; req.peer = MessagesController.getInstance(currentAccount).getInputPeer(-chatId); ConnectionsManager.getInstance(currentAccount).sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { if (error == null) { @@ -124,6 +131,14 @@ public class PermanentLinkBottomSheet extends BottomSheet { } linkActionView.setLink(invite.link); + + if (showDialog && fragment != null) { + AlertDialog.Builder builder = new AlertDialog.Builder(getContext()); + builder.setMessage(LocaleController.getString("RevokeAlertNewLink", R.string.RevokeAlertNewLink)); + builder.setTitle(LocaleController.getString("RevokeLink", R.string.RevokeLink)); + builder.setNegativeButton(LocaleController.getString("OK", R.string.OK), null); + fragment.showDialog(builder.create()); + } } linkGenerating = false; })); @@ -145,7 +160,7 @@ public class PermanentLinkBottomSheet extends BottomSheet { }; arrayList.add(new ThemeDescription(titleView, ThemeDescription.FLAG_TEXTCOLOR, null, null, null, null, Theme.key_windowBackgroundWhiteBlackText)); arrayList.add(new ThemeDescription(subtitle, ThemeDescription.FLAG_TEXTCOLOR, null, null, null, null, Theme.key_windowBackgroundWhiteGrayText)); - // arrayList.add(new ThemeDescription(manage, ThemeDescription.FLAG_TEXTCOLOR, null, null, null, null, Theme.key_windowBackgroundWhiteBlueText)); + arrayList.add(new ThemeDescription(manage, ThemeDescription.FLAG_TEXTCOLOR, null, null, null, null, Theme.key_windowBackgroundWhiteBlueText)); arrayList.add(new ThemeDescription(null, 0, null, null, null, descriptionDelegate, Theme.key_featuredStickers_addButton)); arrayList.add(new ThemeDescription(null, 0, null, null, null, descriptionDelegate, Theme.key_featuredStickers_buttonText)); arrayList.add(new ThemeDescription(null, 0, null, null, null, descriptionDelegate, Theme.key_windowBackgroundWhiteBlueText)); @@ -154,7 +169,7 @@ public class PermanentLinkBottomSheet extends BottomSheet { private void updateColors() { imageView.setBackground(Theme.createCircleDrawable(AndroidUtilities.dp(90), Theme.getColor(Theme.key_featuredStickers_addButton))); - // manage.setBackground(Theme.createRadSelectorDrawable(ColorUtils.setAlphaComponent(Theme.getColor(Theme.key_windowBackgroundWhiteBlueText), (int) (255 * 0.3f)), AndroidUtilities.dp(4), AndroidUtilities.dp(4))); + manage.setBackground(Theme.createRadSelectorDrawable(ColorUtils.setAlphaComponent(Theme.getColor(Theme.key_windowBackgroundWhiteBlueText), (int) (255 * 0.3f)), AndroidUtilities.dp(4), AndroidUtilities.dp(4))); int color = Theme.getColor(Theme.key_featuredStickers_buttonText); linkIcon.setLayerColor("Top.**", color); linkIcon.setLayerColor("Bottom.**", color); @@ -162,4 +177,14 @@ public class PermanentLinkBottomSheet extends BottomSheet { linkActionView.updateColors(); setBackgroundColor(Theme.getColor(Theme.key_dialogBackground)); } + + @Override + public void dismissInternal() { + super.dismissInternal(); + } + + @Override + public void dismiss() { + super.dismiss(); + } } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/PhotoViewerCaptionEnterView.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/PhotoViewerCaptionEnterView.java index abb5369de..1879e4211 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/PhotoViewerCaptionEnterView.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/PhotoViewerCaptionEnterView.java @@ -21,7 +21,6 @@ import android.graphics.Rect; import android.graphics.drawable.Drawable; import android.os.Vibrator; import android.text.Editable; -import android.text.InputFilter; import android.text.SpannableStringBuilder; import android.text.TextPaint; import android.text.TextUtils; @@ -43,10 +42,10 @@ import androidx.core.graphics.ColorUtils; import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.Emoji; +import org.telegram.messenger.FileLog; import org.telegram.messenger.LocaleController; import org.telegram.messenger.MessagesController; import org.telegram.messenger.NotificationCenter; -import org.telegram.messenger.FileLog; import org.telegram.messenger.R; import org.telegram.messenger.SharedConfig; import org.telegram.messenger.UserConfig; @@ -138,7 +137,7 @@ public class PhotoViewerCaptionEnterView extends FrameLayout implements Notifica emojiButton.setAlpha(0.58f); frameLayout.addView(emojiButton, LayoutHelper.createFrame(48, 48, Gravity.BOTTOM | Gravity.LEFT)); emojiButton.setOnClickListener(view -> { - if (keyboardVisible) { + if (keyboardVisible || (AndroidUtilities.isInMultiwindow || AndroidUtilities.usingHardwareInput) && !isPopupShowing()) { showPopup(1, false); } else { openKeyboardInternal(); @@ -230,7 +229,7 @@ public class PhotoViewerCaptionEnterView extends FrameLayout implements Notifica }); messageEditText.setOnClickListener(view -> { if (isPopupShowing()) { - showPopup(AndroidUtilities.usingHardwareInput ? 0 : 2, false); + showPopup(AndroidUtilities.isInMultiwindow || AndroidUtilities.usingHardwareInput ? 0 : 2, false); } }); messageEditText.addTextChangedListener(new TextWatcher() { @@ -713,7 +712,7 @@ public class PhotoViewerCaptionEnterView extends FrameLayout implements Notifica } private void openKeyboardInternal() { - showPopup(AndroidUtilities.usingHardwareInput ? 0 : 2, false); + showPopup(AndroidUtilities.isInMultiwindow || AndroidUtilities.usingHardwareInput ? 0 : 2, false); openKeyboard(); } @@ -753,7 +752,7 @@ public class PhotoViewerCaptionEnterView extends FrameLayout implements Notifica } public boolean isKeyboardVisible() { - return AndroidUtilities.usingHardwareInput && getTag() != null || keyboardVisible; + return (AndroidUtilities.usingHardwareInput || AndroidUtilities.isInMultiwindow) && getTag() != null || keyboardVisible; } @Override diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/PlayPauseDrawable.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/PlayPauseDrawable.java index 12ca076ca..9f8aee597 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/PlayPauseDrawable.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/PlayPauseDrawable.java @@ -7,6 +7,7 @@ import android.graphics.Paint; import android.graphics.PixelFormat; import android.graphics.Rect; import android.graphics.drawable.Drawable; +import android.view.View; import android.view.animation.AnimationUtils; import androidx.annotation.NonNull; @@ -24,6 +25,12 @@ public class PlayPauseDrawable extends Drawable { private float progress; private long lastUpdateTime; + private View parent; + + private int alpha = 255; + + float duration = 300f; + public PlayPauseDrawable(int size) { this.size = AndroidUtilities.dp(size); paint = new Paint(Paint.ANTI_ALIAS_FLAG); @@ -39,22 +46,32 @@ public class PlayPauseDrawable extends Drawable { dt = 16; } if (pause && progress < 1f) { - progress += dt / 300f; + progress += dt / duration; if (progress >= 1f) { progress = 1f; } else { + if (parent != null) { + parent.invalidate(); + } invalidateSelf(); } } else if (!pause && progress > 0f) { - progress -= dt / 300f; + progress -= dt / duration; if (progress <= 0f) { progress = 0f; } else { + if (parent != null) { + parent.invalidate(); + } invalidateSelf(); } } final Rect bounds = getBounds(); - canvas.save(); + if (alpha == 255) { + canvas.save(); + } else { + canvas.saveLayerAlpha(bounds.left, bounds.top, bounds.right, bounds.bottom, alpha, Canvas.ALL_SAVE_FLAG); + } canvas.translate(bounds.centerX() + AndroidUtilities.dp(1) * (1.0f - progress), bounds.centerY()); final float ms = 500.0f * progress; final float rotation; @@ -90,7 +107,7 @@ public class PlayPauseDrawable extends Drawable { @Override public void setAlpha(int i) { - paint.setAlpha(i); + alpha = i; } @Override @@ -112,4 +129,12 @@ public class PlayPauseDrawable extends Drawable { public int getIntrinsicHeight() { return size; } + + public void setParent(View parent) { + this.parent = parent; + } + + public void setDuration(int duration) { + this.duration = duration; + } } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/QRCodeBottomSheet.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/QRCodeBottomSheet.java index f52ceefeb..d0dcf95a9 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/QRCodeBottomSheet.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/QRCodeBottomSheet.java @@ -4,44 +4,51 @@ import android.content.ActivityNotFoundException; import android.content.Context; import android.content.Intent; import android.graphics.Bitmap; +import android.graphics.Color; +import android.graphics.Outline; import android.net.Uri; -import android.provider.MediaStore; -import android.text.TextUtils; +import android.os.Build; import android.util.TypedValue; import android.view.Gravity; import android.view.View; +import android.view.ViewOutlineProvider; import android.widget.FrameLayout; import android.widget.ImageView; import android.widget.LinearLayout; +import android.widget.ScrollView; import android.widget.TextView; +import androidx.core.content.FileProvider; + import com.google.zxing.BarcodeFormat; import com.google.zxing.EncodeHintType; -import com.google.zxing.common.BitMatrix; import com.google.zxing.qrcode.QRCodeWriter; import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel; import org.telegram.messenger.AndroidUtilities; +import org.telegram.messenger.ApplicationLoader; +import org.telegram.messenger.BuildConfig; import org.telegram.messenger.FileLog; import org.telegram.messenger.LocaleController; import org.telegram.messenger.R; import org.telegram.ui.ActionBar.BottomSheet; import org.telegram.ui.ActionBar.Theme; -import org.telegram.ui.ActionBar.ThemeDescription; import java.io.ByteArrayOutputStream; -import java.util.ArrayList; +import java.io.File; +import java.io.FileOutputStream; +import java.io.IOException; import java.util.HashMap; -import tw.nekomimi.nekogram.utils.ProxyUtil; - public class QRCodeBottomSheet extends BottomSheet { Bitmap qrCode; private final TextView help; private final TextView buttonTextView; + int imageSize; + RLottieImageView iconImage; - public QRCodeBottomSheet(Context context, String link) { + public QRCodeBottomSheet(Context context, String link, String helpMessage) { super(context, false); setTitle(LocaleController.getString("InviteByQRCode", R.string.InviteByQRCode), true); @@ -52,22 +59,55 @@ public class QRCodeBottomSheet extends BottomSheet { super.onMeasure(MeasureSpec.makeMeasureSpec(size, MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(size, MeasureSpec.EXACTLY)); } }; - int p = AndroidUtilities.dp(54); - imageView.setPadding(p, p, p, p); - imageView.setScaleType(ImageView.ScaleType.CENTER_INSIDE); + imageView.setScaleType(ImageView.ScaleType.FIT_XY); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { + imageView.setOutlineProvider(new ViewOutlineProvider() { + @Override + public void getOutline(View view, Outline outline) { + outline.setRoundRect(0, 0, view.getMeasuredWidth(), view.getMeasuredHeight(), AndroidUtilities.dp(12)); + } + }); + imageView.setClipToOutline(true); + } LinearLayout linearLayout = new LinearLayout(context); linearLayout.setOrientation(LinearLayout.VERTICAL); + linearLayout.setPadding(0, AndroidUtilities.dp(16), 0, 0); imageView.setImageBitmap(qrCode = createQR(context, link, qrCode)); - FrameLayout frameLayout = new FrameLayout(context); - frameLayout.addView(imageView); - linearLayout.addView(frameLayout, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, 30, 0,30 ,0)); + + iconImage = new RLottieImageView(context); + iconImage.setBackgroundColor(Color.WHITE); + iconImage.setAutoRepeat(true); + iconImage.setAnimation(R.raw.qr_code_logo, 60, 60); + iconImage.playAnimation(); + + //iconImage.setPadding(-AndroidUtilities.dp(4), -AndroidUtilities.dp(4), -AndroidUtilities.dp(4), -AndroidUtilities.dp(4)); + + + FrameLayout frameLayout = new FrameLayout(context) { + + float lastX; + + @Override + protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { + super.onMeasure(widthMeasureSpec, heightMeasureSpec); + float x = imageSize / 768f * imageView.getMeasuredHeight(); + if (lastX != x) { + lastX = x; + iconImage.getLayoutParams().height = iconImage.getLayoutParams().width = (int) x; + super.onMeasure(widthMeasureSpec, heightMeasureSpec); + } + } + }; + frameLayout.addView(imageView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT)); + frameLayout.addView(iconImage, LayoutHelper.createFrame(60, 60, Gravity.CENTER)); + linearLayout.addView(frameLayout, LayoutHelper.createLinear(220, 220, Gravity.CENTER_HORIZONTAL, 30, 0, 30, 0)); help = new TextView(context); help.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); - help.setText(LocaleController.getString("QRCodeLinkHelp", R.string.QRCodeLinkHelp)); + help.setText(helpMessage); help.setGravity(Gravity.CENTER_HORIZONTAL); - frameLayout.addView(help, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.BOTTOM,40, 0,40 ,8)); + linearLayout.addView(help, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, 0, 40, 8, 40, 8)); buttonTextView = new TextView(context); @@ -77,29 +117,51 @@ public class QRCodeBottomSheet extends BottomSheet { buttonTextView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); buttonTextView.setText(LocaleController.getString("ShareQrCode", R.string.ShareQrCode)); buttonTextView.setOnClickListener(view -> { - Intent i = new Intent(Intent.ACTION_SEND); - i.setType("image/*"); - i.putExtra(Intent.EXTRA_STREAM, getImageUri(context, qrCode)); - try { - AndroidUtilities.findActivity(context).startActivityForResult(Intent.createChooser(i, LocaleController.getString("InviteByQRCode", R.string.InviteByQRCode)), 500); - } catch (ActivityNotFoundException ex) { - ex.printStackTrace(); + Uri uri = getImageUri(qrCode); + if (uri != null) { + Intent i = new Intent(Intent.ACTION_SEND); + + i.setType("image/*"); + i.putExtra(Intent.EXTRA_STREAM, uri); + try { + AndroidUtilities.findActivity(context).startActivityForResult(Intent.createChooser(i, LocaleController.getString("InviteByQRCode", R.string.InviteByQRCode)), 500); + } catch (ActivityNotFoundException ex) { + ex.printStackTrace(); + } } }); linearLayout.addView(buttonTextView, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, 48, Gravity.BOTTOM, 16, 15, 16, 16)); updateColors(); - setCustomView(linearLayout); + ScrollView scrollView = new ScrollView(context); + scrollView.addView(linearLayout); + setCustomView(scrollView); } - public Uri getImageUri(Context inContext, Bitmap inImage) { + public Uri getImageUri(Bitmap inImage) { ByteArrayOutputStream bytes = new ByteArrayOutputStream(); inImage.compress(Bitmap.CompressFormat.JPEG, 100, bytes); - String path = MediaStore.Images.Media.insertImage(inContext.getContentResolver(), inImage, "group_invite_qr", null); - return Uri.parse(path); + File cachePath = AndroidUtilities.getCacheDir(); + if (!cachePath.isDirectory()) { + try { + cachePath.mkdirs(); + } catch (Exception e) { + FileLog.e(e); + return null; + } + } + File file = new File(cachePath, "qr_tmp.png"); + try (FileOutputStream out = new FileOutputStream(file)) { + inImage.compress(Bitmap.CompressFormat.PNG, 100, out); + out.close(); + return FileProvider.getUriForFile(ApplicationLoader.applicationContext, BuildConfig.APPLICATION_ID + ".provider", file); + } catch (IOException e) { + FileLog.e(e); + } + return null; } public Bitmap createQR(Context context, String key, Bitmap oldBitmap) { @@ -107,7 +169,10 @@ public class QRCodeBottomSheet extends BottomSheet { HashMap hints = new HashMap<>(); hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M); hints.put(EncodeHintType.MARGIN, 0); - return new QRCodeWriter().encode(key, BarcodeFormat.QR_CODE, 768, 768, hints, oldBitmap, context); + QRCodeWriter writer = new QRCodeWriter(); + Bitmap bitmap = writer.encode(key, BarcodeFormat.QR_CODE, 768, 768, hints, oldBitmap, context); + imageSize = writer.getImageSize(); + return bitmap; } catch (Exception e) { FileLog.e(e); } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/ReportAlert.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/ReportAlert.java new file mode 100644 index 000000000..542397be4 --- /dev/null +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/ReportAlert.java @@ -0,0 +1,148 @@ +/* + * This is the source code of Telegram for Android v. 5.x.x. + * It is licensed under GNU GPL v. 2 or later. + * You should have received a copy of the license in this archive (see LICENSE). + * + * Copyright Nikolai Kudashov, 2013-2018. + */ + +package org.telegram.ui.Components; + +import android.content.Context; +import android.text.InputType; +import android.text.TextUtils; +import android.util.TypedValue; +import android.view.Gravity; +import android.view.View; +import android.view.inputmethod.EditorInfo; +import android.widget.FrameLayout; +import android.widget.LinearLayout; +import android.widget.TextView; + +import org.telegram.messenger.AndroidUtilities; +import org.telegram.messenger.LocaleController; +import org.telegram.messenger.R; +import org.telegram.ui.ActionBar.BottomSheet; +import org.telegram.ui.ActionBar.Theme; + +public class ReportAlert extends BottomSheet { + + private BottomSheetCell clearButton; + private EditTextBoldCursor editText; + private boolean compteled; + + public static class BottomSheetCell extends FrameLayout { + + private View background; + private TextView textView; + private LinearLayout linearLayout; + + public BottomSheetCell(Context context) { + super(context); + + background = new View(context); + background.setBackground(Theme.createSimpleSelectorRoundRectDrawable(AndroidUtilities.dp(4), Theme.getColor(Theme.key_featuredStickers_addButton), Theme.getColor(Theme.key_featuredStickers_addButtonPressed))); + addView(background, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, 0, 16, 16, 16, 16)); + + textView = new TextView(context); + textView.setLines(1); + textView.setSingleLine(true); + textView.setGravity(Gravity.CENTER_HORIZONTAL); + textView.setEllipsize(TextUtils.TruncateAt.END); + textView.setGravity(Gravity.CENTER); + textView.setTextColor(Theme.getColor(Theme.key_featuredStickers_buttonText)); + textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); + textView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); + addView(textView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER)); + } + + @Override + protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { + super.onMeasure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(AndroidUtilities.dp(80), MeasureSpec.EXACTLY)); + } + + public void setText(CharSequence text) { + textView.setText(text); + } + } + + public ReportAlert(final Context context, int type) { + super(context, true); + setApplyBottomPadding(false); + setApplyTopPadding(false); + + FrameLayout frameLayout = new FrameLayout(context); + setCustomView(frameLayout); + + RLottieImageView imageView = new RLottieImageView(context); + imageView.setAutoRepeat(true); + imageView.setAnimation(R.raw.report_police, 120, 120); + imageView.playAnimation(); + frameLayout.addView(imageView, LayoutHelper.createFrame(160, 160, Gravity.CENTER_HORIZONTAL | Gravity.TOP, 17, 14, 17, 0)); + + TextView percentTextView = new TextView(context); + percentTextView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); + percentTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 24); + percentTextView.setTextColor(Theme.getColor(Theme.key_dialogTextBlack)); + if (type == 0) { + percentTextView.setText(LocaleController.getString("ReportTitleSpam", R.string.ReportTitleSpam)); + } else if (type == 1) { + percentTextView.setText(LocaleController.getString("ReportTitleFake", R.string.ReportTitleFake)); + } else if (type == 2) { + percentTextView.setText(LocaleController.getString("ReportTitleViolence", R.string.ReportTitleViolence)); + } else if (type == 3) { + percentTextView.setText(LocaleController.getString("ReportTitleChild", R.string.ReportTitleChild)); + } else if (type == 4) { + percentTextView.setText(LocaleController.getString("ReportTitlePornography", R.string.ReportTitlePornography)); + } else if (type == 5) { + percentTextView.setText(LocaleController.getString("ReportChat", R.string.ReportChat)); + } + frameLayout.addView(percentTextView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.TOP | Gravity.CENTER_HORIZONTAL, 17, 197, 17, 0)); + + TextView infoTextView = new TextView(context); + infoTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); + infoTextView.setTextColor(Theme.getColor(Theme.key_dialogTextGray3)); + infoTextView.setGravity(Gravity.CENTER_HORIZONTAL); + infoTextView.setText(LocaleController.getString("ReportInfo", R.string.ReportInfo)); + frameLayout.addView(infoTextView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.TOP | Gravity.CENTER_HORIZONTAL, 30, 235, 30, 44)); + + editText = new EditTextBoldCursor(context); + editText.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 18); + editText.setHintTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteHintText)); + editText.setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteBlackText)); + editText.setBackgroundDrawable(Theme.createEditTextDrawable(context, false)); + editText.setMaxLines(1); + editText.setLines(1); + editText.setPadding(0, 0, 0, 0); + editText.setSingleLine(true); + editText.setGravity(LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT); + editText.setInputType(InputType.TYPE_TEXT_FLAG_CAP_SENTENCES | InputType.TYPE_TEXT_FLAG_MULTI_LINE | InputType.TYPE_TEXT_FLAG_AUTO_CORRECT); + editText.setImeOptions(EditorInfo.IME_ACTION_DONE); + editText.setHint(LocaleController.getString("ReportHint", R.string.ReportHint)); + editText.setCursorColor(Theme.getColor(Theme.key_windowBackgroundWhiteBlackText)); + editText.setCursorSize(AndroidUtilities.dp(20)); + editText.setCursorWidth(1.5f); + editText.setOnEditorActionListener((textView, i, keyEvent) -> { + if (i == EditorInfo.IME_ACTION_DONE) { + clearButton.background.callOnClick(); + return true; + } + return false; + }); + frameLayout.addView(editText, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 36, Gravity.LEFT | Gravity.TOP, 17, 305, 17, 0)); + + clearButton = new BottomSheetCell(context); + clearButton.setBackground(null); + clearButton.setText(LocaleController.getString("ReportSend", R.string.ReportSend)); + clearButton.background.setOnClickListener(v -> { + AndroidUtilities.hideKeyboard(editText); + onSend(type, editText.getText().toString()); + dismiss(); + }); + frameLayout.addView(clearButton, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 50, Gravity.LEFT | Gravity.TOP, 0, 357, 0, 0)); + } + + protected void onSend(int type, String message) { + + } +} diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/SearchCounterView.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/SearchCounterView.java new file mode 100644 index 000000000..5294a06b8 --- /dev/null +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/SearchCounterView.java @@ -0,0 +1,312 @@ +package org.telegram.ui.Components; + +import android.animation.Animator; +import android.animation.AnimatorListenerAdapter; +import android.animation.ValueAnimator; +import android.content.Context; +import android.graphics.Canvas; +import android.graphics.Paint; +import android.graphics.RectF; +import android.text.Layout; +import android.text.SpannableString; +import android.text.SpannableStringBuilder; +import android.text.StaticLayout; +import android.text.TextPaint; +import android.text.TextUtils; +import android.view.Gravity; +import android.view.View; + +import org.telegram.messenger.AndroidUtilities; +import org.telegram.messenger.LocaleController; +import org.telegram.ui.ActionBar.Theme; + +public class SearchCounterView extends View { + + private final static int ANIMATION_TYPE_REPLACE = 2; + + int animationType = -1; + + TextPaint textPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG); + RectF rectF = new RectF(); + + int currentCount; + private boolean countAnimationIncrement; + private ValueAnimator countAnimator; + private float countChangeProgress = 1f; + private StaticLayout countLayout; + private StaticLayout countOldLayout; + private StaticLayout countAnimationStableLayout; + private StaticLayout countAnimationStableLayout2; + private StaticLayout countAnimationInLayout; + + private int countWidthOld; + private int countWidth; + + private int textColor; + private String textColorKey = Theme.key_chat_searchPanelText; + + int lastH; + int gravity = Gravity.CENTER; + float countLeft; + float x; + + public float horizontalPadding; + + String currentString; + + + public SearchCounterView(Context context) { + super(context); + textPaint.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf")); + textPaint.setTextSize(AndroidUtilities.dp(15)); + } + + @Override + protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { + super.onMeasure(widthMeasureSpec, heightMeasureSpec); + if (getMeasuredHeight() != lastH) { + int count = currentCount; + String str = currentString; + currentString = null; + setCount(str, count, false); + lastH = getMeasuredHeight(); + } + } + + float dx = 0; + + public void setCount(String newStr, int count, boolean animated) { + if (currentString != null && currentString.equals(newStr)) { + return; + } + if (countAnimator != null) { + countAnimator.cancel(); + } + if (currentCount == 0 || count <= 0 || newStr == null || LocaleController.isRTL || TextUtils.isEmpty(newStr)) { + animated = false; + } + + if (animated && newStr != null && !newStr.contains("**")) { + animated = false; + } + + if (!animated) { + if (newStr != null) { + newStr = newStr.replaceAll("\\*\\*", ""); + } + currentCount = count; + if (newStr == null) { + countWidth = 0; + countLayout = null; + } else { + countWidth = Math.max(AndroidUtilities.dp(12), (int) Math.ceil(textPaint.measureText(newStr))); + countLayout = new StaticLayout(newStr, textPaint, countWidth, Layout.Alignment.ALIGN_CENTER, 1.0f, 0.0f, false); + } + invalidate(); + } + + dx = 0; + if (animated) { + if (countAnimator != null) { + countAnimator.cancel(); + } + countChangeProgress = 0f; + countAnimator = ValueAnimator.ofFloat(0, 1f); + countAnimator.addUpdateListener(valueAnimator -> { + countChangeProgress = (float) valueAnimator.getAnimatedValue(); + invalidate(); + }); + countAnimator.addListener(new AnimatorListenerAdapter() { + @Override + public void onAnimationEnd(Animator animation) { + animationType = -1; + countChangeProgress = 1f; + countOldLayout = null; + countAnimationStableLayout = null; + countAnimationInLayout = null; + invalidate(); + } + }); + + animationType = ANIMATION_TYPE_REPLACE; + countAnimator.setDuration(200); + countAnimator.setInterpolator(CubicBezierInterpolator.DEFAULT); + + if (countLayout != null) { + String oldStr = currentString; + + int countStartIndex = newStr.indexOf("**"); + if (countStartIndex >= 0) { + newStr = newStr.replaceAll("\\*\\*", ""); + } else { + countStartIndex = 0; + } + + SpannableStringBuilder oldSpannableStr = new SpannableStringBuilder(oldStr); + SpannableStringBuilder newSpannableStr = new SpannableStringBuilder(newStr); + SpannableStringBuilder stableStr = new SpannableStringBuilder(newStr); + + boolean replaceAllDigits = Integer.toString(currentCount).length() != Integer.toString(count).length(); + boolean newEndReached = false; + boolean oldEndReached = false; + int n = Math.min(oldStr.length(), newStr.length()); + int cutIndexNew = 0; + int cutIndexOld = 0; + if (countStartIndex > 0) { + oldSpannableStr.setSpan(new EmptyStubSpan(), 0, countStartIndex, SpannableString.SPAN_EXCLUSIVE_EXCLUSIVE); + newSpannableStr.setSpan(new EmptyStubSpan(), 0, countStartIndex, SpannableString.SPAN_EXCLUSIVE_EXCLUSIVE); + stableStr.setSpan(new EmptyStubSpan(), 0, countStartIndex, SpannableString.SPAN_EXCLUSIVE_EXCLUSIVE); + } + for (int i = countStartIndex; i < n; i++) { + if (!newEndReached && !oldEndReached) { + if (replaceAllDigits) { + stableStr.setSpan(new EmptyStubSpan(), i, i + 1, SpannableString.SPAN_EXCLUSIVE_EXCLUSIVE); + } else if (oldStr.charAt(i) == newStr.charAt(i)) { + oldSpannableStr.setSpan(new EmptyStubSpan(), i, i + 1, SpannableString.SPAN_EXCLUSIVE_EXCLUSIVE); + newSpannableStr.setSpan(new EmptyStubSpan(), i, i + 1, SpannableString.SPAN_EXCLUSIVE_EXCLUSIVE); + } else { + stableStr.setSpan(new EmptyStubSpan(), i, i + 1, SpannableString.SPAN_EXCLUSIVE_EXCLUSIVE); + } + } + if (!Character.isDigit(newStr.charAt(i))) { + newSpannableStr.setSpan(new EmptyStubSpan(), i, newStr.length(), SpannableString.SPAN_EXCLUSIVE_EXCLUSIVE); + newEndReached = true; + cutIndexNew = i; + } + + if (!Character.isDigit(oldStr.charAt(i))) { + oldSpannableStr.setSpan(new EmptyStubSpan(), i, oldStr.length(), SpannableString.SPAN_EXCLUSIVE_EXCLUSIVE); + oldEndReached = true; + cutIndexOld = i; + } + } + + int countOldWidth = Math.max(AndroidUtilities.dp(12), (int) Math.ceil(textPaint.measureText(oldStr))); + int countNewWidth = Math.max(AndroidUtilities.dp(12), (int) Math.ceil(textPaint.measureText(newStr))); + countOldLayout = new StaticLayout(oldSpannableStr, textPaint, countOldWidth, Layout.Alignment.ALIGN_CENTER, 1.0f, 0.0f, false); + countAnimationStableLayout = new StaticLayout(stableStr, textPaint, countNewWidth, Layout.Alignment.ALIGN_CENTER, 1.0f, 0.0f, false); + countAnimationInLayout = new StaticLayout(newSpannableStr, textPaint, countNewWidth, Layout.Alignment.ALIGN_CENTER, 1.0f, 0.0f, false); + + if (countStartIndex > 0) { + SpannableStringBuilder stableString2 = new SpannableStringBuilder(newStr); + stableString2.setSpan(new EmptyStubSpan(), countStartIndex, newStr.length(), 0); + countAnimationStableLayout2 = new StaticLayout(stableString2, textPaint, countNewWidth, Layout.Alignment.ALIGN_CENTER, 1.0f, 0.0f, false); + } else { + countAnimationStableLayout2 = null; + } + + dx = countOldLayout.getPrimaryHorizontal(cutIndexOld) - countAnimationStableLayout.getPrimaryHorizontal(cutIndexNew); + } + countWidthOld = countWidth; + countAnimationIncrement = count < currentCount; + countAnimator.start(); + } + if (count > 0) { + countWidth = Math.max(AndroidUtilities.dp(12), (int) Math.ceil(textPaint.measureText(newStr))); + countLayout = new StaticLayout(newStr, textPaint, countWidth, Layout.Alignment.ALIGN_CENTER, 1.0f, 0.0f, false); + } + + currentCount = count; + invalidate(); + currentString = newStr; + } + + @Override + protected void onDraw(Canvas canvas) { + super.onDraw(canvas); + int textColor = Theme.getColor(textColorKey); + + if (this.textColor != textColor) { + this.textColor = textColor; + textPaint.setColor(textColor); + } + + if (countChangeProgress != 1f) { + + float countTop = (getMeasuredHeight() - AndroidUtilities.dp(23)) / 2f; + float countWidth; + if (this.countWidth == this.countWidthOld) { + countWidth = this.countWidth; + } else { + countWidth = this.countWidth * countChangeProgress + this.countWidthOld * (1f - countChangeProgress); + } + updateX(countWidth); + + rectF.set(x, countTop, x + countWidth + AndroidUtilities.dp(11), countTop + AndroidUtilities.dp(23)); + + boolean increment = countAnimationIncrement; + if (countAnimationInLayout != null) { + canvas.save(); + canvas.translate(countLeft, countTop + AndroidUtilities.dp(4) + (increment ? AndroidUtilities.dp(13) : -AndroidUtilities.dp(13)) * (1f - countChangeProgress)); + textPaint.setAlpha((int) (255 * countChangeProgress)); + countAnimationInLayout.draw(canvas); + canvas.restore(); + } else if (countLayout != null) { + canvas.save(); + canvas.translate(countLeft, countTop + AndroidUtilities.dp(4) + (increment ? AndroidUtilities.dp(13) : -AndroidUtilities.dp(13)) * (1f - countChangeProgress)); + textPaint.setAlpha((int) (255 * countChangeProgress)); + countLayout.draw(canvas); + canvas.restore(); + } + + if (countOldLayout != null) { + canvas.save(); + canvas.translate(countLeft, countTop + AndroidUtilities.dp(4) + (increment ? -AndroidUtilities.dp(13) : AndroidUtilities.dp(13)) * (countChangeProgress)); + textPaint.setAlpha((int) (255 * (1f - countChangeProgress))); + countOldLayout.draw(canvas); + canvas.restore(); + } + + if (countAnimationStableLayout != null) { + canvas.save(); + canvas.translate(countLeft + dx * (1f - countChangeProgress), countTop + AndroidUtilities.dp(4)); + textPaint.setAlpha(255); + countAnimationStableLayout.draw(canvas); + canvas.restore(); + } + + if (countAnimationStableLayout2 != null) { + canvas.save(); + canvas.translate(countLeft, countTop + AndroidUtilities.dp(4)); + textPaint.setAlpha(255); + countAnimationStableLayout2.draw(canvas); + canvas.restore(); + } + textPaint.setAlpha(255); + } else { + drawInternal(canvas); + } + } + + private void updateX(float countWidth) { + if (gravity == Gravity.RIGHT) { + countLeft = getMeasuredWidth() - AndroidUtilities.dp(5.5f); + if (horizontalPadding != 0) { + countLeft -= Math.max(horizontalPadding + countWidth / 2f, countWidth); + } else { + countLeft -= countWidth; + } + } else if (gravity == Gravity.LEFT) { + countLeft = AndroidUtilities.dp(5.5f); + } else { + countLeft = (int) ((getMeasuredWidth() - countWidth) / 2f); + } + x = countLeft - AndroidUtilities.dp(5.5f); + } + + private void drawInternal(Canvas canvas) { + float countTop = (getMeasuredHeight() - AndroidUtilities.dp(23)) / 2f; + updateX(countWidth); + if (countLayout != null) { + canvas.save(); + canvas.translate(countLeft, countTop + AndroidUtilities.dp(4)); + countLayout.draw(canvas); + canvas.restore(); + } + } + + public void setGravity(int gravity) { + this.gravity = gravity; + } + +} diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/ShareAlert.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/ShareAlert.java index e0005dc7a..0d51f07b2 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/ShareAlert.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/ShareAlert.java @@ -53,10 +53,10 @@ import androidx.recyclerview.widget.GridLayoutManager; import androidx.recyclerview.widget.RecyclerView; import org.telegram.SQLite.SQLiteCursor; +import org.telegram.messenger.AccountInstance; import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.ApplicationLoader; import org.telegram.messenger.ChatObject; -import org.telegram.messenger.ContactsController; import org.telegram.messenger.FileLog; import org.telegram.messenger.LocaleController; import org.telegram.messenger.MessageObject; @@ -351,8 +351,8 @@ public class ShareAlert extends BottomSheet implements NotificationCenter.Notifi AdjustPanLayoutHelper adjustPanLayoutHelper = new AdjustPanLayoutHelper(this) { @Override - protected void onTransitionStart(boolean keyboardVisible) { - super.onTransitionStart(keyboardVisible); + protected void onTransitionStart(boolean keyboardVisible, int contentHeight) { + super.onTransitionStart(keyboardVisible, contentHeight); if (previousScrollOffsetY > 0 && previousScrollOffsetY != scrollOffsetY && keyboardVisible) { fromScrollY = previousScrollOffsetY; toScrollY = scrollOffsetY; @@ -1127,11 +1127,7 @@ public class ShareAlert extends BottomSheet implements NotificationCenter.Notifi updateSelectedCount(0); - if (!DialogsActivity.dialogsLoaded[currentAccount]) { - MessagesController.getInstance(currentAccount).loadDialogs(0, 0, 100, true); - ContactsController.getInstance(currentAccount).checkInviteText(); - DialogsActivity.dialogsLoaded[currentAccount] = true; - } + DialogsActivity.loadDialogs(AccountInstance.getInstance(currentAccount)); if (listAdapter.dialogs.isEmpty()) { NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.dialogsNeedReload); } @@ -1400,7 +1396,7 @@ public class ShareAlert extends BottomSheet implements NotificationCenter.Notifi dialogsMap.put(dialog.id, dialog); } else { TLRPC.Chat chat = MessagesController.getInstance(currentAccount).getChat(-lower_id); - if (!(chat == null || ChatObject.isNotInChat(chat) || ChatObject.isChannel(chat) && !chat.creator && (chat.admin_rights == null || !chat.admin_rights.post_messages) && !chat.megagroup)) { + if (!(chat == null || ChatObject.isNotInChat(chat) || chat.gigagroup && !ChatObject.hasAdminRights(chat) || ChatObject.isChannel(chat) && !chat.creator && (chat.admin_rights == null || !chat.admin_rights.post_messages) && !chat.megagroup)) { if (dialog.folder_id == 1) { archivedDialogs.add(dialog); } else { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/SharedMediaLayout.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/SharedMediaLayout.java index d32c57f7b..8019a0f54 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/SharedMediaLayout.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/SharedMediaLayout.java @@ -3320,7 +3320,7 @@ public class SharedMediaLayout extends FrameLayout implements NotificationCenter case 2: FlickerLoadingView flickerLoadingView = new FlickerLoadingView(mContext); view = flickerLoadingView; - if (currentType == MediaDataController.MEDIA_MUSIC) { + if (currentType == 2) { flickerLoadingView.setViewType(FlickerLoadingView.AUDIO_TYPE); } else { flickerLoadingView.setViewType(FlickerLoadingView.FILES_TYPE); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/SlideChooseView.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/SlideChooseView.java index a04d1bef0..23cfc4c14 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/SlideChooseView.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/SlideChooseView.java @@ -2,6 +2,7 @@ package org.telegram.ui.Components; import android.content.Context; import android.graphics.Canvas; +import android.graphics.DashPathEffect; import android.graphics.Paint; import android.os.Bundle; import android.text.TextPaint; @@ -17,13 +18,17 @@ public class SlideChooseView extends View { private final SeekBarAccessibilityDelegate accessibilityDelegate; private Paint paint; + private Paint linePaint; private TextPaint textPaint; + private int lastDash; private int circleSize; private int gapSize; private int sideSide; private int lineSize; + private int dashedFrom = -1; + private boolean moving; private boolean startMoving; private float startX; @@ -33,7 +38,7 @@ public class SlideChooseView extends View { private String[] optionsStr; private int[] optionsSizes; - int selectedIndex; + private int selectedIndex; private Callback callback; @@ -42,6 +47,9 @@ public class SlideChooseView extends View { paint = new Paint(Paint.ANTI_ALIAS_FLAG); textPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG); + linePaint = new Paint(Paint.ANTI_ALIAS_FLAG); + linePaint.setStrokeWidth(AndroidUtilities.dp(2)); + linePaint.setStrokeCap(Paint.Cap.ROUND); textPaint.setTextSize(AndroidUtilities.dp(13)); accessibilityDelegate = new IntSeekBarAccessibilityDelegate() { @@ -81,6 +89,9 @@ public class SlideChooseView extends View { requestLayout(); } + public void setDashedFrom(int from) { + dashedFrom = from; + } @Override public boolean onTouchEvent(MotionEvent event) { @@ -130,6 +141,9 @@ public class SlideChooseView extends View { setOption(selectedIndex); } } + if (callback != null) { + callback.onTouchEnd(); + } startMoving = false; moving = false; } @@ -162,21 +176,37 @@ public class SlideChooseView extends View { for (int a = 0; a < optionsStr.length; a++) { int cx = sideSide + (lineSize + gapSize * 2 + circleSize) * a + circleSize / 2; if (a <= selectedIndex) { - paint.setColor(Theme.getColor(Theme.key_switchTrackChecked)); + int color = Theme.getColor(Theme.key_switchTrackChecked); + paint.setColor(color); + linePaint.setColor(color); } else { - paint.setColor(Theme.getColor(Theme.key_switchTrack)); + int color = Theme.getColor(Theme.key_switchTrack); + paint.setColor(color); + linePaint.setColor(color); } canvas.drawCircle(cx, cy, a == selectedIndex ? AndroidUtilities.dp(6) : circleSize / 2, paint); if (a != 0) { int x = cx - circleSize / 2 - gapSize - lineSize; int width = lineSize; - if (a == selectedIndex || a == selectedIndex + 1) { - width -= AndroidUtilities.dp(3); - } - if (a == selectedIndex + 1) { + if (dashedFrom != -1 && a - 1 >= dashedFrom) { x += AndroidUtilities.dp(3); + width -= AndroidUtilities.dp(3); + int dash = width / AndroidUtilities.dp(13); + if (lastDash != dash) { + float gap = (width - dash * AndroidUtilities.dp(8)) / (float) (dash - 1); + linePaint.setPathEffect(new DashPathEffect(new float[]{AndroidUtilities.dp(6), gap}, 0)); + lastDash = dash; + } + canvas.drawLine(x + AndroidUtilities.dp(1), cy, x + width - AndroidUtilities.dp(1), cy, linePaint); + } else { + if (a == selectedIndex || a == selectedIndex + 1) { + width -= AndroidUtilities.dp(3); + } + if (a == selectedIndex + 1) { + x += AndroidUtilities.dp(3); + } + canvas.drawRect(x, cy - AndroidUtilities.dp(1), x + width, cy + AndroidUtilities.dp(1), paint); } - canvas.drawRect(x, cy - AndroidUtilities.dp(1), x + width, cy + AndroidUtilities.dp(1), paint); } int size = optionsSizes[a]; String text = optionsStr[a]; @@ -208,5 +238,9 @@ public class SlideChooseView extends View { public interface Callback { void onOptionSelected(int index); + + default void onTouchEnd() { + + } } } \ No newline at end of file diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/StickerSetBulletinLayout.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/StickerSetBulletinLayout.java index cdfc41e7d..8b31d6e1d 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/StickerSetBulletinLayout.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/StickerSetBulletinLayout.java @@ -22,14 +22,21 @@ public class StickerSetBulletinLayout extends Bulletin.TwoLineLayout { public static final int TYPE_REMOVED = 0; public static final int TYPE_ARCHIVED = 1; public static final int TYPE_ADDED = 2; + public static final int TYPE_REMOVED_FROM_RECENT = 3; + public static final int TYPE_REMOVED_FROM_FAVORITES = 4; + public static final int TYPE_ADDED_TO_FAVORITES = 5; @IntDef(value = {TYPE_REMOVED, TYPE_ARCHIVED, TYPE_ADDED}) - public @interface Type {} + public @interface Type { + } public StickerSetBulletinLayout(@NonNull Context context, TLObject setObject, @Type int type) { + this(context, setObject, type, null); + } + + public StickerSetBulletinLayout(@NonNull Context context, TLObject setObject, @Type int type, TLRPC.Document sticker) { super(context); - final TLRPC.Document sticker; final TLRPC.StickerSet stickerSet; if (setObject instanceof TLRPC.TL_messages_stickerSet) { @@ -52,11 +59,15 @@ public class StickerSetBulletinLayout extends Bulletin.TwoLineLayout { sticker = null; } } else { + stickerSet = null; + } + + if (sticker == null) { throw new IllegalArgumentException("Invalid type of the given setObject: " + setObject.getClass()); } if (sticker != null) { - TLObject object = FileLoader.getClosestPhotoSizeWithSize(stickerSet.thumbs, 90); + TLObject object = stickerSet == null ? null : FileLoader.getClosestPhotoSizeWithSize(stickerSet.thumbs, 90); if (object == null) { object = sticker; } @@ -109,6 +120,18 @@ public class StickerSetBulletinLayout extends Bulletin.TwoLineLayout { subtitleTextView.setText(LocaleController.formatString("StickersArchivedInfo", R.string.StickersArchivedInfo, stickerSet.title)); } break; + case TYPE_REMOVED_FROM_FAVORITES: + titleTextView.setText(LocaleController.getString("RemovedFromFavorites", R.string.RemovedFromFavorites)); + subtitleTextView.setVisibility(ViewPagerFixed.GONE); + break; + case TYPE_ADDED_TO_FAVORITES: + titleTextView.setText(LocaleController.getString("AddedToFavorites", R.string.AddedToFavorites)); + subtitleTextView.setVisibility(ViewPagerFixed.GONE); + break; + case TYPE_REMOVED_FROM_RECENT: + titleTextView.setText(LocaleController.getString("RemovedFromRecent", R.string.RemovedFromRecent)); + subtitleTextView.setVisibility(ViewPagerFixed.GONE); + break; } } } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/TrendingStickersLayout.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/TrendingStickersLayout.java index fe40d4b90..60ecef8eb 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/TrendingStickersLayout.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/TrendingStickersLayout.java @@ -711,6 +711,7 @@ public class TrendingStickersLayout extends FrameLayout implements NotificationC } } + @SuppressWarnings("unchecked") @Override public void onBindViewHolder(@NonNull RecyclerView.ViewHolder holder, int position, @NonNull List payloads) { if (payloads.contains(PAYLOAD_ANIMATED)) { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/UndoView.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/UndoView.java index 4705566b2..8f123360b 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/UndoView.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/UndoView.java @@ -49,7 +49,6 @@ import org.telegram.ui.ActionBar.Theme; import org.telegram.ui.LaunchActivity; import tw.nekomimi.nekogram.NekoConfig; -import tw.nekomimi.nekogram.utils.UIUtil; @SuppressWarnings("FieldCanBeLocal") public class UndoView extends FrameLayout { @@ -130,10 +129,21 @@ public class UndoView extends FrameLayout { public final static int ACTION_PLAYBACK_SPEED_ENABLED = 50; public final static int ACTION_PLAYBACK_SPEED_DISABLED = 51; - public final static int ACTION_TEXT_COPIED = 52; + public final static int ACTION_MESSAGE_COPIED = 52; public final static int ACTION_FWD_MESSAGES = 53; public final static int ACTION_NOTIFY_ON = 54; public final static int ACTION_NOTIFY_OFF = 55; + public final static int ACTION_USERNAME_COPIED = 56; + public final static int ACTION_HASHTAG_COPIED = 57; + public final static int ACTION_TEXT_COPIED = 58; + public final static int ACTION_LINK_COPIED = 59; + public static final int ACTION_PHONE_COPIED = 60; + + public final static int ACTION_AUTO_DELETE_ON = 70; + public final static int ACTION_AUTO_DELETE_OFF = 71; + public final static int ACTION_REPORT_SENT = 74; + public final static int ACTION_GIGAGROUP_CANCEL = 75; + public final static int ACTION_GIGAGROUP_SUCCESS = 76; public final static int ACTION_NEED_RESATRT = 100; @@ -266,17 +276,18 @@ public class UndoView extends FrameLayout { currentAction == ACTION_OWNER_TRANSFERED_GROUP || currentAction == ACTION_QUIZ_CORRECT || currentAction == ACTION_QUIZ_INCORRECT || currentAction == ACTION_CACHE_WAS_CLEARED || currentAction == ACTION_ADDED_TO_FOLDER || currentAction == ACTION_REMOVED_FROM_FOLDER || currentAction == ACTION_PROFILE_PHOTO_CHANGED || currentAction == ACTION_CHAT_UNARCHIVED || currentAction == ACTION_VOIP_MUTED || currentAction == ACTION_VOIP_UNMUTED || currentAction == ACTION_VOIP_REMOVED || - currentAction == ACTION_VOIP_LINK_COPIED || currentAction == ACTION_VOIP_INVITED || currentAction == ACTION_VOIP_MUTED_FOR_YOU || currentAction == ACTION_VOIP_UNMUTED_FOR_YOU; + currentAction == ACTION_VOIP_LINK_COPIED || currentAction == ACTION_VOIP_INVITED || currentAction == ACTION_VOIP_MUTED_FOR_YOU || currentAction == ACTION_VOIP_UNMUTED_FOR_YOU || + currentAction == ACTION_REPORT_SENT; } private boolean hasSubInfo() { return currentAction == ACTION_QR_SESSION_ACCEPTED || currentAction == ACTION_PROXIMITY_SET || currentAction == ACTION_ARCHIVE_HIDDEN || currentAction == ACTION_ARCHIVE_HINT || currentAction == ACTION_ARCHIVE_FEW_HINT || currentAction == ACTION_QUIZ_CORRECT || currentAction == ACTION_QUIZ_INCORRECT || - currentAction == ACTION_ARCHIVE_PINNED && MessagesController.getInstance(currentAccount).dialogFilters.isEmpty(); + currentAction == ACTION_REPORT_SENT || currentAction == ACTION_ARCHIVE_PINNED && MessagesController.getInstance(currentAccount).dialogFilters.isEmpty(); } public boolean isMultilineSubInfo() { - return currentAction == ACTION_THEME_CHANGED || currentAction == ACTION_FILTERS_AVAILABLE || currentAction == ACTION_PROXIMITY_SET; + return currentAction == ACTION_THEME_CHANGED || currentAction == ACTION_FILTERS_AVAILABLE || currentAction == ACTION_PROXIMITY_SET || currentAction == ACTION_REPORT_SENT; } public void setAdditionalTranslationY(float value) { @@ -382,6 +393,7 @@ public class UndoView extends FrameLayout { infoTextView.setGravity(Gravity.LEFT | Gravity.TOP); FrameLayout.LayoutParams layoutParams = (FrameLayout.LayoutParams) infoTextView.getLayoutParams(); layoutParams.height = LayoutHelper.WRAP_CONTENT; + layoutParams.topMargin = AndroidUtilities.dp(13); layoutParams.bottomMargin = 0; leftImageView.setScaleType(ImageView.ScaleType.CENTER); @@ -422,7 +434,14 @@ public class UndoView extends FrameLayout { int icon; int size = 36; boolean iconIsDrawable = false; - if (action == ACTION_VOIP_INVITED) { + + if (action == ACTION_REPORT_SENT) { + subinfoTextView.setSingleLine(false); + infoText = LocaleController.getString("ReportChatSent", R.string.ReportChatSent); + subInfoText = LocaleController.formatString("ReportSentInfo", R.string.ReportSentInfo); + icon = R.raw.ic_admin; + timeLeft = 4000; + } else if (action == ACTION_VOIP_INVITED) { TLRPC.User user = (TLRPC.User) infoObject; infoText = AndroidUtilities.replaceTags(LocaleController.formatString("VoipGroupInvitedUser", R.string.VoipGroupInvitedUser, UserObject.getFirstName(user))); subInfoText = null; @@ -621,31 +640,71 @@ public class UndoView extends FrameLayout { undoButton.setVisibility(GONE); } else if (currentAction == ACTION_IMPORT_NOT_MUTUAL || currentAction == ACTION_IMPORT_GROUP_NOT_ADMIN || currentAction == ACTION_IMPORT_INFO || - currentAction == ACTION_PLAYBACK_SPEED_DISABLED || currentAction == ACTION_PLAYBACK_SPEED_ENABLED || currentAction == ACTION_TEXT_COPIED || - currentAction == ACTION_FWD_MESSAGES || currentAction == ACTION_NOTIFY_ON || currentAction == ACTION_NOTIFY_OFF) { + currentAction == ACTION_PLAYBACK_SPEED_DISABLED || currentAction == ACTION_PLAYBACK_SPEED_ENABLED || currentAction == ACTION_MESSAGE_COPIED || + currentAction == ACTION_FWD_MESSAGES || currentAction == ACTION_NOTIFY_ON || currentAction == ACTION_NOTIFY_OFF || currentAction == ACTION_USERNAME_COPIED || + currentAction == ACTION_HASHTAG_COPIED || currentAction == ACTION_TEXT_COPIED || currentAction == ACTION_LINK_COPIED || currentAction == ACTION_PHONE_COPIED || + currentAction == ACTION_AUTO_DELETE_OFF || currentAction == ACTION_AUTO_DELETE_ON || currentAction == ACTION_GIGAGROUP_CANCEL || currentAction == ACTION_GIGAGROUP_SUCCESS) { undoImageView.setVisibility(GONE); leftImageView.setVisibility(VISIBLE); infoTextView.setTypeface(Typeface.DEFAULT); - if (currentAction == ACTION_IMPORT_NOT_MUTUAL) { + if (currentAction == ACTION_GIGAGROUP_SUCCESS) { + infoTextView.setText(LocaleController.getString("BroadcastGroupConvertSuccess", R.string.BroadcastGroupConvertSuccess)); + leftImageView.setAnimation(R.raw.gigagroup_convert, 36, 36); + infoOnly = true; + layoutParams.topMargin = AndroidUtilities.dp(9); + infoTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); + } else if (currentAction == ACTION_GIGAGROUP_CANCEL) { + infoTextView.setText(LocaleController.getString("GigagroupConvertCancelHint", R.string.GigagroupConvertCancelHint)); + leftImageView.setAnimation(R.raw.chats_infotip, 36, 36); + infoOnly = true; + layoutParams.topMargin = AndroidUtilities.dp(9); + infoTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); + } else if (action == ACTION_AUTO_DELETE_ON) { + TLRPC.User user = (TLRPC.User) infoObject; + int ttl = (Integer) infoObject2; + String time; + subinfoTextView.setSingleLine(false); + if (ttl > 24 * 60 * 60) { + time = LocaleController.formatPluralString("Days", ttl / (24 * 60 * 60)); + } else if (ttl >= 60 * 60) { + time = LocaleController.formatPluralString("Hours", ttl / (60 * 60)); + } else if (ttl >= 60) { + time = LocaleController.formatPluralString("Minutes", ttl / 60); + } else { + time = LocaleController.formatPluralString("Seconds", ttl); + } + infoTextView.setText(LocaleController.formatString("AutoDeleteHintOnText", R.string.AutoDeleteHintOnText, time)); + leftImageView.setAnimation(R.raw.fire_on, 36, 36); + layoutParams.topMargin = AndroidUtilities.dp(9); + timeLeft = 4000; + infoOnly = true; + leftImageView.setPadding(0, 0, 0, AndroidUtilities.dp(3)); + } else if (currentAction == ACTION_AUTO_DELETE_OFF) { + infoTextView.setText(LocaleController.getString("AutoDeleteHintOffText", R.string.AutoDeleteHintOffText)); + leftImageView.setAnimation(R.raw.fire_off, 36, 36); + infoTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); + timeLeft = 3000; + leftImageView.setPadding(0, 0, 0, AndroidUtilities.dp(4)); + } else if (currentAction == ACTION_IMPORT_NOT_MUTUAL) { infoTextView.setText(LocaleController.getString("ImportMutualError", R.string.ImportMutualError)); leftImageView.setAnimation(R.raw.error, 36, 36); infoOnly = true; - layoutParams.topMargin = AndroidUtilities.dp(10); + layoutParams.topMargin = AndroidUtilities.dp(9); infoTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); } else if (currentAction == ACTION_IMPORT_GROUP_NOT_ADMIN) { infoTextView.setText(LocaleController.getString("ImportNotAdmin", R.string.ImportNotAdmin)); leftImageView.setAnimation(R.raw.error, 36, 36); infoOnly = true; - layoutParams.topMargin = AndroidUtilities.dp(10); + layoutParams.topMargin = AndroidUtilities.dp(9); infoTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); } else if (currentAction == ACTION_IMPORT_INFO) { infoTextView.setText(LocaleController.getString("ImportedInfo", R.string.ImportedInfo)); leftImageView.setAnimation(R.raw.imported, 36, 36); leftImageView.setPadding(0, 0, 0, AndroidUtilities.dp(5)); infoOnly = true; - layoutParams.topMargin = AndroidUtilities.dp(10); + layoutParams.topMargin = AndroidUtilities.dp(9); infoTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); } else if (currentAction == ACTION_PLAYBACK_SPEED_DISABLED) { infoTextView.setText(LocaleController.getString("AudioSpeedNormal", R.string.AudioSpeedNormal)); @@ -657,9 +716,23 @@ public class UndoView extends FrameLayout { leftImageView.setAnimation(R.raw.audio_speed, 36, 36); timeLeft = 3000; infoTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 15); - } else if (currentAction == ACTION_TEXT_COPIED) { - infoTextView.setText(LocaleController.getString("MessageCopied", R.string.MessageCopied)); - leftImageView.setAnimation(R.raw.copy, 30, 30); + } else if (currentAction == ACTION_MESSAGE_COPIED || currentAction == ACTION_USERNAME_COPIED || currentAction == ACTION_HASHTAG_COPIED || currentAction == ACTION_TEXT_COPIED || currentAction == ACTION_LINK_COPIED || currentAction == ACTION_PHONE_COPIED) { + int iconRawId = R.raw.copy; + if (currentAction == ACTION_PHONE_COPIED) { + infoTextView.setText(LocaleController.getString("PhoneCopied", R.string.PhoneCopied)); + } else if (currentAction == ACTION_USERNAME_COPIED) { + infoTextView.setText(LocaleController.getString("UsernameCopied", R.string.UsernameCopied)); + } else if (currentAction == ACTION_HASHTAG_COPIED) { + infoTextView.setText(LocaleController.getString("HashtagCopied", R.string.HashtagCopied)); + } else if (currentAction == ACTION_MESSAGE_COPIED) { + infoTextView.setText(LocaleController.getString("MessageCopied", R.string.MessageCopied)); + } else if (currentAction == ACTION_LINK_COPIED) { + iconRawId = R.raw.voip_invite; + infoTextView.setText(LocaleController.getString("LinkCopied", R.string.LinkCopied)); + } else { + infoTextView.setText(LocaleController.getString("TextCopied", R.string.TextCopied)); + } + leftImageView.setAnimation(iconRawId, 30, 30); timeLeft = 3000; infoTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 15); } else if (currentAction == ACTION_NOTIFY_ON) { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/UsersAlertBase.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/UsersAlertBase.java index 787c880e5..276e3b403 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/UsersAlertBase.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/UsersAlertBase.java @@ -23,7 +23,6 @@ import android.view.Gravity; import android.view.KeyEvent; import android.view.MotionEvent; import android.view.View; -import android.view.ViewGroup; import android.view.ViewTreeObserver; import android.view.inputmethod.EditorInfo; import android.widget.FrameLayout; @@ -33,8 +32,6 @@ import androidx.annotation.NonNull; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; -import com.google.android.exoplayer2.util.Log; - import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.LocaleController; import org.telegram.messenger.R; @@ -56,7 +53,7 @@ public class UsersAlertBase extends BottomSheet { protected AnimatorSet shadowAnimation; protected StickerEmptyView emptyView; protected FlickerLoadingView flickerLoadingView; - private SearchField searchView; + protected SearchField searchView; private RectF rect = new RectF(); @@ -195,13 +192,13 @@ public class UsersAlertBase extends BottomSheet { } @SuppressWarnings("FieldCanBeLocal") - private class SearchField extends FrameLayout { + protected class SearchField extends FrameLayout { private final View searchBackground; private final ImageView searchIconImageView; private final ImageView clearSearchImageView; private final CloseProgressDrawable2 progressDrawable; - private EditTextBoldCursor searchEditText; + protected EditTextBoldCursor searchEditText; public SearchField(Context context) { super(context); @@ -311,6 +308,11 @@ public class UsersAlertBase extends BottomSheet { onSearchViewTouched(ev, searchEditText); return super.onInterceptTouchEvent(ev); } + + public void closeSearch() { + clearSearchImageView.callOnClick(); + AndroidUtilities.hideKeyboard(searchEditText); + } } protected void onSearchViewTouched(MotionEvent ev, EditTextBoldCursor searchEditText) { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/Components/WebPlayerView.java b/TMessagesProj/src/main/java/org/telegram/ui/Components/WebPlayerView.java index ebdb56588..8e3e8dadd 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/Components/WebPlayerView.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/Components/WebPlayerView.java @@ -1107,7 +1107,7 @@ public class WebPlayerView extends ViewGroup implements VideoPlayer.VideoPlayerD } try { JSONObject json = new JSONObject(playerCode).getJSONObject("file_versions").getJSONObject("mobile"); - String video = decodeUrl(json.getString("gifv")); + String video = json.getString("video"); String audio = json.getJSONArray("audio").getString(0); if (video != null && audio != null) { results[0] = video; @@ -2162,16 +2162,25 @@ public class WebPlayerView extends ViewGroup implements VideoPlayer.VideoPlayerD return false; } + public void willHandle() { + controlsView.setVisibility(INVISIBLE); + controlsView.show(false, false); + showProgress(true, false); + } + public boolean loadVideo(String url, TLRPC.Photo thumb, Object parentObject, String originalUrl, boolean autoplay) { String youtubeId = null; String vimeoId = null; - String coubId = null; + String coubId = getCoubId(url); + if (coubId == null) { + coubId = getCoubId(originalUrl); + } String twitchClipId = null; String twitchStreamId = null; String mp4File = null; String aparatId = null; seekToTime = -1; - if (url != null) { + if (coubId == null && url != null) { if (url.endsWith(".mp4")) { mp4File = url; } else { @@ -2364,6 +2373,25 @@ public class WebPlayerView extends ViewGroup implements VideoPlayer.VideoPlayerD return false; } + public String getCoubId(String url) { + if (TextUtils.isEmpty(url)) { + return null; + } + try { + Matcher matcher = coubIdRegex.matcher(url); + String id = null; + if (matcher.find()) { + id = matcher.group(1); + } + if (id != null) { + return id; + } + } catch (Exception e) { + FileLog.e(e); + } + return null; + } + public View getAspectRatioView() { return aspectRatioFrameLayout; } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ContactsActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ContactsActivity.java index 2270c37b4..33d97f1f2 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ContactsActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ContactsActivity.java @@ -52,7 +52,6 @@ import android.view.inputmethod.EditorInfo; import android.widget.EditText; import android.widget.FrameLayout; import android.widget.ImageView; -import android.widget.Toast; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; @@ -89,6 +88,7 @@ import org.telegram.ui.Cells.ProfileSearchCell; import org.telegram.ui.Cells.TextCell; import org.telegram.ui.Cells.UserCell; import org.telegram.ui.Components.AlertsCreator; +import org.telegram.ui.Components.BulletinFactory; import org.telegram.ui.Components.CombinedDrawable; import org.telegram.ui.Components.CubicBezierInterpolator; import org.telegram.ui.Components.EditTextBoldCursor; @@ -665,7 +665,7 @@ public class ContactsActivity extends BaseFragment implements NotificationCenter if (user.bot) { if (user.bot_nochats) { try { - Toast.makeText(getParentActivity(), LocaleController.getString("BotCantJoinGroups", R.string.BotCantJoinGroups), Toast.LENGTH_SHORT).show(); + BulletinFactory.of(this).createErrorBulletin(LocaleController.getString("BotCantJoinGroups", R.string.BotCantJoinGroups)).show(); } catch (Exception e) { FileLog.e(e); } @@ -1008,7 +1008,11 @@ public class ContactsActivity extends BaseFragment implements NotificationCenter return null; } RLottieImageView previousFab = dialogsActivity.getFloatingButton(); - if (previousFab == null || floatingButtonContainer == null || previousFab.getVisibility() != View.VISIBLE || Math.abs(previousFab.getTranslationY()) > AndroidUtilities.dp(4) || Math.abs(floatingButtonContainer.getTranslationY()) > AndroidUtilities.dp(4)) { + View previousFabContainer = null; + if (previousFab.getParent() != null) { + previousFabContainer = (View) previousFab.getParent(); + } + if (previousFab == null || floatingButtonContainer == null || previousFabContainer == null || previousFab.getVisibility() != View.VISIBLE || Math.abs(previousFabContainer.getTranslationY()) > AndroidUtilities.dp(4) || Math.abs(floatingButtonContainer.getTranslationY()) > AndroidUtilities.dp(4)) { return null; } previousFab.setVisibility(View.GONE); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ShortcutWidgetConfigActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ContactsWidgetConfigActivity.java similarity index 66% rename from TMessagesProj/src/main/java/org/telegram/ui/ShortcutWidgetConfigActivity.java rename to TMessagesProj/src/main/java/org/telegram/ui/ContactsWidgetConfigActivity.java index 2b328fad6..3255f777e 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ShortcutWidgetConfigActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ContactsWidgetConfigActivity.java @@ -1,17 +1,13 @@ package org.telegram.ui; -import android.app.Activity; import android.appwidget.AppWidgetManager; import android.content.Intent; -import android.content.SharedPreferences; import android.os.Bundle; import android.view.View; -import org.telegram.messenger.AccountInstance; import org.telegram.messenger.AndroidUtilities; -import org.telegram.messenger.ShortcutWidgetProvider; -public class ShortcutWidgetConfigActivity extends ExternalActionActivity { +public class ContactsWidgetConfigActivity extends ExternalActionActivity { private int creatingAppWidgetId = AppWidgetManager.INVALID_APPWIDGET_ID; @@ -29,16 +25,8 @@ public class ShortcutWidgetConfigActivity extends ExternalActionActivity { args.putBoolean("onlySelect", true); args.putInt("dialogsType", 10); args.putBoolean("allowSwitchAccount", true); - DialogsActivity fragment = new DialogsActivity(args); - fragment.setDelegate((fragment1, dids, message, param) -> { - AccountInstance.getInstance(fragment1.getCurrentAccount()).getMessagesStorage().putWidgetDialogs(creatingAppWidgetId, dids); - - SharedPreferences preferences = ShortcutWidgetConfigActivity.this.getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE); - preferences.edit().putInt("account" + creatingAppWidgetId, fragment1.getCurrentAccount()).commit(); - - AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(ShortcutWidgetConfigActivity.this); - ShortcutWidgetProvider.updateWidget(ShortcutWidgetConfigActivity.this, appWidgetManager, creatingAppWidgetId); - + EditWidgetActivity fragment = new EditWidgetActivity(EditWidgetActivity.TYPE_CONTACTS, creatingAppWidgetId, false); + fragment.setDelegate(dialogs -> { Intent resultValue = new Intent(); resultValue.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, creatingAppWidgetId); setResult(RESULT_OK, resultValue); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/DataAutoDownloadActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/DataAutoDownloadActivity.java index db0f695cd..a3c594da6 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/DataAutoDownloadActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/DataAutoDownloadActivity.java @@ -24,6 +24,10 @@ import android.widget.FrameLayout; import android.widget.LinearLayout; import android.widget.TextView; +import androidx.recyclerview.widget.DefaultItemAnimator; +import androidx.recyclerview.widget.LinearLayoutManager; +import androidx.recyclerview.widget.RecyclerView; + import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.DownloadController; import org.telegram.messenger.LocaleController; @@ -49,10 +53,6 @@ import org.telegram.ui.Components.SlideChooseView; import java.util.ArrayList; import java.util.Collections; -import androidx.recyclerview.widget.DefaultItemAnimator; -import androidx.recyclerview.widget.LinearLayoutManager; -import androidx.recyclerview.widget.RecyclerView; - public class DataAutoDownloadActivity extends BaseFragment { private ListAdapter listAdapter; @@ -887,7 +887,6 @@ public class DataAutoDownloadActivity extends BaseFragment { } else { presetsStr[i] = LocaleController.getString("AutoDownloadCustom", R.string.AutoDownloadCustom); } - } slideChooseView.setOptions(selectedPreset, presetsStr); } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/DialogsActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/DialogsActivity.java index 497432bab..3551d1d80 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/DialogsActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/DialogsActivity.java @@ -40,7 +40,6 @@ import android.os.Build; import android.os.Bundle; import android.text.TextUtils; import android.util.Property; -import android.util.SparseArray; import android.util.StateSet; import android.view.Gravity; import android.view.HapticFeedbackConstants; @@ -161,6 +160,7 @@ import org.telegram.ui.Components.SizeNotifierFrameLayout; import org.telegram.ui.Components.StickersAlert; import org.telegram.ui.Components.UndoView; import org.telegram.ui.Components.ViewPagerFixed; +import org.webrtc.RecyclerItemsEnterAnimator; import java.util.ArrayList; @@ -206,6 +206,7 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter. private FlickerLoadingView progressView; private int lastItemsCount; private DialogsItemAnimator dialogsItemAnimator; + private RecyclerItemsEnterAnimator recyclerItemsEnterAnimator; public ViewPage(Context context) { super(context); @@ -250,6 +251,8 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter. private int initialDialogsType; + private boolean checkingImportDialog; + private int messagesCount; private int hasPoll; @@ -405,7 +408,6 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter. private float filterTabsMoveFrom; private float tabsYOffset; private float scrollAdditionalOffset; - private SparseArray listAlphaItems = new SparseArray<>(); public final Property SCROLL_Y = new AnimationProperties.FloatProperty("animationValue") { @Override @@ -1148,16 +1150,7 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter. @Override protected void dispatchDraw(Canvas canvas) { - for (int i = 0; i < getChildCount(); i++) { - View child = getChildAt(i); - int position = getChildAdapterPosition(child); - Float alpha = listAlphaItems.get(position, null); - if (alpha == null) { - child.setAlpha(1f); - } else { - child.setAlpha(alpha); - } - } + parentPage.recyclerItemsEnterAnimator.dispatchDraw(); super.dispatchDraw(canvas); if (slidingView != null && pacmanAnimation != null) { pacmanAnimation.draw(canvas, slidingView.getTop() + slidingView.getMeasuredHeight() / 2); @@ -1699,22 +1692,27 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter. getNotificationCenter().addObserver(this, NotificationCenter.didClearDatabase); + loadDialogs(getAccountInstance()); + getMessagesController().loadPinnedDialogs(folderId, 0, null); + return true; + } + + public static void loadDialogs(AccountInstance accountInstance) { + int currentAccount = accountInstance.getCurrentAccount(); if (!dialogsLoaded[currentAccount]) { - MessagesController messagesController = getMessagesController(); + MessagesController messagesController = accountInstance.getMessagesController(); messagesController.loadGlobalNotificationsSettings(); - messagesController.loadDialogs(folderId, 0, 100, true); + messagesController.loadDialogs(0, 0, 100, true); messagesController.loadHintDialogs(); - messagesController.loadUserInfo(getUserConfig().getCurrentUser(), false, classGuid); - getContactsController().checkInviteText(); - getMediaDataController().loadRecents(MediaDataController.TYPE_FAVE, false, true, false); - getMediaDataController().checkFeaturedStickers(); + messagesController.loadUserInfo(accountInstance.getUserConfig().getCurrentUser(), false, 0); + accountInstance.getContactsController().checkInviteText(); + accountInstance.getMediaDataController().loadRecents(MediaDataController.TYPE_FAVE, false, true, false); + accountInstance.getMediaDataController().checkFeaturedStickers(); for (String emoji : messagesController.diceEmojies) { - getMediaDataController().loadStickersByEmojiOrName(emoji, true, true); + accountInstance.getMediaDataController().loadStickersByEmojiOrName(emoji, true, true); } dialogsLoaded[currentAccount] = true; } - getMessagesController().loadPinnedDialogs(folderId, 0, null); - return true; } @Override @@ -1768,8 +1766,10 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter. @Override public void setTranslationY(float translationY) { + if (translationY != getTranslationY()) { + fragmentView.invalidate(); + } super.setTranslationY(translationY); - fragmentView.invalidate(); } @Override @@ -1994,10 +1994,12 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter. @Override public void setTranslationY(float translationY) { - super.setTranslationY(translationY); - updateContextViewPosition(); - if (fragmentView != null) { - fragmentView.invalidate(); + if (getTranslationY() != translationY) { + super.setTranslationY(translationY); + updateContextViewPosition(); + if (fragmentView != null) { + fragmentView.invalidate(); + } } } @@ -2663,6 +2665,7 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter. } }); viewPage.swipeController = new SwipeController(viewPage); + viewPage.recyclerItemsEnterAnimator = new RecyclerItemsEnterAnimator(viewPage.listView); viewPage.itemTouchhelper = new ItemTouchHelper(viewPage.swipeController); viewPage.itemTouchhelper.attachToRecyclerView(viewPage.listView); @@ -3780,7 +3783,7 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter. if (!afterSignup) { tosAccepted = getUserConfig().unacceptedTermsOfService == null; } else { - tosAccepted = false; + tosAccepted = true; afterSignup = false; } if (tosAccepted && checkPermission && !onlySelect && Build.VERSION.SDK_INT >= 23) { @@ -4177,6 +4180,8 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter. fragmentView.requestLayout(); } + setSearchAnimationProgress(show ? 1f : 0); + viewPages[0].listView.setVerticalScrollBarEnabled(true); searchViewPager.setBackground(null); searchAnimator = null; @@ -5870,13 +5875,13 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter. viewPages[a].dialogsAdapter.notifyDataSetChanged(); int newItemCount = viewPages[a].dialogsAdapter.getItemCount(); if (newItemCount > oldItemCount && initialDialogsType != 11 && initialDialogsType != 12 && initialDialogsType != 13) { - showItemsAnimated(viewPages[a].listView, oldItemCount); + viewPages[a].recyclerItemsEnterAnimator.showItemsAnimated(oldItemCount); } } else { updateVisibleRows(MessagesController.UPDATE_MASK_NEW_MESSAGE); int newItemCount = viewPages[a].dialogsAdapter.getItemCount(); if (newItemCount > oldItemCount && initialDialogsType != 11 && initialDialogsType != 12 && initialDialogsType != 13) { - showItemsAnimated(viewPages[a].listView, oldItemCount); + viewPages[a].recyclerItemsEnterAnimator.showItemsAnimated(oldItemCount); } } try { @@ -6023,81 +6028,12 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter. searchViewPager.messagesDeleted(channelId, markAsDeletedMessages); } } else if (id == NotificationCenter.didClearDatabase) { - for (int a = 0; a < viewPages.length; a++) { - viewPages[a].dialogsAdapter.didDatabaseCleared(); - } - } - } - - private void showItemsAnimated(RecyclerListView listView, int from) { - int n = listView.getChildCount(); - View progressView = null; - for (int i = 0; i < n; i++) { - View child = listView.getChildAt(i); - if (child instanceof FlickerLoadingView) { - progressView = child; - } - } - final View finalProgressView = progressView; - if (progressView != null) { - listView.removeView(progressView); - from--; - } - int finalFrom = from; - listView.getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() { - @Override - public boolean onPreDraw() { - listView.getViewTreeObserver().removeOnPreDrawListener(this); - int n = listView.getChildCount(); - AnimatorSet animatorSet = new AnimatorSet(); - for (int i = 0; i < n; i++) { - View child = listView.getChildAt(i); - int position = listView.getChildAdapterPosition(child); - if (child != finalProgressView && position >= finalFrom - 1 && listAlphaItems.get(position, null) == null) { - listAlphaItems.put(position, 0f); - child.setAlpha(0); - int s = Math.min(listView.getMeasuredHeight(), Math.max(0, child.getTop())); - int delay = (int) ((s / (float) listView.getMeasuredHeight()) * 100); - ValueAnimator a = ValueAnimator.ofFloat(0, 1f); - a.addUpdateListener(valueAnimator -> { - Float alpha = (Float) valueAnimator.getAnimatedValue(); - listAlphaItems.put(position, alpha); - listView.invalidate(); - }); - a.addListener(new AnimatorListenerAdapter() { - @Override - public void onAnimationEnd(Animator animation) { - listAlphaItems.remove(position); - listView.invalidate(); - } - }); - a.setStartDelay(delay); - a.setDuration(200); - animatorSet.playTogether(a); - } + if (viewPages != null) { + for (int a = 0; a < viewPages.length; a++) { + viewPages[a].dialogsAdapter.didDatabaseCleared(); } - - if (finalProgressView != null && finalProgressView.getParent() == null) { - listView.addView(finalProgressView); - RecyclerView.LayoutManager layoutManager = listView.getLayoutManager(); - if (layoutManager != null) { - layoutManager.ignoreView(finalProgressView); - Animator animator = ObjectAnimator.ofFloat(finalProgressView, View.ALPHA, finalProgressView.getAlpha(), 0); - animator.addListener(new AnimatorListenerAdapter() { - @Override - public void onAnimationEnd(Animator animation) { - finalProgressView.setAlpha(1f); - layoutManager.stopIgnoringView(finalProgressView); - listView.removeView(finalProgressView); - } - }); - animator.start(); - } - } - animatorSet.start(); - return true; } - }); + } } private String showingSuggestion; @@ -6118,7 +6054,7 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter. if (showingSuggestion == null) { return; } - getMessagesController().removeSuggestion(showingSuggestion); + getMessagesController().removeSuggestion(0, showingSuggestion); showingSuggestion = null; showNextSupportedSuggestion(); } @@ -6403,28 +6339,55 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter. } } if (initialDialogsType == 11 || initialDialogsType == 12 || initialDialogsType == 13) { - int lower_part = (int) dialog_id; - TLRPC.User user = null; - TLRPC.Chat chat = null; - if (lower_part > 0) { - user = getMessagesController().getUser(lower_part); + if (checkingImportDialog) { + return; + } + int lowerId = (int) dialog_id; + TLRPC.User user; + TLRPC.Chat chat; + if (lowerId > 0) { + user = getMessagesController().getUser(lowerId); + chat = null; if (!user.mutual_contact) { getUndoView().showWithAction(dialog_id, UndoView.ACTION_IMPORT_NOT_MUTUAL, null); return; } } else { - chat = getMessagesController().getChat(-lower_part); + user = null; + chat = getMessagesController().getChat(-lowerId); if (!ChatObject.hasAdminRights(chat) || !ChatObject.canChangeChatInfo(chat)) { getUndoView().showWithAction(dialog_id, UndoView.ACTION_IMPORT_GROUP_NOT_ADMIN, null); return; } } - AlertsCreator.createImportDialogAlert(this, arguments.getString("importTitle"), user, chat, () -> { - setDialogsListFrozen(true); - ArrayList dids = new ArrayList<>(); - dids.add(dialog_id); - delegate.didSelectDialogs(DialogsActivity.this, dids, null, param); - }); + final AlertDialog progressDialog = new AlertDialog(getParentActivity(), 3); + TLRPC.TL_messages_checkHistoryImportPeer req = new TLRPC.TL_messages_checkHistoryImportPeer(); + req.peer = getMessagesController().getInputPeer(lowerId); + getConnectionsManager().sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { + try { + progressDialog.dismiss(); + } catch (Exception e) { + FileLog.e(e); + } + checkingImportDialog = false; + if (response != null) { + TLRPC.TL_messages_checkedHistoryImportPeer res = (TLRPC.TL_messages_checkedHistoryImportPeer) response; + AlertsCreator.createImportDialogAlert(this, arguments.getString("importTitle"), res.confirm_text, user, chat, () -> { + setDialogsListFrozen(true); + ArrayList dids = new ArrayList<>(); + dids.add(dialog_id); + delegate.didSelectDialogs(DialogsActivity.this, dids, null, param); + }); + } else { + AlertsCreator.processError(currentAccount, error, this, req); + getNotificationCenter().postNotificationName(NotificationCenter.historyImportProgressChanged, dialog_id, req, error); + } + })); + try { + progressDialog.showDelayed(300); + } catch (Exception ignore) { + + } } else if (useAlert && (selectAlertString != null && selectAlertStringGroup != null || addToGroupAlertString != null)) { if (getParentActivity() == null) { return; diff --git a/TMessagesProj/src/main/java/org/telegram/ui/EditWidgetActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/EditWidgetActivity.java new file mode 100644 index 000000000..b8cbefde1 --- /dev/null +++ b/TMessagesProj/src/main/java/org/telegram/ui/EditWidgetActivity.java @@ -0,0 +1,1084 @@ +/* + * This is the source code of Telegram for Android v. 7.x.x. + * It is licensed under GNU GPL v. 2 or later. + * You should have received a copy of the license in this archive (see LICENSE). + * + * Copyright Nikolai Kudashov, 2013-2021. + */ + + +package org.telegram.ui; + +import android.app.Activity; +import android.appwidget.AppWidgetManager; +import android.content.Context; +import android.content.SharedPreferences; +import android.graphics.Bitmap; +import android.graphics.BitmapFactory; +import android.graphics.BitmapShader; +import android.graphics.Canvas; +import android.graphics.Color; +import android.graphics.Paint; +import android.graphics.PorterDuff; +import android.graphics.PorterDuffColorFilter; +import android.graphics.Rect; +import android.graphics.RectF; +import android.graphics.Shader; +import android.graphics.drawable.BitmapDrawable; +import android.graphics.drawable.ColorDrawable; +import android.graphics.drawable.Drawable; +import android.graphics.drawable.GradientDrawable; +import android.os.Build; +import android.text.SpannableStringBuilder; +import android.text.Spanned; +import android.view.Gravity; +import android.view.MotionEvent; +import android.view.View; +import android.view.ViewGroup; +import android.widget.FrameLayout; +import android.widget.ImageView; +import android.widget.LinearLayout; +import android.widget.TextView; + +import androidx.recyclerview.widget.DefaultItemAnimator; +import androidx.recyclerview.widget.ItemTouchHelper; +import androidx.recyclerview.widget.LinearLayoutManager; +import androidx.recyclerview.widget.RecyclerView; + +import org.telegram.messenger.AccountInstance; +import org.telegram.messenger.AndroidUtilities; +import org.telegram.messenger.ChatObject; +import org.telegram.messenger.ChatsWidgetProvider; +import org.telegram.messenger.ContactsController; +import org.telegram.messenger.ContactsWidgetProvider; +import org.telegram.messenger.FileLoader; +import org.telegram.messenger.FileLog; +import org.telegram.messenger.LocaleController; +import org.telegram.messenger.MessageObject; +import org.telegram.messenger.R; +import org.telegram.messenger.SharedConfig; +import org.telegram.messenger.UserObject; +import org.telegram.tgnet.TLRPC; +import org.telegram.ui.ActionBar.ActionBar; +import org.telegram.ui.ActionBar.ActionBarMenu; +import org.telegram.ui.ActionBar.AlertDialog; +import org.telegram.ui.ActionBar.BaseFragment; +import org.telegram.ui.ActionBar.Theme; +import org.telegram.ui.ActionBar.ThemeDescription; +import org.telegram.ui.Cells.ChatActionCell; +import org.telegram.ui.Cells.GroupCreateUserCell; +import org.telegram.ui.Cells.TextCell; +import org.telegram.ui.Cells.TextInfoPrivacyCell; +import org.telegram.ui.Components.AvatarDrawable; +import org.telegram.ui.Components.BackgroundGradientDrawable; +import org.telegram.ui.Components.CombinedDrawable; +import org.telegram.ui.Components.ForegroundColorSpanThemable; +import org.telegram.ui.Components.InviteMembersBottomSheet; +import org.telegram.ui.Components.LayoutHelper; +import org.telegram.ui.Components.RecyclerListView; + +import java.io.File; +import java.util.ArrayList; + +public class EditWidgetActivity extends BaseFragment { + + private ListAdapter listAdapter; + private RecyclerListView listView; + private ItemTouchHelper itemTouchHelper; + private FrameLayout widgetPreview; + + private ImageView previewImageView; + + private ArrayList selectedDialogs = new ArrayList<>(); + + private WidgetPreviewCell widgetPreviewCell; + + private int previewRow; + private int selectChatsRow; + private int chatsStartRow; + private int chatsEndRow; + private int infoRow; + private int rowCount; + + private int widgetType; + private int currentWidgetId; + private boolean isEdit; + + private EditWidgetActivityDelegate delegate; + + public final static int TYPE_CHATS = 0; + public final static int TYPE_CONTACTS = 1; + + private final static int done_item = 1; + + public interface EditWidgetActivityDelegate { + void didSelectDialogs(ArrayList dialogs); + } + + public class TouchHelperCallback extends ItemTouchHelper.Callback { + + private boolean moved; + + @Override + public boolean isLongPressDragEnabled() { + return false; + } + + @Override + public int getMovementFlags(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder) { + if (viewHolder.getItemViewType() != 3) { + return makeMovementFlags(0, 0); + } + return makeMovementFlags(ItemTouchHelper.UP | ItemTouchHelper.DOWN, 0); + } + + @Override + public boolean onMove(RecyclerView recyclerView, RecyclerView.ViewHolder source, RecyclerView.ViewHolder target) { + if (source.getItemViewType() != target.getItemViewType()) { + return false; + } + int p1 = source.getAdapterPosition(); + int p2 = target.getAdapterPosition(); + if (listAdapter.swapElements(p1, p2)) { + ((GroupCreateUserCell) source.itemView).setDrawDivider(p2 != chatsEndRow - 1); + ((GroupCreateUserCell) target.itemView).setDrawDivider(p1 != chatsEndRow - 1); + moved = true; + } + return true; + } + + @Override + public void onChildDraw(Canvas c, RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder, float dX, float dY, int actionState, boolean isCurrentlyActive) { + super.onChildDraw(c, recyclerView, viewHolder, dX, dY, actionState, isCurrentlyActive); + } + + @Override + public void onSelectedChanged(RecyclerView.ViewHolder viewHolder, int actionState) { + if (actionState != ItemTouchHelper.ACTION_STATE_IDLE) { + listView.cancelClickRunnables(false); + viewHolder.itemView.setPressed(true); + } else if (moved) { + if (widgetPreviewCell != null) { + widgetPreviewCell.updateDialogs(); + } + moved = false; + } + super.onSelectedChanged(viewHolder, actionState); + } + + @Override + public void onSwiped(RecyclerView.ViewHolder viewHolder, int direction) { + + } + + @Override + public void clearView(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder) { + super.clearView(recyclerView, viewHolder); + viewHolder.itemView.setPressed(false); + } + } + + public class WidgetPreviewCell extends FrameLayout { + + private BackgroundGradientDrawable.Disposable backgroundGradientDisposable; + private BackgroundGradientDrawable.Disposable oldBackgroundGradientDisposable; + + private Drawable backgroundDrawable; + private Drawable oldBackgroundDrawable; + private Drawable shadowDrawable; + + private Paint roundPaint = new Paint(Paint.ANTI_ALIAS_FLAG); + private RectF bitmapRect = new RectF(); + private ViewGroup[] cells = new ViewGroup[2]; + + public WidgetPreviewCell(Context context) { + super(context); + + setWillNotDraw(false); + setPadding(0, AndroidUtilities.dp(24), 0, AndroidUtilities.dp(24)); + + LinearLayout linearLayout = new LinearLayout(context); + linearLayout.setOrientation(LinearLayout.VERTICAL); + addView(linearLayout, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER)); + + ChatActionCell chatActionCell = new ChatActionCell(context); + chatActionCell.setCustomText(LocaleController.getString("WidgetPreview", R.string.WidgetPreview)); + linearLayout.addView(chatActionCell, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER, 0, 0, 0, 4)); + + LinearLayout widgetPreview = new LinearLayout(context); + widgetPreview.setOrientation(LinearLayout.VERTICAL); + widgetPreview.setBackgroundResource(R.drawable.widget_bg); + linearLayout.addView(widgetPreview, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER, 10, 0, 10, 0)); + + previewImageView = new ImageView(context); + + if (widgetType == TYPE_CHATS) { + for (int a = 0; a < 2; a++) { + cells[a] = (ViewGroup) getParentActivity().getLayoutInflater().inflate(R.layout.shortcut_widget_item, null); + widgetPreview.addView(cells[a], LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT)); + } + widgetPreview.addView(previewImageView, LayoutHelper.createLinear(218, 160, Gravity.CENTER)); + previewImageView.setImageResource(R.drawable.chats_widget_preview); + } else if (widgetType == TYPE_CONTACTS) { + for (int a = 0; a < 2; a++) { + cells[a] = (ViewGroup) getParentActivity().getLayoutInflater().inflate(R.layout.contacts_widget_item, null); + widgetPreview.addView(cells[a], LayoutHelper.createLinear(160, LayoutHelper.WRAP_CONTENT)); + } + widgetPreview.addView(previewImageView, LayoutHelper.createLinear(160, 160, Gravity.CENTER)); + previewImageView.setImageResource(R.drawable.contacts_widget_preview); + } + updateDialogs(); + + shadowDrawable = Theme.getThemedDrawable(context, R.drawable.greydivider_bottom, Theme.key_windowBackgroundGrayShadow); + } + + public void updateDialogs() { + if (widgetType == TYPE_CHATS) { + for (int a = 0; a < 2; a++) { + TLRPC.Dialog dialog; + if (selectedDialogs.isEmpty()) { + dialog = a < getMessagesController().dialogsServerOnly.size() ? getMessagesController().dialogsServerOnly.get(a) : null; + } else { + if (a < selectedDialogs.size()) { + dialog = getMessagesController().dialogs_dict.get(selectedDialogs.get(a)); + if (dialog == null) { + dialog = new TLRPC.TL_dialog(); + dialog.id = selectedDialogs.get(a); + } + } else { + dialog = null; + } + } + if (dialog == null) { + cells[a].setVisibility(GONE); + continue; + } + cells[a].setVisibility(VISIBLE); + String name = ""; + + TLRPC.FileLocation photoPath = null; + TLRPC.User user = null; + TLRPC.Chat chat = null; + int lowerId = (int) dialog.id; + if (lowerId > 0) { + user = getMessagesController().getUser(lowerId); + if (user != null) { + if (UserObject.isUserSelf(user)) { + name = LocaleController.getString("SavedMessages", R.string.SavedMessages); + } else if (UserObject.isReplyUser(user)) { + name = LocaleController.getString("RepliesTitle", R.string.RepliesTitle); + } else if (UserObject.isDeleted(user)) { + name = LocaleController.getString("HiddenName", R.string.HiddenName); + } else { + name = ContactsController.formatName(user.first_name, user.last_name); + } + if (!UserObject.isReplyUser(user) && !UserObject.isUserSelf(user) && user != null && user.photo != null && user.photo.photo_small != null && user.photo.photo_small.volume_id != 0 && user.photo.photo_small.local_id != 0) { + photoPath = user.photo.photo_small; + } + } + } else { + chat = getMessagesController().getChat(-lowerId); + if (chat != null) { + name = chat.title; + if (chat.photo != null && chat.photo.photo_small != null && chat.photo.photo_small.volume_id != 0 && chat.photo.photo_small.local_id != 0) { + photoPath = chat.photo.photo_small; + } + } + } + ((TextView) cells[a].findViewById(R.id.shortcut_widget_item_text)).setText(name); + + try { + Bitmap bitmap = null; + if (photoPath != null) { + File path = FileLoader.getPathToAttach(photoPath, true); + bitmap = BitmapFactory.decodeFile(path.toString()); + } + + int size = AndroidUtilities.dp(48); + Bitmap result = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888); + result.eraseColor(Color.TRANSPARENT); + Canvas canvas = new Canvas(result); + if (bitmap == null) { + AvatarDrawable avatarDrawable; + if (user != null) { + avatarDrawable = new AvatarDrawable(user); + if (UserObject.isReplyUser(user)) { + avatarDrawable.setAvatarType(AvatarDrawable.AVATAR_TYPE_REPLIES); + } else if (UserObject.isUserSelf(user)) { + avatarDrawable.setAvatarType(AvatarDrawable.AVATAR_TYPE_SAVED); + } + } else { + avatarDrawable = new AvatarDrawable(chat); + } + avatarDrawable.setBounds(0, 0, size, size); + avatarDrawable.draw(canvas); + } else { + BitmapShader shader = new BitmapShader(bitmap, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP); + if (roundPaint == null) { + roundPaint = new Paint(Paint.ANTI_ALIAS_FLAG); + bitmapRect = new RectF(); + } + float scale = size / (float) bitmap.getWidth(); + canvas.save(); + canvas.scale(scale, scale); + roundPaint.setShader(shader); + bitmapRect.set(0, 0, bitmap.getWidth(), bitmap.getHeight()); + canvas.drawRoundRect(bitmapRect, bitmap.getWidth(), bitmap.getHeight(), roundPaint); + canvas.restore(); + } + canvas.setBitmap(null); + ((ImageView) cells[a].findViewById(R.id.shortcut_widget_item_avatar)).setImageBitmap(result); + } catch (Throwable e) { + FileLog.e(e); + } + + MessageObject message = getMessagesController().dialogMessage.get(dialog.id); + if (message != null) { + TLRPC.User fromUser = null; + TLRPC.Chat fromChat = null; + int fromId = message.getFromChatId(); + if (fromId > 0) { + fromUser = getMessagesController().getUser(fromId); + } else { + fromChat = getMessagesController().getChat(-fromId); + } + CharSequence messageString; + CharSequence messageNameString; + int textColor = getContext().getResources().getColor(R.color.widget_text); + if (message.messageOwner instanceof TLRPC.TL_messageService) { + if (ChatObject.isChannel(chat) && (message.messageOwner.action instanceof TLRPC.TL_messageActionHistoryClear || + message.messageOwner.action instanceof TLRPC.TL_messageActionChannelMigrateFrom)) { + messageString = ""; + } else { + messageString = message.messageText; + } + textColor = getContext().getResources().getColor(R.color.widget_action_text); + } else { + boolean needEmoji = true; + if (chat != null && chat.id > 0 && fromChat == null && (!ChatObject.isChannel(chat) || ChatObject.isMegagroup(chat))) { + if (message.isOutOwner()) { + messageNameString = LocaleController.getString("FromYou", R.string.FromYou); + } else if (fromUser != null) { + messageNameString = UserObject.getFirstName(fromUser).replace("\n", ""); + } else { + messageNameString = "DELETED"; + } + SpannableStringBuilder stringBuilder; + String messageFormat = "%2$s: \u2068%1$s\u2069"; + if (message.caption != null) { + String mess = message.caption.toString(); + if (mess.length() > 150) { + mess = mess.substring(0, 150); + } + String emoji; + if (message.isVideo()) { + emoji = "\uD83D\uDCF9 "; + } else if (message.isVoice()) { + emoji = "\uD83C\uDFA4 "; + } else if (message.isMusic()) { + emoji = "\uD83C\uDFA7 "; + } else if (message.isPhoto()) { + emoji = "\uD83D\uDDBC "; + } else { + emoji = "\uD83D\uDCCE "; + } + stringBuilder = SpannableStringBuilder.valueOf(String.format(messageFormat, emoji + mess.replace('\n', ' '), messageNameString)); + } else if (message.messageOwner.media != null && !message.isMediaEmpty()) { + textColor = getContext().getResources().getColor(R.color.widget_action_text); + String innerMessage; + if (message.messageOwner.media instanceof TLRPC.TL_messageMediaPoll) { + TLRPC.TL_messageMediaPoll mediaPoll = (TLRPC.TL_messageMediaPoll) message.messageOwner.media; + if (Build.VERSION.SDK_INT >= 18) { + innerMessage = String.format("\uD83D\uDCCA \u2068%s\u2069", mediaPoll.poll.question); + } else { + innerMessage = String.format("\uD83D\uDCCA %s", mediaPoll.poll.question); + } + } else if (message.messageOwner.media instanceof TLRPC.TL_messageMediaGame) { + if (Build.VERSION.SDK_INT >= 18) { + innerMessage = String.format("\uD83C\uDFAE \u2068%s\u2069", message.messageOwner.media.game.title); + } else { + innerMessage = String.format("\uD83C\uDFAE %s", message.messageOwner.media.game.title); + } + } else if (message.type == 14) { + if (Build.VERSION.SDK_INT >= 18) { + innerMessage = String.format("\uD83C\uDFA7 \u2068%s - %s\u2069", message.getMusicAuthor(), message.getMusicTitle()); + } else { + innerMessage = String.format("\uD83C\uDFA7 %s - %s", message.getMusicAuthor(), message.getMusicTitle()); + } + } else { + innerMessage = message.messageText.toString(); + } + innerMessage = innerMessage.replace('\n', ' '); + stringBuilder = SpannableStringBuilder.valueOf(String.format(messageFormat, innerMessage, messageNameString)); + try { + stringBuilder.setSpan(new ForegroundColorSpanThemable(Theme.key_chats_attachMessage), messageNameString.length() + 2, stringBuilder.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); + } catch (Exception e) { + FileLog.e(e); + } + } else if (message.messageOwner.message != null) { + String mess = message.messageOwner.message; + if (mess.length() > 150) { + mess = mess.substring(0, 150); + } + mess = mess.replace('\n', ' ').trim(); + stringBuilder = SpannableStringBuilder.valueOf(String.format(messageFormat, mess, messageNameString)); + } else { + stringBuilder = SpannableStringBuilder.valueOf(""); + } + try { + stringBuilder.setSpan(new ForegroundColorSpanThemable(Theme.key_chats_nameMessage), 0, messageNameString.length() + 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); + } catch (Exception e) { + FileLog.e(e); + } + messageString = stringBuilder; + } else { + if (message.messageOwner.media instanceof TLRPC.TL_messageMediaPhoto && message.messageOwner.media.photo instanceof TLRPC.TL_photoEmpty && message.messageOwner.media.ttl_seconds != 0) { + messageString = LocaleController.getString("AttachPhotoExpired", R.string.AttachPhotoExpired); + } else if (message.messageOwner.media instanceof TLRPC.TL_messageMediaDocument && message.messageOwner.media.document instanceof TLRPC.TL_documentEmpty && message.messageOwner.media.ttl_seconds != 0) { + messageString = LocaleController.getString("AttachVideoExpired", R.string.AttachVideoExpired); + } else if (message.caption != null) { + String emoji; + if (message.isVideo()) { + emoji = "\uD83D\uDCF9 "; + } else if (message.isVoice()) { + emoji = "\uD83C\uDFA4 "; + } else if (message.isMusic()) { + emoji = "\uD83C\uDFA7 "; + } else if (message.isPhoto()) { + emoji = "\uD83D\uDDBC "; + } else { + emoji = "\uD83D\uDCCE "; + } + messageString = emoji + message.caption; + } else { + if (message.messageOwner.media instanceof TLRPC.TL_messageMediaPoll) { + TLRPC.TL_messageMediaPoll mediaPoll = (TLRPC.TL_messageMediaPoll) message.messageOwner.media; + messageString = "\uD83D\uDCCA " + mediaPoll.poll.question; + } else if (message.messageOwner.media instanceof TLRPC.TL_messageMediaGame) { + messageString = "\uD83C\uDFAE " + message.messageOwner.media.game.title; + } else if (message.type == 14) { + messageString = String.format("\uD83C\uDFA7 %s - %s", message.getMusicAuthor(), message.getMusicTitle()); + } else { + messageString = message.messageText; + AndroidUtilities.highlightText(messageString, message.highlightedWords); + } + if (message.messageOwner.media != null && !message.isMediaEmpty()) { + textColor = getContext().getResources().getColor(R.color.widget_action_text); + } + } + } + } + + ((TextView) cells[a].findViewById(R.id.shortcut_widget_item_time)).setText(LocaleController.stringForMessageListDate(message.messageOwner.date)); + ((TextView) cells[a].findViewById(R.id.shortcut_widget_item_message)).setText(messageString.toString()); + ((TextView) cells[a].findViewById(R.id.shortcut_widget_item_message)).setTextColor(textColor); + } else { + if (dialog != null && dialog.last_message_date != 0) { + ((TextView) cells[a].findViewById(R.id.shortcut_widget_item_time)).setText(LocaleController.stringForMessageListDate(dialog.last_message_date)); + } else { + ((TextView) cells[a].findViewById(R.id.shortcut_widget_item_time)).setText(""); + } + ((TextView) cells[a].findViewById(R.id.shortcut_widget_item_message)).setText(""); + } + if (dialog != null && dialog.unread_count > 0) { + ((TextView) cells[a].findViewById(R.id.shortcut_widget_item_badge)).setText(String.format("%d", dialog.unread_count)); + cells[a].findViewById(R.id.shortcut_widget_item_badge).setVisibility(VISIBLE); + if (getMessagesController().isDialogMuted(dialog.id)) { + cells[a].findViewById(R.id.shortcut_widget_item_badge).setBackgroundResource(R.drawable.widget_counter_muted); + } else { + cells[a].findViewById(R.id.shortcut_widget_item_badge).setBackgroundResource(R.drawable.widget_counter); + } + } else { + cells[a].findViewById(R.id.shortcut_widget_item_badge).setVisibility(GONE); + } + } + cells[0].findViewById(R.id.shortcut_widget_item_divider).setVisibility(cells[1].getVisibility()); + cells[1].findViewById(R.id.shortcut_widget_item_divider).setVisibility(GONE); + } else if (widgetType == TYPE_CONTACTS) { + for (int position = 0; position < 2; position++) { + for (int a = 0; a < 2; a++) { + int num = position * 2 + a; + TLRPC.Dialog dialog; + if (selectedDialogs.isEmpty()) { + if (num < getMediaDataController().hints.size()) { + int userId = getMediaDataController().hints.get(num).peer.user_id; + dialog = getMessagesController().dialogs_dict.get(userId); + if (dialog == null) { + dialog = new TLRPC.TL_dialog(); + dialog.id = userId; + } + } else { + dialog = null; + } + } else { + if (num < selectedDialogs.size()) { + dialog = getMessagesController().dialogs_dict.get(selectedDialogs.get(num)); + if (dialog == null) { + dialog = new TLRPC.TL_dialog(); + dialog.id = selectedDialogs.get(num); + } + } else { + dialog = null; + } + } + if (dialog == null) { + cells[position].findViewById(a == 0 ? R.id.contacts_widget_item1 : R.id.contacts_widget_item2).setVisibility(INVISIBLE); + if (num == 0 || num == 2) { + cells[position].setVisibility(GONE); + } + continue; + } + cells[position].findViewById(a == 0 ? R.id.contacts_widget_item1 : R.id.contacts_widget_item2).setVisibility(VISIBLE); + if (num == 0 || num == 2) { + cells[position].setVisibility(VISIBLE); + } + + String name; + + int lowerId = (int) dialog.id; + TLRPC.FileLocation photoPath = null; + TLRPC.User user = null; + TLRPC.Chat chat = null; + if (lowerId > 0) { + user = getMessagesController().getUser(lowerId); + if (UserObject.isUserSelf(user)) { + name = LocaleController.getString("SavedMessages", R.string.SavedMessages); + } else if (UserObject.isReplyUser(user)) { + name = LocaleController.getString("RepliesTitle", R.string.RepliesTitle); + } else if (UserObject.isDeleted(user)) { + name = LocaleController.getString("HiddenName", R.string.HiddenName); + } else { + name = UserObject.getFirstName(user); + } + if (!UserObject.isReplyUser(user) && !UserObject.isUserSelf(user) && user != null && user.photo != null && user.photo.photo_small != null && user.photo.photo_small.volume_id != 0 && user.photo.photo_small.local_id != 0) { + photoPath = user.photo.photo_small; + } + } else { + chat = getMessagesController().getChat(-lowerId); + name = chat.title; + if (chat.photo != null && chat.photo.photo_small != null && chat.photo.photo_small.volume_id != 0 && chat.photo.photo_small.local_id != 0) { + photoPath = chat.photo.photo_small; + } + } + ((TextView) cells[position].findViewById(a == 0 ? R.id.contacts_widget_item_text1 : R.id.contacts_widget_item_text2)).setText(name); + try { + Bitmap bitmap = null; + if (photoPath != null) { + File path = FileLoader.getPathToAttach(photoPath, true); + bitmap = BitmapFactory.decodeFile(path.toString()); + } + + int size = AndroidUtilities.dp(48); + Bitmap result = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888); + result.eraseColor(Color.TRANSPARENT); + Canvas canvas = new Canvas(result); + if (bitmap == null) { + AvatarDrawable avatarDrawable; + if (user != null) { + avatarDrawable = new AvatarDrawable(user); + if (UserObject.isReplyUser(user)) { + avatarDrawable.setAvatarType(AvatarDrawable.AVATAR_TYPE_REPLIES); + } else if (UserObject.isUserSelf(user)) { + avatarDrawable.setAvatarType(AvatarDrawable.AVATAR_TYPE_SAVED); + } + } else { + avatarDrawable = new AvatarDrawable(chat); + } + avatarDrawable.setBounds(0, 0, size, size); + avatarDrawable.draw(canvas); + } else { + BitmapShader shader = new BitmapShader(bitmap, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP); + float scale = size / (float) bitmap.getWidth(); + canvas.save(); + canvas.scale(scale, scale); + roundPaint.setShader(shader); + bitmapRect.set(0, 0, bitmap.getWidth(), bitmap.getHeight()); + canvas.drawRoundRect(bitmapRect, bitmap.getWidth(), bitmap.getHeight(), roundPaint); + canvas.restore(); + } + canvas.setBitmap(null); + ((ImageView) cells[position].findViewById(a == 0 ? R.id.contacts_widget_item_avatar1 : R.id.contacts_widget_item_avatar2)).setImageBitmap(result); + } catch (Throwable e) { + FileLog.e(e); + } + + if (dialog != null && dialog.unread_count > 0) { + ((TextView) cells[position].findViewById(a == 0 ? R.id.contacts_widget_item_badge1 : R.id.contacts_widget_item_badge2)).setText(String.format("%d", dialog.unread_count)); + cells[position].findViewById(a == 0 ? R.id.contacts_widget_item_badge_bg1 : R.id.contacts_widget_item_badge_bg2).setVisibility(VISIBLE); + } else { + cells[position].findViewById(a == 0 ? R.id.contacts_widget_item_badge_bg1 : R.id.contacts_widget_item_badge_bg2).setVisibility(GONE); + } + } + } + } + if (cells[0].getVisibility() == VISIBLE) { + previewImageView.setVisibility(GONE); + } else { + previewImageView.setVisibility(VISIBLE); + } + } + + @Override + protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { + super.onMeasure(MeasureSpec.makeMeasureSpec(MeasureSpec.getSize(widthMeasureSpec), MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(AndroidUtilities.dp(264), MeasureSpec.EXACTLY)); + } + + @Override + protected void onDraw(Canvas canvas) { + Drawable newDrawable = Theme.getCachedWallpaperNonBlocking(); + if (newDrawable != backgroundDrawable && newDrawable != null) { + if (Theme.isAnimatingColor()) { + oldBackgroundDrawable = backgroundDrawable; + oldBackgroundGradientDisposable = backgroundGradientDisposable; + } else if (backgroundGradientDisposable != null) { + backgroundGradientDisposable.dispose(); + backgroundGradientDisposable = null; + } + backgroundDrawable = newDrawable; + } + float themeAnimationValue = parentLayout.getThemeAnimationValue(); + for (int a = 0; a < 2; a++) { + Drawable drawable = a == 0 ? oldBackgroundDrawable : backgroundDrawable; + if (drawable == null) { + continue; + } + if (a == 1 && oldBackgroundDrawable != null && parentLayout != null) { + drawable.setAlpha((int) (255 * themeAnimationValue)); + } else { + drawable.setAlpha(255); + } + if (drawable instanceof ColorDrawable || drawable instanceof GradientDrawable) { + drawable.setBounds(0, 0, getMeasuredWidth(), getMeasuredHeight()); + if (drawable instanceof BackgroundGradientDrawable) { + final BackgroundGradientDrawable backgroundGradientDrawable = (BackgroundGradientDrawable) drawable; + backgroundGradientDisposable = backgroundGradientDrawable.drawExactBoundsSize(canvas, this); + } else { + drawable.draw(canvas); + } + } else if (drawable instanceof BitmapDrawable) { + BitmapDrawable bitmapDrawable = (BitmapDrawable) drawable; + if (bitmapDrawable.getTileModeX() == Shader.TileMode.REPEAT) { + canvas.save(); + float scale = 2.0f / AndroidUtilities.density; + canvas.scale(scale, scale); + drawable.setBounds(0, 0, (int) Math.ceil(getMeasuredWidth() / scale), (int) Math.ceil(getMeasuredHeight() / scale)); + } else { + int viewHeight = getMeasuredHeight(); + float scaleX = (float) getMeasuredWidth() / (float) drawable.getIntrinsicWidth(); + float scaleY = (float) (viewHeight) / (float) drawable.getIntrinsicHeight(); + float scale = Math.max(scaleX, scaleY); + int width = (int) Math.ceil(drawable.getIntrinsicWidth() * scale); + int height = (int) Math.ceil(drawable.getIntrinsicHeight() * scale); + int x = (getMeasuredWidth() - width) / 2; + int y = (viewHeight - height) / 2; + canvas.save(); + canvas.clipRect(0, 0, width, getMeasuredHeight()); + drawable.setBounds(x, y, x + width, y + height); + } + drawable.draw(canvas); + canvas.restore(); + } + if (a == 0 && oldBackgroundDrawable != null && themeAnimationValue >= 1.0f) { + if (oldBackgroundGradientDisposable != null) { + oldBackgroundGradientDisposable.dispose(); + oldBackgroundGradientDisposable = null; + } + oldBackgroundDrawable = null; + invalidate(); + } + } + shadowDrawable.setBounds(0, 0, getMeasuredWidth(), getMeasuredHeight()); + shadowDrawable.draw(canvas); + } + + @Override + protected void onDetachedFromWindow() { + super.onDetachedFromWindow(); + if (backgroundGradientDisposable != null) { + backgroundGradientDisposable.dispose(); + backgroundGradientDisposable = null; + } + if (oldBackgroundGradientDisposable != null) { + oldBackgroundGradientDisposable.dispose(); + oldBackgroundGradientDisposable = null; + } + } + + @Override + public boolean onInterceptTouchEvent(MotionEvent ev) { + return false; + } + + @Override + public boolean dispatchTouchEvent(MotionEvent ev) { + return false; + } + + @Override + protected void dispatchSetPressed(boolean pressed) { + + } + + @Override + public boolean onTouchEvent(MotionEvent event) { + return false; + } + } + + public EditWidgetActivity(int type, int widgetId, boolean edit) { + super(); + widgetType = type; + currentWidgetId = widgetId; + isEdit = edit; + if (edit) { + ArrayList users = new ArrayList<>(); + ArrayList chats = new ArrayList<>(); + getMessagesStorage().getWidgetDialogIds(currentWidgetId, widgetType, selectedDialogs, users, chats, true); + getMessagesController().putUsers(users, true); + getMessagesController().putChats(chats, true); + } + updateRows(); + } + + @Override + public boolean onFragmentCreate() { + DialogsActivity.loadDialogs(AccountInstance.getInstance(currentAccount)); + getMediaDataController().loadHints(true); + return super.onFragmentCreate(); + } + + private void updateRows() { + rowCount = 0; + previewRow = rowCount++; + selectChatsRow = rowCount++; + if (selectedDialogs.isEmpty()) { + chatsStartRow = -1; + chatsEndRow = -1; + } else { + chatsStartRow = rowCount; + rowCount += selectedDialogs.size(); + chatsEndRow = rowCount; + } + infoRow = rowCount++; + + if (listAdapter != null) { + listAdapter.notifyDataSetChanged(); + } + } + + public void setDelegate(EditWidgetActivityDelegate editWidgetActivityDelegate) { + delegate = editWidgetActivityDelegate; + } + + @Override + public View createView(Context context) { + actionBar.setBackButtonImage(R.drawable.ic_ab_back); + actionBar.setAllowOverlayTitle(false); + if (AndroidUtilities.isTablet()) { + actionBar.setOccupyStatusBar(false); + } + + if (widgetType == TYPE_CHATS) { + actionBar.setTitle(LocaleController.getString("WidgetChats", R.string.WidgetChats)); + } else { + actionBar.setTitle(LocaleController.getString("WidgetShortcuts", R.string.WidgetShortcuts)); + } + ActionBarMenu menu = actionBar.createMenu(); + menu.addItem(done_item, LocaleController.getString("Done", R.string.Done).toUpperCase()); + + actionBar.setActionBarMenuOnItemClick(new ActionBar.ActionBarMenuOnItemClick() { + @Override + public void onItemClick(int id) { + if (id == -1) { + if (delegate == null) { + finishActivity(); + return; + } + finishFragment(); + } else if (id == done_item) { + if (getParentActivity() == null) { + return; + } + getMessagesStorage().putWidgetDialogs(currentWidgetId, selectedDialogs); + + SharedPreferences preferences = getParentActivity().getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE); + preferences.edit().putInt("account" + currentWidgetId, currentAccount).commit(); + preferences.edit().putInt("type" + currentWidgetId, widgetType).commit(); + + AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(getParentActivity()); + if (widgetType == TYPE_CHATS) { + ChatsWidgetProvider.updateWidget(getParentActivity(), appWidgetManager, currentWidgetId, isEdit); + } else { + ContactsWidgetProvider.updateWidget(getParentActivity(), appWidgetManager, currentWidgetId, isEdit); + } + if (delegate != null) { + delegate.didSelectDialogs(selectedDialogs); + } else { + finishActivity(); + } + } + } + }); + + listAdapter = new ListAdapter(context); + + FrameLayout frameLayout = new FrameLayout(context); + frameLayout.setBackgroundColor(Theme.getColor(Theme.key_windowBackgroundGray)); + fragmentView = frameLayout; + + listView = new RecyclerListView(context); + listView.setLayoutManager(new LinearLayoutManager(context, LinearLayoutManager.VERTICAL, false)); + listView.setVerticalScrollBarEnabled(false); + listView.setAdapter(listAdapter); + ((DefaultItemAnimator) listView.getItemAnimator()).setDelayAnimations(false); + frameLayout.addView(listView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT)); + itemTouchHelper = new ItemTouchHelper(new TouchHelperCallback()); + itemTouchHelper.attachToRecyclerView(listView); + listView.setOnItemClickListener((view, position) -> { + if (position == selectChatsRow) { + InviteMembersBottomSheet bottomSheet = new InviteMembersBottomSheet(context, currentAccount, null, 0, EditWidgetActivity.this); + bottomSheet.setDelegate(dids -> { + selectedDialogs.clear(); + selectedDialogs.addAll(dids); + updateRows(); + if (widgetPreviewCell != null) { + widgetPreviewCell.updateDialogs(); + } + }, selectedDialogs); + bottomSheet.setSelectedContacts(selectedDialogs); + showDialog(bottomSheet); + } + }); + listView.setOnItemLongClickListener(new RecyclerListView.OnItemLongClickListenerExtended() { + + private Rect rect = new Rect(); + + @Override + public boolean onItemClick(View view, int position, float x, float y) { + if (getParentActivity() == null || !(view instanceof GroupCreateUserCell)) { + return false; + } + ImageView imageView = (ImageView) view.getTag(R.id.object_tag); + imageView.getHitRect(rect); + if (!rect.contains((int) x, (int) y)) { + AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity()); + CharSequence[] items = new CharSequence[]{LocaleController.getString("Delete", R.string.Delete)}; + builder.setItems(items, (dialogInterface, i) -> { + if (i == 0) { + selectedDialogs.remove(position - chatsStartRow); + updateRows(); + if (widgetPreviewCell != null) { + widgetPreviewCell.updateDialogs(); + } + } + }); + showDialog(builder.create()); + return true; + } + return false; + } + + @Override + public void onMove(float dx, float dy) { + + } + + @Override + public void onLongClickRelease() { + + } + }); + + return fragmentView; + } + + private void finishActivity() { + if (getParentActivity() == null) { + return; + } + getParentActivity().finish(); + AndroidUtilities.runOnUIThread(this::removeSelfFromStack, 1000); + } + + private class ListAdapter extends RecyclerListView.SelectionAdapter { + + private Context mContext; + + public ListAdapter(Context context) { + mContext = context; + } + + @Override + public int getItemCount() { + return rowCount; + } + + @Override + public boolean isEnabled(RecyclerView.ViewHolder holder) { + int type = holder.getItemViewType(); + return type == 1 || type == 3; + } + + @Override + public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { + View view; + switch (viewType) { + case 0: + view = new TextInfoPrivacyCell(mContext); + view.setBackgroundDrawable(Theme.getThemedDrawable(mContext, R.drawable.greydivider, Theme.key_windowBackgroundGrayShadow)); + break; + case 1: + view = new TextCell(mContext); + view.setBackgroundColor(Theme.getColor(Theme.key_windowBackgroundWhite)); + break; + case 2: + view = widgetPreviewCell = new WidgetPreviewCell(mContext); + break; + case 3: + default: + GroupCreateUserCell cell = new GroupCreateUserCell(mContext, false, 0, false); + ImageView sortImageView = new ImageView(mContext); + sortImageView.setImageResource(R.drawable.list_reorder); + sortImageView.setScaleType(ImageView.ScaleType.CENTER); + cell.setTag(R.id.object_tag, sortImageView); + cell.addView(sortImageView, LayoutHelper.createFrame(40, LayoutHelper.MATCH_PARENT, Gravity.CENTER_VERTICAL | (LocaleController.isRTL ? Gravity.LEFT : Gravity.RIGHT), 10, 0, 10, 0)); + sortImageView.setOnTouchListener((v, event) -> { + if (event.getAction() == MotionEvent.ACTION_DOWN) { + itemTouchHelper.startDrag(listView.getChildViewHolder(cell)); + } + return false; + }); + sortImageView.setColorFilter(new PorterDuffColorFilter(Theme.getColor(Theme.key_chats_pinnedIcon), PorterDuff.Mode.MULTIPLY)); + view = cell; + break; + } + return new RecyclerListView.Holder(view); + } + + @Override + public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) { + switch (holder.getItemViewType()) { + case 0: { + TextInfoPrivacyCell cell = (TextInfoPrivacyCell) holder.itemView; + if (position == infoRow) { + SpannableStringBuilder builder = new SpannableStringBuilder(); + if (widgetType == TYPE_CHATS) { + builder.append(LocaleController.getString("EditWidgetChatsInfo", R.string.EditWidgetChatsInfo)); + } else if (widgetType == TYPE_CONTACTS) { + builder.append(LocaleController.getString("EditWidgetContactsInfo", R.string.EditWidgetContactsInfo)); + } + if (SharedConfig.passcodeHash.length() > 0) { + builder.append(AndroidUtilities.replaceTags(LocaleController.getString("WidgetPasscode", R.string.WidgetPasscode))); + } + cell.setText(builder); + } + break; + } + case 1: { + TextCell cell = (TextCell) holder.itemView; + cell.setColors(null, Theme.key_windowBackgroundWhiteBlueText4); + Drawable drawable1 = mContext.getResources().getDrawable(R.drawable.poll_add_circle); + Drawable drawable2 = mContext.getResources().getDrawable(R.drawable.poll_add_plus); + drawable1.setColorFilter(new PorterDuffColorFilter(Theme.getColor(Theme.key_switchTrackChecked), PorterDuff.Mode.MULTIPLY)); + drawable2.setColorFilter(new PorterDuffColorFilter(Theme.getColor(Theme.key_checkboxCheck), PorterDuff.Mode.MULTIPLY)); + CombinedDrawable combinedDrawable = new CombinedDrawable(drawable1, drawable2); + cell.setTextAndIcon(LocaleController.getString("SelectChats", R.string.SelectChats), combinedDrawable, chatsStartRow != -1); + cell.getImageView().setPadding(0, AndroidUtilities.dp(7), 0, 0); + break; + } + case 3: { + GroupCreateUserCell cell = (GroupCreateUserCell) holder.itemView; + long did = selectedDialogs.get(position - chatsStartRow); + int lowerId = (int) did; + if (lowerId > 0) { + TLRPC.User user = getMessagesController().getUser(lowerId); + cell.setObject(user, null, null, position != chatsEndRow - 1); + } else { + TLRPC.Chat chat = getMessagesController().getChat(-lowerId); + cell.setObject(chat, null, null, position != chatsEndRow - 1); + } + } + } + } + + @Override + public void onViewAttachedToWindow(RecyclerView.ViewHolder holder) { + int type = holder.getItemViewType(); + if (type == 3 || type == 1) { + holder.itemView.setBackgroundColor(Theme.getColor(Theme.key_windowBackgroundWhite)); + } + } + + @Override + public int getItemViewType(int position) { + if (position == previewRow) { + return 2; + } else if (position == selectChatsRow) { + return 1; + } else if (position == infoRow) { + return 0; + } + return 3; + } + + public boolean swapElements(int fromIndex, int toIndex) { + int idx1 = fromIndex - chatsStartRow; + int idx2 = toIndex - chatsStartRow; + int count = chatsEndRow - chatsStartRow; + if (idx1 < 0 || idx2 < 0 || idx1 >= count || idx2 >= count) { + return false; + } + Long did1 = selectedDialogs.get(idx1); + Long did2 = selectedDialogs.get(idx2); + selectedDialogs.set(idx1, did2); + selectedDialogs.set(idx2, did1); + notifyItemMoved(fromIndex, toIndex); + return true; + } + } + + @Override + public boolean isSwipeBackEnabled(MotionEvent event) { + return false; + } + + @Override + public boolean onBackPressed() { + if (delegate == null) { + finishActivity(); + return false; + } else { + return super.onBackPressed(); + } + } + + @Override + public ArrayList getThemeDescriptions() { + ArrayList themeDescriptions = new ArrayList<>(); + + themeDescriptions.add(new ThemeDescription(listView, ThemeDescription.FLAG_CELLBACKGROUNDCOLOR, new Class[]{TextCell.class}, null, null, null, Theme.key_windowBackgroundWhite)); + themeDescriptions.add(new ThemeDescription(fragmentView, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_windowBackgroundGray)); + + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_actionBarDefault)); + themeDescriptions.add(new ThemeDescription(listView, ThemeDescription.FLAG_LISTGLOWCOLOR, null, null, null, null, Theme.key_actionBarDefault)); + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_ITEMSCOLOR, null, null, null, null, Theme.key_actionBarDefaultIcon)); + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_TITLECOLOR, null, null, null, null, Theme.key_actionBarDefaultTitle)); + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SELECTORCOLOR, null, null, null, null, Theme.key_actionBarDefaultSelector)); + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SUBMENUBACKGROUND, null, null, null, null, Theme.key_actionBarDefaultSubmenuBackground)); + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SUBMENUITEM, null, null, null, null, Theme.key_actionBarDefaultSubmenuItem)); + themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SUBMENUITEM | ThemeDescription.FLAG_IMAGECOLOR, null, null, null, null, Theme.key_actionBarDefaultSubmenuItemIcon)); + + themeDescriptions.add(new ThemeDescription(listView, ThemeDescription.FLAG_SELECTOR, null, null, null, null, Theme.key_listSelector)); + + themeDescriptions.add(new ThemeDescription(listView, 0, new Class[]{View.class}, Theme.dividerPaint, null, null, Theme.key_divider)); + + themeDescriptions.add(new ThemeDescription(listView, ThemeDescription.FLAG_BACKGROUNDFILTER, new Class[]{TextInfoPrivacyCell.class}, null, null, null, Theme.key_windowBackgroundGrayShadow)); + themeDescriptions.add(new ThemeDescription(listView, 0, new Class[]{TextInfoPrivacyCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayText4)); + + themeDescriptions.add(new ThemeDescription(listView, 0, new Class[]{TextCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlueText4)); + themeDescriptions.add(new ThemeDescription(listView, 0, new Class[]{TextCell.class}, new String[]{"imageView"}, null, null, null, Theme.key_windowBackgroundWhiteBlueText4)); + + + return themeDescriptions; + } +} diff --git a/TMessagesProj/src/main/java/org/telegram/ui/FeedWidgetConfigActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/FeedWidgetConfigActivity.java index 49dc7fde1..8adfd46fa 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/FeedWidgetConfigActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/FeedWidgetConfigActivity.java @@ -34,7 +34,7 @@ public class FeedWidgetConfigActivity extends ExternalActionActivity { fragment.setDelegate((fragment1, dids, message, param) -> { AccountInstance.getInstance(fragment1.getCurrentAccount()).getMessagesStorage().putWidgetDialogs(creatingAppWidgetId, dids); - SharedPreferences preferences = FeedWidgetConfigActivity.this.getSharedPreferences("feed_widget", Activity.MODE_PRIVATE); + SharedPreferences preferences = FeedWidgetConfigActivity.this.getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE); preferences.edit().putInt("account" + creatingAppWidgetId, fragment1.getCurrentAccount()).commit(); preferences.edit().putLong("dialogId" + creatingAppWidgetId, dids.get(0)).commit(); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/GroupCallActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/GroupCallActivity.java index 53540a59e..f917b0150 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/GroupCallActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/GroupCallActivity.java @@ -792,7 +792,9 @@ public class GroupCallActivity extends BottomSheet implements NotificationCenter if (num == 6) { String text = (String) args[1]; String error; - if ("ANONYMOUS_CALLS_DISABLED".equals(text) || "GROUPCALL_ANONYMOUS_FORBIDDEN".equals(text)) { + if ("GROUPCALL_PARTICIPANTS_TOO_MUCH".equals(text)) { + error = LocaleController.getString("VoipGroupTooMuch", R.string.VoipGroupTooMuch); + } else if ("ANONYMOUS_CALLS_DISABLED".equals(text) || "GROUPCALL_ANONYMOUS_FORBIDDEN".equals(text)) { error = LocaleController.getString("VoipGroupJoinAnonymousAdmin", R.string.VoipGroupJoinAnonymousAdmin); } else { error = LocaleController.getString("ErrorOccurred", R.string.ErrorOccurred) + "\n" + text; @@ -2831,7 +2833,7 @@ public class GroupCallActivity extends BottomSheet implements NotificationCenter items.add(LocaleController.getString("VoipGroupOpenProfile", R.string.VoipGroupOpenProfile)); icons.add(R.drawable.msg_openprofile); options.add(6); - if (!isAdmin) { + if (!isAdmin && ChatObject.canBlockUsers(currentChat)) { items.add(LocaleController.getString("VoipGroupUserRemove", R.string.VoipGroupUserRemove)); icons.add(R.drawable.msg_block2); options.add(2); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/GroupCreateActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/GroupCreateActivity.java index c151aac18..5860bed42 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/GroupCreateActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/GroupCreateActivity.java @@ -23,10 +23,6 @@ import android.graphics.Rect; import android.graphics.drawable.Drawable; import android.os.Build; import android.os.Bundle; -import androidx.annotation.Keep; -import androidx.recyclerview.widget.LinearLayoutManager; -import androidx.recyclerview.widget.RecyclerView; - import android.text.Editable; import android.text.InputType; import android.text.SpannableStringBuilder; @@ -50,42 +46,46 @@ import android.view.inputmethod.EditorInfo; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.ScrollView; -import android.widget.Toast; + +import androidx.annotation.Keep; +import androidx.recyclerview.widget.LinearLayoutManager; +import androidx.recyclerview.widget.RecyclerView; import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.ChatObject; import org.telegram.messenger.ContactsController; import org.telegram.messenger.FileLog; import org.telegram.messenger.LocaleController; +import org.telegram.messenger.MessagesController; +import org.telegram.messenger.NotificationCenter; +import org.telegram.messenger.R; import org.telegram.messenger.UserObject; import org.telegram.messenger.Utilities; import org.telegram.tgnet.TLObject; import org.telegram.tgnet.TLRPC; -import org.telegram.messenger.MessagesController; -import org.telegram.messenger.NotificationCenter; -import org.telegram.messenger.R; +import org.telegram.ui.ActionBar.ActionBar; import org.telegram.ui.ActionBar.AlertDialog; import org.telegram.ui.ActionBar.BackDrawable; -import org.telegram.ui.ActionBar.Theme; -import org.telegram.ui.ActionBar.ActionBar; import org.telegram.ui.ActionBar.BaseFragment; +import org.telegram.ui.ActionBar.Theme; import org.telegram.ui.ActionBar.ThemeDescription; import org.telegram.ui.Adapters.SearchAdapterHelper; import org.telegram.ui.Cells.CheckBoxCell; import org.telegram.ui.Cells.GroupCreateSectionCell; import org.telegram.ui.Cells.GroupCreateUserCell; import org.telegram.ui.Cells.TextCell; +import org.telegram.ui.Components.BulletinFactory; import org.telegram.ui.Components.CombinedDrawable; import org.telegram.ui.Components.EditTextBoldCursor; import org.telegram.ui.Components.FlickerLoadingView; -import org.telegram.ui.Components.PermanentLinkBottomSheet; -import org.telegram.ui.Components.StickerEmptyView; -import org.telegram.ui.Components.VerticalPositionAutoAnimator; import org.telegram.ui.Components.GroupCreateDividerItemDecoration; import org.telegram.ui.Components.GroupCreateSpan; import org.telegram.ui.Components.LayoutHelper; +import org.telegram.ui.Components.PermanentLinkBottomSheet; import org.telegram.ui.Components.RecyclerListView; +import org.telegram.ui.Components.StickerEmptyView; import org.telegram.ui.Components.TypefaceSpan; +import org.telegram.ui.Components.VerticalPositionAutoAnimator; import java.util.ArrayList; import java.util.Collections; @@ -526,6 +526,8 @@ public class GroupCreateActivity extends BaseFragment implements NotificationCen } }; ViewGroup frameLayout = (ViewGroup) fragmentView; + frameLayout.setFocusableInTouchMode(true); + frameLayout.setDescendantFocusability(ViewGroup.FOCUS_BEFORE_DESCENDANTS); scrollView = new ScrollView(context) { @Override @@ -677,19 +679,8 @@ public class GroupCreateActivity extends BaseFragment implements NotificationCen frameLayout.addView(listView); listView.setOnItemClickListener((view, position) -> { if (position == 0 && adapter.inviteViaLink != 0 && !adapter.searching) { - sharedLinkBottomSheet = new PermanentLinkBottomSheet(context, false, this, info, chatId); + sharedLinkBottomSheet = new PermanentLinkBottomSheet(context, false, this, info, chatId, channelId != 0); showDialog(sharedLinkBottomSheet); -// int id = chatId != 0 ? chatId : channelId; -// TLRPC.Chat chat = getMessagesController().getChat(id); -// if (chat != null && chat.has_geo && !TextUtils.isEmpty(chat.username)) { -// ChatEditTypeActivity activity = new ChatEditTypeActivity(id, true); -// activity.setInfo(info); -// presentFragment(activity); -// return; -// } -// presentFragment(new GroupInviteActivity(id)); - - } else if (view instanceof GroupCreateUserCell) { GroupCreateUserCell cell = (GroupCreateUserCell) view; Object object = cell.getObject(); @@ -725,7 +716,7 @@ public class GroupCreateActivity extends BaseFragment implements NotificationCen if (addToGroup && user.bot) { if (channelId == 0 && user.bot_nochats) { try { - Toast.makeText(getParentActivity(), LocaleController.getString("BotCantJoinGroups", R.string.BotCantJoinGroups), Toast.LENGTH_SHORT).show(); + BulletinFactory.of(this).createErrorBulletin(LocaleController.getString("BotCantJoinGroups", R.string.BotCantJoinGroups)).show(); } catch (Exception e) { FileLog.e(e); } @@ -873,9 +864,6 @@ public class GroupCreateActivity extends BaseFragment implements NotificationCen @Override public void onResume() { super.onResume(); - if (editText != null) { - editText.requestFocus(); - } AndroidUtilities.requestAdjustResize(getParentActivity(), classGuid); } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/LaunchActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/LaunchActivity.java index 522b847fb..28d51b637 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/LaunchActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/LaunchActivity.java @@ -123,6 +123,7 @@ import org.telegram.ui.Components.RLottieImageView; import org.telegram.ui.Components.RecyclerListView; import org.telegram.ui.Components.SharingLocationsAlert; import org.telegram.ui.Components.SideMenultItemAnimator; +import org.telegram.ui.Components.StickerSetBulletinLayout; import org.telegram.ui.Components.StickersAlert; import org.telegram.ui.Components.Switch; import org.telegram.ui.Components.TermsOfServiceView; @@ -787,6 +788,7 @@ public class LaunchActivity extends Activity implements ActionBarLayout.ActionBa NotificationCenter.getGlobalInstance().addObserver(this, NotificationCenter.didSetNewWallpapper); NotificationCenter.getGlobalInstance().addObserver(this, NotificationCenter.notificationsCountUpdated); NotificationCenter.getGlobalInstance().addObserver(this, NotificationCenter.screenStateChanged); + NotificationCenter.getGlobalInstance().addObserver(this, NotificationCenter.showBulletin); NotificationCenter.getGlobalInstance().addObserver(drawerLayoutAdapter, NotificationCenter.proxySettingsChanged); NotificationCenter.getGlobalInstance().addObserver(drawerLayoutAdapter, NotificationCenter.updateUserStatus); @@ -1280,6 +1282,8 @@ public class LaunchActivity extends Activity implements ActionBarLayout.ActionBa int push_enc_id = 0; int push_msg_id = 0; int open_settings = 0; + int open_widget_edit = -1; + int open_widget_edit_type = -1; int open_new_dialog = 0; long dialogId = 0; boolean showDialogsList = false; @@ -1696,6 +1700,8 @@ public class LaunchActivity extends Activity implements ActionBarLayout.ActionBa } } else if (path.startsWith("joinchat/")) { group = path.replace("joinchat/", ""); + } else if (path.startsWith("+")) { + group = path.replace("+", ""); } else if (path.startsWith("addstickers/")) { sticker = path.replace("addstickers/", ""); } else if (path.startsWith("msg/") || path.startsWith("share/")) { @@ -2137,20 +2143,27 @@ public class LaunchActivity extends Activity implements ActionBarLayout.ActionBa int chatId = intent.getIntExtra("chatId", 0); int userId = intent.getIntExtra("userId", 0); int encId = intent.getIntExtra("encId", 0); - if (push_msg_id == 0) { - push_msg_id = intent.getIntExtra("message_id", 0); - } - if (chatId != 0) { - NotificationCenter.getInstance(intentAccount[0]).postNotificationName(NotificationCenter.closeChats); - push_chat_id = chatId; - } else if (userId != 0) { - NotificationCenter.getInstance(intentAccount[0]).postNotificationName(NotificationCenter.closeChats); - push_user_id = userId; - } else if (encId != 0) { - NotificationCenter.getInstance(intentAccount[0]).postNotificationName(NotificationCenter.closeChats); - push_enc_id = encId; + int widgetId = intent.getIntExtra("appWidgetId", 0); + if (widgetId != 0) { + open_settings = 6; + open_widget_edit = widgetId; + open_widget_edit_type = intent.getIntExtra("appWidgetType", 0); } else { - showDialogsList = true; + if (push_msg_id == 0) { + push_msg_id = intent.getIntExtra("message_id", 0); + } + if (chatId != 0) { + NotificationCenter.getInstance(intentAccount[0]).postNotificationName(NotificationCenter.closeChats); + push_chat_id = chatId; + } else if (userId != 0) { + NotificationCenter.getInstance(intentAccount[0]).postNotificationName(NotificationCenter.closeChats); + push_user_id = userId; + } else if (encId != 0) { + NotificationCenter.getInstance(intentAccount[0]).postNotificationName(NotificationCenter.closeChats); + push_enc_id = encId; + } else { + showDialogsList = true; + } } } else if (intent.getAction().equals("com.tmessages.openplayer")) { showPlayer = true; @@ -2199,18 +2212,21 @@ public class LaunchActivity extends Activity implements ActionBarLayout.ActionBa ChatActivity fragment = new ChatActivity(args); if (actionBarLayout.presentFragment(fragment, false, true, true, false)) { pushOpened = true; + drawerLayoutContainer.closeDrawer(); } } } } else if (push_chat_id != 0) { Bundle args = new Bundle(); args.putInt("chat_id", push_chat_id); - if (push_msg_id != 0) + if (push_msg_id != 0) { args.putInt("message_id", push_msg_id); + } if (mainFragmentsStack.isEmpty() || MessagesController.getInstance(intentAccount[0]).checkCanOpenChat(args, mainFragmentsStack.get(mainFragmentsStack.size() - 1))) { ChatActivity fragment = new ChatActivity(args); if (actionBarLayout.presentFragment(fragment, false, true, true, false)) { pushOpened = true; + drawerLayoutContainer.closeDrawer(); } } } else if (push_enc_id != 0) { @@ -2219,6 +2235,7 @@ public class LaunchActivity extends Activity implements ActionBarLayout.ActionBa ChatActivity fragment = new ChatActivity(args); if (actionBarLayout.presentFragment(fragment, false, true, true, false)) { pushOpened = true; + drawerLayoutContainer.closeDrawer(); } } else if (showDialogsList) { if (!AndroidUtilities.isTablet()) { @@ -2285,13 +2302,19 @@ public class LaunchActivity extends Activity implements ActionBarLayout.ActionBa } else if (open_settings == 5) { fragment = new ActionIntroActivity(ActionIntroActivity.ACTION_TYPE_CHANGE_PHONE_NUMBER); closePrevious = true; + } else if (open_settings == 6) { + fragment = new EditWidgetActivity(open_widget_edit_type, open_widget_edit, true); } else if (open_settings == 100) { fragment = new NekoSettingsActivity(); } else { fragment = null; } boolean closePreviousFinal = closePrevious; - AndroidUtilities.runOnUIThread(() -> presentFragment(fragment, closePreviousFinal, false)); + if (open_settings == 6) { + actionBarLayout.presentFragment(fragment, false, true, true, false); + } else { + AndroidUtilities.runOnUIThread(() -> presentFragment(fragment, closePreviousFinal, false)); + } if (AndroidUtilities.isTablet()) { actionBarLayout.showLastFragment(); rightActionBarLayout.showLastFragment(); @@ -2546,7 +2569,9 @@ public class LaunchActivity extends Activity implements ActionBarLayout.ActionBa } if (!chatOpened) { try { - Toast.makeText(LaunchActivity.this, LocaleController.getString("ChannelPostDeleted", R.string.ChannelPostDeleted), Toast.LENGTH_SHORT).show(); + if (!mainFragmentsStack.isEmpty()) { + BulletinFactory.of(mainFragmentsStack.get(mainFragmentsStack.size() - 1)).createErrorBulletin(LocaleController.getString("ChannelPostDeleted", R.string.ChannelPostDeleted)).show(); + } } catch (Exception e) { FileLog.e(e); } @@ -2849,7 +2874,9 @@ public class LaunchActivity extends Activity implements ActionBarLayout.ActionBa final TLRPC.User user = !res.users.isEmpty() ? res.users.get(0) : null; if (user == null || user.bot && user.bot_nochats) { try { - Toast.makeText(LaunchActivity.this, LocaleController.getString("BotCantJoinGroups", R.string.BotCantJoinGroups), Toast.LENGTH_SHORT).show(); + if (!mainFragmentsStack.isEmpty()) { + BulletinFactory.of(mainFragmentsStack.get(mainFragmentsStack.size() - 1)).createErrorBulletin(LocaleController.getString("BotCantJoinGroups", R.string.BotCantJoinGroups)).show(); + } } catch (Exception e) { FileLog.e(e); } @@ -2928,10 +2955,13 @@ public class LaunchActivity extends Activity implements ActionBarLayout.ActionBa } } else { try { - if (error != null && error.text != null && error.text.startsWith("FLOOD_WAIT")) { - Toast.makeText(LaunchActivity.this, LocaleController.getString("FloodWait", R.string.FloodWait), Toast.LENGTH_SHORT).show(); - } else { - Toast.makeText(LaunchActivity.this, LocaleController.getString("NoUsernameFound", R.string.NoUsernameFound), Toast.LENGTH_SHORT).show(); + if (!mainFragmentsStack.isEmpty()) { + BaseFragment fragment = mainFragmentsStack.get(mainFragmentsStack.size() - 1); + if (error != null && error.text != null && error.text.startsWith("FLOOD_WAIT")) { + BulletinFactory.of(fragment).createErrorBulletin(LocaleController.getString("FloodWait", R.string.FloodWait)).show(); + } else { + BulletinFactory.of(fragment).createErrorBulletin(LocaleController.getString("NoUsernameFound", R.string.NoUsernameFound)).show(); + } } } catch (Exception e) { FileLog.e(e); @@ -3009,6 +3039,9 @@ public class LaunchActivity extends Activity implements ActionBarLayout.ActionBa builder.setTitle(LocaleController.getString("NekoX", R.string.NekoX)); if (error.text.startsWith("FLOOD_WAIT")) { builder.setMessage(LocaleController.getString("FloodWait", R.string.FloodWait)); + } else if (error.text.startsWith("INVITE_HASH_EXPIRED")) { + builder.setTitle(LocaleController.getString("ExpiredLink", R.string.ExpiredLink)); + builder.setMessage(LocaleController.getString("InviteExpired", R.string.InviteExpired)); } else { builder.setMessage(LocaleController.getString("JoinToGroupErrorNotExist", R.string.JoinToGroupErrorNotExist)); } @@ -3766,6 +3799,7 @@ public class LaunchActivity extends Activity implements ActionBarLayout.ActionBa NotificationCenter.getGlobalInstance().removeObserver(this, NotificationCenter.didSetPasscode); NotificationCenter.getGlobalInstance().removeObserver(this, NotificationCenter.notificationsCountUpdated); NotificationCenter.getGlobalInstance().removeObserver(this, NotificationCenter.screenStateChanged); + NotificationCenter.getGlobalInstance().removeObserver(this, NotificationCenter.showBulletin); NotificationCenter.getGlobalInstance().removeObserver(drawerLayoutAdapter, NotificationCenter.proxySettingsChanged); NotificationCenter.getGlobalInstance().removeObserver(drawerLayoutAdapter, NotificationCenter.updateUserStatus); @@ -4477,6 +4511,17 @@ public class LaunchActivity extends Activity implements ActionBarLayout.ActionBa if (args.length > 1 && !mainFragmentsStack.isEmpty()) { AlertsCreator.processError(currentAccount, (TLRPC.TL_error) args[2], mainFragmentsStack.get(mainFragmentsStack.size() - 1), (TLObject) args[1]); } + } else if (id == NotificationCenter.showBulletin) { + if (!mainFragmentsStack.isEmpty()) { + int type = (int) args[0]; + BaseFragment fragment = mainFragmentsStack.get(mainFragmentsStack.size() - 1); + if (type == Bulletin.TYPE_STICKER) { + TLRPC.Document sticker = (TLRPC.Document) args[1]; + Bulletin.make(fragment, new StickerSetBulletinLayout(this, null, (int) args[2], sticker), Bulletin.DURATION_SHORT).show(); + } else if (type == Bulletin.TYPE_ERROR) { + BulletinFactory.of(fragment).createErrorBulletin((String) args[1]).show(); + } + } } } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/LinkEditActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/LinkEditActivity.java index 4d311731d..6911b9cb2 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/LinkEditActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/LinkEditActivity.java @@ -2,12 +2,14 @@ package org.telegram.ui; import android.content.Context; import android.graphics.Canvas; +import android.os.Vibrator; import android.text.Editable; import android.text.InputType; import android.text.TextWatcher; import android.text.method.DigitsKeyListener; import android.util.TypedValue; import android.view.Gravity; +import android.view.MotionEvent; import android.view.View; import android.widget.EditText; import android.widget.LinearLayout; @@ -20,6 +22,7 @@ import org.telegram.messenger.R; import org.telegram.tgnet.TLObject; import org.telegram.tgnet.TLRPC; import org.telegram.ui.ActionBar.ActionBar; +import org.telegram.ui.ActionBar.AdjustPanLayoutHelper; import org.telegram.ui.ActionBar.AlertDialog; import org.telegram.ui.ActionBar.BaseFragment; import org.telegram.ui.ActionBar.Theme; @@ -54,6 +57,8 @@ public class LinkEditActivity extends BaseFragment { private TextView buttonTextView; private TextSettingsCell revokeLink; private boolean ignoreSet; + private ScrollView scrollView; + private boolean finished; public LinkEditActivity(int type, int chatId) { this.type = type; @@ -65,7 +70,6 @@ public class LinkEditActivity extends BaseFragment { private ArrayList dispalyedUses = new ArrayList<>(); private final int[] defaultUses = new int[]{1, 10, 100}; - private int selectedDate; private Callback callback; AlertDialog progressDialog; @@ -86,15 +90,61 @@ public class LinkEditActivity extends BaseFragment { public void onItemClick(int id) { if (id == -1) { finishFragment(); + AndroidUtilities.hideKeyboard(usesEditText); } } }); - ScrollView scrollView = new ScrollView(context); + scrollView = new ScrollView(context); SizeNotifierFrameLayout contentView = new SizeNotifierFrameLayout(context) { int oldKeyboardHeight; + + @Override + protected AdjustPanLayoutHelper createAdjustPanLayoutHelper() { + AdjustPanLayoutHelper panLayoutHelper = new AdjustPanLayoutHelper(this) { + + @Override + protected void onTransitionStart(boolean keyboardVisible, int contentHeight) { + super.onTransitionStart(keyboardVisible, contentHeight); + scrollView.getLayoutParams().height = contentHeight; + } + + @Override + protected void onTransitionEnd() { + super.onTransitionEnd(); + scrollView.getLayoutParams().height = LinearLayout.LayoutParams.MATCH_PARENT; + scrollView.requestLayout(); + } + + @Override + protected void onPanTranslationUpdate(float y, float progress, boolean keyboardVisible) { + super.onPanTranslationUpdate(y, progress, keyboardVisible); + setTranslationY(0); + } + + @Override + protected boolean heightAnimationEnabled() { + return !finished; + } + }; + panLayoutHelper.setCheckHierarchyHeight(true); + return panLayoutHelper; + } + + @Override + protected void onAttachedToWindow() { + super.onAttachedToWindow(); + adjustPanLayoutHelper.onAttach(); + } + + @Override + protected void onDetachedFromWindow() { + super.onDetachedFromWindow(); + adjustPanLayoutHelper.onDetach(); + } + @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); @@ -103,24 +153,79 @@ public class LinkEditActivity extends BaseFragment { scrollToEnd = true; invalidate(); } + + if (keyboardHeight < AndroidUtilities.dp(20)) { + usesEditText.clearFocus(); + } + oldKeyboardHeight = keyboardHeight; } + @Override + protected void onLayout(boolean changed, int l, int t, int r, int b) { + int scrollY = scrollView.getScrollY(); + super.onLayout(changed, l, t, r, b); + + if (scrollY != scrollView.getScrollY() && !scrollToEnd) { + scrollView.setTranslationY(scrollView.getScrollY() - scrollY); + scrollView.animate().cancel(); + scrollView.animate().translationY(0).setDuration(AdjustPanLayoutHelper.keyboardDuration).setInterpolator(AdjustPanLayoutHelper.keyboardInterpolator).start(); + } + } + @Override protected void dispatchDraw(Canvas canvas) { super.dispatchDraw(canvas); if (scrollToEnd) { scrollToEnd = false; - scrollView.scrollTo(0, Math.max(0, scrollView.getChildAt(0).getMeasuredHeight() - scrollView.getMeasuredHeight() - AndroidUtilities.dp(16))); + scrollView.smoothScrollTo(0, Math.max(0, scrollView.getChildAt(0).getMeasuredHeight() - scrollView.getMeasuredHeight())); } } }; - contentView.setDelegate((keyboardHeight, isWidthGreater) -> { - }); fragmentView = contentView; - LinearLayout linearLayout = new LinearLayout(context); + LinearLayout linearLayout = new LinearLayout(context) { + + boolean firstLayout = true; + + @Override + protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { + super.onMeasure(widthMeasureSpec, heightMeasureSpec); + int elementsHeight = 0; + int h = MeasureSpec.getSize(heightMeasureSpec); + for (int i = 0; i < getChildCount(); i++) { + View child = getChildAt(i); + if (child != buttonTextView) { + elementsHeight += child.getMeasuredHeight(); + } + } + + int topMargin; + int buttonH = AndroidUtilities.dp(48) + AndroidUtilities.dp(24) + AndroidUtilities.dp(16); + if (elementsHeight >= h - buttonH) { + topMargin = AndroidUtilities.dp(24); + } else { + topMargin = AndroidUtilities.dp(24) + (h - buttonH) - elementsHeight; + } + + if (((LayoutParams) buttonTextView.getLayoutParams()).topMargin != topMargin) { + int oldMargin = ((LayoutParams) buttonTextView.getLayoutParams()).topMargin; + ((LayoutParams) buttonTextView.getLayoutParams()).topMargin = topMargin; + if (!firstLayout) { + buttonTextView.setTranslationY(oldMargin - topMargin); + buttonTextView.animate().translationY(0).setDuration(AdjustPanLayoutHelper.keyboardDuration).setInterpolator(AdjustPanLayoutHelper.keyboardInterpolator).start(); + } + super.onMeasure(widthMeasureSpec, heightMeasureSpec); + } + } + + @Override + protected void dispatchDraw(Canvas canvas) { + super.dispatchDraw(canvas); + firstLayout = false; + } + }; linearLayout.setOrientation(LinearLayout.VERTICAL); scrollView.addView(linearLayout); @@ -185,7 +290,15 @@ public class LinkEditActivity extends BaseFragment { resetUses(); linearLayout.addView(usesChooseView); - usesEditText = new EditText(context); + usesEditText = new EditText(context) { + @Override + public boolean onTouchEvent(MotionEvent event) { + if (event.getAction() == MotionEvent.ACTION_UP) { + setCursorVisible(true); + } + return super.onTouchEvent(event); + } + }; usesEditText.setPadding(AndroidUtilities.dp(22), 0, AndroidUtilities.dp(22), 0); usesEditText.setGravity(Gravity.CENTER_VERTICAL); usesEditText.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 16); @@ -219,7 +332,11 @@ public class LinkEditActivity extends BaseFragment { resetUses(); return; } - chooseUses(customUses); + if (customUses > 100000) { + resetUses(); + } else { + chooseUses(customUses); + } } }); linearLayout.addView(usesEditText, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, 50)); @@ -249,8 +366,8 @@ public class LinkEditActivity extends BaseFragment { linearLayout.addView(revokeLink); } - contentView.addView(scrollView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, 0, 0, 0, 0, 80)); - contentView.addView(buttonTextView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 48, Gravity.BOTTOM, 16, 15, 16, 16)); + contentView.addView(scrollView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT)); + linearLayout.addView(buttonTextView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 48, Gravity.BOTTOM, 16, 15, 16, 16)); timeHeaderCell.setBackgroundColor(Theme.getColor(Theme.key_windowBackgroundWhite)); timeChooseView.setBackgroundColor(Theme.getColor(Theme.key_windowBackgroundWhite)); @@ -264,6 +381,17 @@ public class LinkEditActivity extends BaseFragment { if (loading) { return; } + + int timeIndex = timeChooseView.getSelectedIndex(); + if (timeIndex < dispalyedDates.size() && dispalyedDates.get(timeIndex) < 0) { + AndroidUtilities.shakeView(timeEditText, 2, 0); + Vibrator vibrator = (Vibrator) timeEditText.getContext().getSystemService(Context.VIBRATOR_SERVICE); + if (vibrator != null) { + vibrator.vibrate(200); + } + return; + } + if (type == CREATE_TYPE) { if (progressDialog != null) { progressDialog.dismiss(); @@ -273,7 +401,7 @@ public class LinkEditActivity extends BaseFragment { progressDialog.showDelayed(500); TLRPC.TL_messages_exportChatInvite req = new TLRPC.TL_messages_exportChatInvite(); req.peer = getMessagesController().getInputPeer(-chatId); - /*req.legacy_revoke_permanent = false; TODO layer 124 + req.legacy_revoke_permanent = false; int i = timeChooseView.getSelectedIndex(); req.flags |= 1; @@ -289,7 +417,7 @@ public class LinkEditActivity extends BaseFragment { req.usage_limit = dispalyedUses.get(i); } else { req.usage_limit = 0; - }*/ + } getConnectionsManager().sendRequest(req, (response, error) -> { AndroidUtilities.runOnUIThread(() -> { @@ -321,19 +449,31 @@ public class LinkEditActivity extends BaseFragment { req.peer = getMessagesController().getInputPeer(-chatId); int i = timeChooseView.getSelectedIndex(); - req.flags |= 1; if (i < dispalyedDates.size()) { - req.expire_date = dispalyedDates.get(i) + getConnectionsManager().getCurrentTime(); + if (currentInviteDate != dispalyedDates.get(i)) { + req.flags |= 1; + req.expire_date = dispalyedDates.get(i) + getConnectionsManager().getCurrentTime(); + } } else { - req.expire_date = 0; + if (currentInviteDate != 0) { + req.flags |= 1; + req.expire_date = 0; + } } i = usesChooseView.getSelectedIndex(); - req.flags |= 2; + if (i < dispalyedUses.size()) { - req.usage_limit = dispalyedUses.get(i); + int newLimit = dispalyedUses.get(i); + if (inviteToEdit.usage_limit != newLimit) { + req.flags |= 2; + req.usage_limit = newLimit; + } } else { - req.usage_limit = 0; + if (inviteToEdit.usage_limit != 0) { + req.flags |= 2; + req.usage_limit = 0; + } } getConnectionsManager().sendRequest(req, (response, error) -> { @@ -366,7 +506,13 @@ public class LinkEditActivity extends BaseFragment { timeEditText.setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteBlackText)); timeEditText.setHintTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteGrayText)); + usesEditText.setCursorVisible(false); setInviteToEdit(inviteToEdit); + + contentView.setClipChildren(false); + scrollView.setClipChildren(false); + linearLayout.setClipChildren(false); + return contentView; } @@ -401,7 +547,6 @@ public class LinkEditActivity extends BaseFragment { } private void chooseDate(int selectedDate) { - this.selectedDate = selectedDate; timeEditText.setText(LocaleController.formatDateAudio(selectedDate, false)); int originDate = selectedDate; @@ -436,7 +581,7 @@ public class LinkEditActivity extends BaseFragment { } else { if (selectedDate < 86400L) { options[i] = LocaleController.getString("MessageScheduleToday", R.string.MessageScheduleToday); - } else if (selectedDate < 364 * 86400L){ + } else if (selectedDate < 364 * 86400L) { options[i] = LocaleController.getInstance().formatterScheduleDay.format(originDate * 1000L); } else { options[i] = LocaleController.getInstance().formatterYear.format(originDate * 1000L); @@ -467,25 +612,42 @@ public class LinkEditActivity extends BaseFragment { usesChooseView.setOptions(4, "1", "10", "100", LocaleController.getString("NoLimit", R.string.NoLimit)); } + int currentInviteDate; + public void setInviteToEdit(TLRPC.TL_chatInviteExported invite) { inviteToEdit = invite; if (fragmentView != null && invite != null) { if (invite.expire_date > 0) { chooseDate(invite.expire_date); + currentInviteDate = dispalyedDates.get(timeChooseView.getSelectedIndex()); + } else { + currentInviteDate = 0; } if (invite.usage_limit > 0) { chooseUses(invite.usage_limit); + usesEditText.setText(Integer.toString(invite.usage_limit)); } } } public interface Callback { void onLinkCreated(TLObject response); + void onLinkEdited(TLRPC.TL_chatInviteExported inviteToEdit, TLObject response); + void onLinkRemoved(TLRPC.TL_chatInviteExported inviteFinal); + void revokeLink(TLRPC.TL_chatInviteExported inviteFinal); } + @Override + public void finishFragment() { + scrollView.getLayoutParams().height = scrollView.getHeight(); + finished = true; + super.finishFragment(); + + } + @Override public ArrayList getThemeDescriptions() { ThemeDescription.ThemeDescriptionDelegate descriptionDelegate = new ThemeDescription.ThemeDescriptionDelegate() { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/LoginActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/LoginActivity.java index d412c967e..371a3fdf7 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/LoginActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/LoginActivity.java @@ -1076,9 +1076,7 @@ public class LoginActivity extends BaseFragment implements NotificationCenter.No } } else if (dialog == permissionsShowDialog && !permissionsShowItems.isEmpty() && getParentActivity() != null) { - AndroidUtilities.runOnUIThread(() -> { - needRequestPermissions = false; - }, 200); + AndroidUtilities.runOnUIThread(() -> needRequestPermissions = false, 200); try { getParentActivity().requestPermissions(permissionsShowItems.toArray(new String[0]), 7); } catch (Exception ignore) { @@ -2422,12 +2420,14 @@ public class LoginActivity extends BaseFragment implements NotificationCenter.No private TextView confirmTextView; private TextView titleTextView; private ImageView blackImageView; - private ImageView blueImageView; + private RLottieImageView blueImageView; private TextView timeText; private TextView problemText; private Bundle currentParams; private ProgressView progressView; + RLottieDrawable hintDrawable; + private Timer timeTimer; private Timer codeTimer; private int openTime; @@ -2491,18 +2491,19 @@ public class LoginActivity extends BaseFragment implements NotificationCenter.No blackImageView.setColorFilter(new PorterDuffColorFilter(Theme.getColor(Theme.key_windowBackgroundWhiteBlackText), PorterDuff.Mode.SRC_IN)); frameLayout.addView(blackImageView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.LEFT | Gravity.TOP, 0, 0, 0, 0)); - blueImageView = new ImageView(context); + blueImageView = new RLottieImageView(context); blueImageView.setImageResource(R.drawable.sms_bubble); blueImageView.setColorFilter(new PorterDuffColorFilter(Theme.getColor(Theme.key_chats_actionBackground), PorterDuff.Mode.SRC_IN)); frameLayout.addView(blueImageView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.LEFT | Gravity.TOP, 0, 0, 0, 0)); titleTextView.setText(LocaleController.getString("SentAppCodeTitle", R.string.SentAppCodeTitle)); } else { - blueImageView = new ImageView(context); - blueImageView.setImageResource(R.drawable.sms_code); - blueImageView.setColorFilter(new PorterDuffColorFilter(Theme.getColor(Theme.key_chats_actionBackground), PorterDuff.Mode.SRC_IN)); - frameLayout.addView(blueImageView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.LEFT | Gravity.TOP, 0, 0, 0, 0)); - + blueImageView = new RLottieImageView(context); + hintDrawable = new RLottieDrawable(R.raw.sms_incoming_info, "" + R.raw.sms_incoming_info, AndroidUtilities.dp(64), AndroidUtilities.dp(64), true, null); + hintDrawable.setLayerColor("Bubble.**", Theme.getColor(Theme.key_chats_actionBackground)); + hintDrawable.setLayerColor("Phone.**", Theme.getColor(Theme.key_chats_actionBackground)); + blueImageView.setAnimation(hintDrawable); + frameLayout.addView(blueImageView, LayoutHelper.createFrame(64, 64, Gravity.LEFT | Gravity.TOP, 0, 0, 0, 0)); titleTextView.setText(LocaleController.getString("SentSmsCodeTitle", R.string.SentSmsCodeTitle)); } addView(titleTextView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER_HORIZONTAL | Gravity.TOP, 0, 18, 0, 0)); @@ -3194,6 +3195,9 @@ public class LoginActivity extends BaseFragment implements NotificationCenter.No if (currentType == 3) { return; } + if (hintDrawable != null) { + hintDrawable.setCurrentFrame(0); + } AndroidUtilities.runOnUIThread(() -> { if (codeField != null) { for (int a = codeField.length - 1; a >= 0; a--) { @@ -3205,6 +3209,9 @@ public class LoginActivity extends BaseFragment implements NotificationCenter.No } } } + if (hintDrawable != null) { + hintDrawable.start(); + } }, 100); } @@ -4546,6 +4553,7 @@ public class LoginActivity extends BaseFragment implements NotificationCenter.No } } + @Override public ArrayList getThemeDescriptions() { for (int a = 0; a < views.length; a++) { @@ -4565,6 +4573,18 @@ public class LoginActivity extends BaseFragment implements NotificationCenter.No ArrayList arrayList = new ArrayList<>(); + ThemeDescription.ThemeDescriptionDelegate descriptionDelegate = () -> { + for (int i = 0; i < views.length; i++) { + if (views[i] instanceof LoginActivitySmsView) { + LoginActivitySmsView smsView = (LoginActivitySmsView) views[i]; + if (smsView.hintDrawable != null) { + smsView.hintDrawable.setLayerColor("Bubble.**", Theme.getColor(Theme.key_chats_actionBackground)); + smsView.hintDrawable.setLayerColor("Phone.**", Theme.getColor(Theme.key_chats_actionBackground)); + } + } + } + }; + arrayList.add(new ThemeDescription(fragmentView, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_windowBackgroundWhite)); arrayList.add(new ThemeDescription(floatingButtonIcon, ThemeDescription.FLAG_IMAGECOLOR, null, null, null, null, Theme.key_chats_actionIcon)); @@ -4686,6 +4706,8 @@ public class LoginActivity extends BaseFragment implements NotificationCenter.No arrayList.add(new ThemeDescription(smsView4.blackImageView, ThemeDescription.FLAG_IMAGECOLOR, null, null, null, null, Theme.key_windowBackgroundWhiteBlackText)); arrayList.add(new ThemeDescription(smsView4.blueImageView, ThemeDescription.FLAG_IMAGECOLOR, null, null, null, null, Theme.key_chats_actionBackground)); + arrayList.add(new ThemeDescription(smsView4.blueImageView, 0, null, null, null, descriptionDelegate, Theme.key_chats_actionBackground)); + return arrayList; } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ManageLinksActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ManageLinksActivity.java index a2f2e4249..d84fbcdda 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ManageLinksActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ManageLinksActivity.java @@ -1,9 +1,5 @@ package org.telegram.ui; -import android.animation.Animator; -import android.animation.AnimatorListenerAdapter; -import android.animation.AnimatorSet; -import android.animation.ObjectAnimator; import android.content.Context; import android.content.Intent; import android.graphics.Canvas; @@ -13,6 +9,7 @@ import android.graphics.PorterDuff; import android.graphics.PorterDuffColorFilter; import android.graphics.RectF; import android.graphics.drawable.Drawable; +import android.os.Bundle; import android.text.SpannableStringBuilder; import android.text.TextUtils; import android.util.SparseIntArray; @@ -21,7 +18,6 @@ import android.view.Gravity; import android.view.HapticFeedbackConstants; import android.view.View; import android.view.ViewGroup; -import android.view.ViewTreeObserver; import android.widget.FrameLayout; import android.widget.ImageView; import android.widget.LinearLayout; @@ -38,6 +34,8 @@ import androidx.recyclerview.widget.RecyclerView; import org.telegram.messenger.AndroidUtilities; import org.telegram.messenger.ApplicationLoader; import org.telegram.messenger.ChatObject; +import org.telegram.messenger.ContactsController; +import org.telegram.messenger.DocumentObject; import org.telegram.messenger.FileLog; import org.telegram.messenger.ImageLocation; import org.telegram.messenger.LocaleController; @@ -45,8 +43,8 @@ import org.telegram.messenger.MediaDataController; import org.telegram.messenger.MessagesController; import org.telegram.messenger.NotificationCenter; import org.telegram.messenger.R; +import org.telegram.messenger.SvgHelper; import org.telegram.messenger.UserConfig; -import org.telegram.tgnet.RequestDelegate; import org.telegram.tgnet.TLObject; import org.telegram.tgnet.TLRPC; import org.telegram.ui.ActionBar.ActionBar; @@ -69,12 +67,13 @@ import org.telegram.ui.Components.FlickerLoadingView; import org.telegram.ui.Components.InviteLinkBottomSheet; import org.telegram.ui.Components.LayoutHelper; import org.telegram.ui.Components.LinkActionView; -import org.telegram.ui.Components.LoadingStickerDrawable; import org.telegram.ui.Components.RecyclerListView; import org.telegram.ui.Components.TimerParticles; +import org.webrtc.RecyclerItemsEnterAnimator; import java.util.ArrayList; import java.util.HashMap; +import java.util.Locale; public class ManageLinksActivity extends BaseFragment implements NotificationCenter.NotificationCenterDelegate { @@ -84,6 +83,8 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen private TLRPC.Chat currentChat; private TLRPC.ChatFull info; private TLRPC.TL_chatInviteExported invite; + private int adminId; + private boolean isChannel; private int currentChatId; @@ -104,6 +105,16 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen private int revokeAllDivider; private int revokeAllRow; private int createLinkHelpRow; + private int linksHeaderRow; + + private int creatorRow; + private int creatorDividerRow; + + private int adminsHeaderRow; + private int adminsDividerRow; + private int adminsStartRow; + private int adminsEndRow; + boolean linksLoading; private int rowCount; @@ -113,12 +124,20 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen boolean hasMore; boolean deletingRevokedLinks; + boolean loadAdmins; + boolean adminsLoaded; + private int invitesCount; + private boolean isOpened; + private boolean transitionFinished; + + private RecyclerItemsEnterAnimator recyclerItemsEnterAnimator; private ArrayList invites = new ArrayList<>(); private ArrayList revokedInvites = new ArrayList<>(); private HashMap users = new HashMap<>(); private InviteLinkBottomSheet inviteLinkBottomSheet; + private ArrayList admins = new ArrayList<>(); long timeDif; @@ -129,15 +148,34 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen } + Runnable updateTimerRunnable = new Runnable() { + @Override + public void run() { + if (listView == null) { + return; + } + for (int i = 0; i < listView.getChildCount(); i++) { + View child = listView.getChildAt(i); + if (child instanceof LinkCell) { + LinkCell linkCell = (LinkCell) child; + if (linkCell.timerRunning) { + linkCell.setLink(linkCell.invite, linkCell.position); + } + } + + } + AndroidUtilities.runOnUIThread(this, 500); + } + }; + private static class EmptyView extends LinearLayout implements NotificationCenter.NotificationCenterDelegate { private BackupImageView stickerView; - private LoadingStickerDrawable drawable; - private int currentAccount = UserConfig.selectedAccount; + private final int currentAccount = UserConfig.selectedAccount; - private static final String stickerSetName = "UtyaDuck"; + private static final String stickerSetName = "tg_placeholders"; public EmptyView(Context context) { super(context); @@ -146,17 +184,6 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen setOrientation(LinearLayout.VERTICAL); stickerView = new BackupImageView(context); - drawable = new LoadingStickerDrawable(stickerView, "M476.1,397.4c25.8-47.2,0.3-105.9-50.9-120c-2.5-6.9-7.8-12.7-15-16.4l0.4-229.4c0-12.3-10-22.4-22.4-22.4" + - "H128.5c-12.3,0-22.4,10-22.4,22.4l-0.4,229.8v0c0,6.7,2.9,12.6,7.6,16.7c-51.6,15.9-79.2,77.2-48.1,116.4" + - "c-8.7,11.7-13.4,27.5-14,47.2c-1.7,34.5,21.6,45.8,55.9,45.8c52.3,0,99.1,4.6,105.1-36.2c16.5,0.9,7.1-37.3-6.5-53.3" + - "c18.4-22.4,18.3-52.9,4.9-78.2c-0.7-5.3-3.8-9.8-8.1-12.6c-1.5-2-1.6-2-2.1-2.7c0.2-1,1.2-11.8-3.4-20.9h138.5" + - "c-4.8,8.8-4.7,17-2.9,22.1c-5.3,4.8-6.8,12.3-5.2,17c-11.4,24.9-10,53.8,4.3,77.5c-6.8,9.7-11.2,21.7-12.6,31.6" + - "c-0.2-0.2-0.4-0.3-0.6-0.5c0.8-3.3,0.4-6.4-1.3-7.8c9.3-12.1-4.5-29.2-17-21.7c-3.8-2.8-10.6-3.2-18.1-0.5" + - "c-2.4-10.6-21.1-10.6-28.6-1c-1.3,0.3-2.9,0.8-4.5,1.9c-5.2-0.9-10.9,0.1-14.1,4.4c-6.9,3-9.5,10.4-7.8,17c-0.9,1.8-1.1,4-0.8,6.3" + - "c-1.6,1.2-2.3,3.1-2,4.9c0.1,0.6,10.4,56.6,11.2,62c0.3,1.8,1.5,3.2,3.1,3.9c8.7,3.4,12,3.8,30.1,9.4c2.7,0.8,2.4,0.8,6.7-0.1" + - "c16.4-3.5,30.2-8.9,30.8-9.2c1.6-0.6,2.7-2,3.1-3.7c0.1-0.4,6.8-36.5,10-53.2c0.9,4.2,3.3,7.3,7.4,7.5c1.2,7.8,4.4,14.5,9.5,19.9" + - "c16.4,17.3,44.9,15.7,64.9,16.1c38.3,0.8,74.5,1.5,84.4-24.4C488.9,453.5,491.3,421.3,476.1,397.4z", AndroidUtilities.dp(104), AndroidUtilities.dp(104)); - stickerView.setImageDrawable(drawable); addView(stickerView, LayoutHelper.createLinear(104, 104, Gravity.CENTER_HORIZONTAL | Gravity.TOP, 0, 2, 0, 0)); } @@ -165,13 +192,13 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen if (set == null) { set = MediaDataController.getInstance(currentAccount).getStickerSetByEmojiOrName(stickerSetName); } - if (set != null && set.documents.size() >= 34) { - TLRPC.Document document = set.documents.get(33); + if (set != null && set.documents.size() >= 4) { + TLRPC.Document document = set.documents.get(3); ImageLocation imageLocation = ImageLocation.getForDocument(document); - stickerView.setImage(imageLocation, "104_104", "tgs", drawable, set); + SvgHelper.SvgDrawable svgThumb = DocumentObject.getSvgThumb(document, Theme.key_windowBackgroundGray, 1.0f); + stickerView.setImage(imageLocation, "104_104", "tgs", svgThumb, set); } else { MediaDataController.getInstance(currentAccount).loadStickersByEmojiOrName(stickerSetName, false, set == null); - stickerView.setImageDrawable(drawable); } } @@ -199,93 +226,52 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen } } - public ManageLinksActivity(int chatId) { + public ManageLinksActivity(int chatId, int adminId, int invitesCount) { super(); - currentChatId = chatId; + this.invitesCount = invitesCount; currentChat = MessagesController.getInstance(currentAccount).getChat(chatId); isChannel = ChatObject.isChannel(currentChat) && !currentChat.megagroup; + if (adminId == 0) { + this.adminId = getAccountInstance().getUserConfig().clientUserId; + } else { + this.adminId = adminId; + } } boolean loadRevoked = false; private void loadLinks() { - TLRPC.TL_messages_getExportedChatInvites req = new TLRPC.TL_messages_getExportedChatInvites(); - req.peer = getMessagesController().getInputPeer(-currentChatId); - req.admin_id = getMessagesController().getInputUser(getUserConfig().getCurrentUser()); - - boolean revoked = loadRevoked; - if (loadRevoked) { - req.revoked = true; - if (!revokedInvites.isEmpty()) { - req.flags |= 4; - req.offset_link = revokedInvites.get(revokedInvites.size() - 1).link; - } - } else { - if (!invites.isEmpty()) { - req.flags |= 4; - req.offset_link = invites.get(invites.size() - 1).link; - } - } - - linksLoading = true; - TLRPC.TL_chatInviteExported inviteFinal = isPublic ? null : invite; - getConnectionsManager().sendRequest(req, (response, error) -> { - - TLRPC.TL_chatInviteExported permanentLink = null; - if (error == null) { - TLRPC.TL_messages_exportedChatInvites invites = (TLRPC.TL_messages_exportedChatInvites) response; - if (invites.invites.size() > 0 && inviteFinal != null) { - for (int i = 0; i < invites.invites.size(); i++) { - if (((TLRPC.TL_chatInviteExported) invites.invites.get(i)).link.equals(inviteFinal.link)) { - permanentLink = (TLRPC.TL_chatInviteExported) invites.invites.remove(i); - break; - } - } - } - } - - TLRPC.TL_chatInviteExported finalPermanentLink = permanentLink; - AndroidUtilities.runOnUIThread(() -> { - getNotificationCenter().doOnIdle(() -> { - linksLoading = false; - hasMore = false; - if (finalPermanentLink != null) { - invite = finalPermanentLink; - if (info != null) { - info.exported_invite = finalPermanentLink; - } - } - if (error == null) { - TLRPC.TL_messages_exportedChatInvites invites = (TLRPC.TL_messages_exportedChatInvites) response; - - if (revoked) { - for (int i = 0; i < invites.invites.size(); i++) { - TLRPC.TL_chatInviteExported in = (TLRPC.TL_chatInviteExported) invites.invites.get(i); - fixDate(in); - this.revokedInvites.add(in); + if (loadAdmins && !adminsLoaded) { + linksLoading = true; + TLRPC.TL_messages_getAdminsWithInvites req = new TLRPC.TL_messages_getAdminsWithInvites(); + req.peer = getMessagesController().getInputPeer(-currentChatId); + int reqId = getConnectionsManager().sendRequest(req, (response, error) -> { + AndroidUtilities.runOnUIThread(() -> { + getNotificationCenter().doOnIdle(() -> { + linksLoading = false; + if (error == null) { + TLRPC.TL_messages_chatAdminsWithInvites adminsWithInvites = (TLRPC.TL_messages_chatAdminsWithInvites) response; + for (int i = 0; i < adminsWithInvites.admins.size(); i++) { + TLRPC.TL_chatAdminWithInvites admin = adminsWithInvites.admins.get(i); + if (admin.admin_id != getAccountInstance().getUserConfig().clientUserId) { + admins.add(admin); + } } - } else { - for (int i = 0; i < invites.invites.size(); i++) { - TLRPC.TL_chatInviteExported in = (TLRPC.TL_chatInviteExported) invites.invites.get(i); - fixDate(in); - this.invites.add(in); + for (int i = 0; i < adminsWithInvites.users.size(); i++) { + TLRPC.User user = adminsWithInvites.users.get(i); + users.put(user.id, user); } - } - for (int i = 0; i < invites.users.size(); i++) { - users.put(invites.users.get(i).id, invites.users.get(i)); } int oldRowsCount = rowCount; - if (invites.invites.size() == 0) { - hasMore = false; - } else if (revoked) { - hasMore = this.revokedInvites.size() + 1 < invites.count; - } else { - hasMore = this.invites.size() + 1 < invites.count; - } - if (invites.invites.size() > 0 || loadRevoked) { - showItemsAnimated(oldRowsCount - 1); + adminsLoaded = true; + + hasMore = false; + if (admins.size() > 0) { + if (recyclerItemsEnterAnimator != null && !isPaused && isOpened) { + recyclerItemsEnterAnimator.showItemsAnimated(oldRowsCount + 1); + } } if (!hasMore && !loadRevoked) { @@ -294,14 +280,148 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen loadLinks(); } updateRows(true); - if (info != null && !revoked) { - info.invitesCount = invites.count; - getMessagesStorage().saveChatLinksCount(currentChatId, info.invitesCount); + if (!hasMore || (invites.size() + revokedInvites.size() + admins.size()) >= 5) { + resumeDelayedFragmentAnimation(); } - } + }); }); }); - }); + getConnectionsManager().bindRequestToGuid(reqId, getClassGuid()); + } else { + TLRPC.TL_messages_getExportedChatInvites req = new TLRPC.TL_messages_getExportedChatInvites(); + req.peer = getMessagesController().getInputPeer(-currentChatId); + if (adminId == getUserConfig().getClientUserId()) { + req.admin_id = getMessagesController().getInputUser(getUserConfig().getCurrentUser()); + } else { + req.admin_id = getMessagesController().getInputUser(adminId); + } + + boolean revoked = loadRevoked; + if (loadRevoked) { + req.revoked = true; + if (!revokedInvites.isEmpty()) { + req.flags |= 4; + req.offset_link = revokedInvites.get(revokedInvites.size() - 1).link; + req.offset_date = revokedInvites.get(revokedInvites.size() - 1).date; + } + } else { + if (!invites.isEmpty()) { + req.flags |= 4; + req.offset_link = invites.get(invites.size() - 1).link; + req.offset_date = invites.get(revokedInvites.size() - 1).date; + } + } + + linksLoading = true; + TLRPC.TL_chatInviteExported inviteFinal = isPublic ? null : invite; + int reqId = getConnectionsManager().sendRequest(req, (response, error) -> { + + TLRPC.TL_chatInviteExported permanentLink = null; + if (error == null) { + TLRPC.TL_messages_exportedChatInvites invites = (TLRPC.TL_messages_exportedChatInvites) response; + if (invites.invites.size() > 0 && inviteFinal != null) { + for (int i = 0; i < invites.invites.size(); i++) { + if (((TLRPC.TL_chatInviteExported) invites.invites.get(i)).link.equals(inviteFinal.link)) { + permanentLink = (TLRPC.TL_chatInviteExported) invites.invites.remove(i); + break; + } + } + } + } + + TLRPC.TL_chatInviteExported finalPermanentLink = permanentLink; + AndroidUtilities.runOnUIThread(() -> { + getNotificationCenter().doOnIdle(() -> { + linksLoading = false; + hasMore = false; + if (finalPermanentLink != null) { + invite = finalPermanentLink; + if (info != null) { + info.exported_invite = finalPermanentLink; + } + } + DiffCallback callback = saveListState(); + boolean updateByDiffUtils = false; + + if (error == null) { + TLRPC.TL_messages_exportedChatInvites invites = (TLRPC.TL_messages_exportedChatInvites) response; + + + if (revoked) { + for (int i = 0; i < invites.invites.size(); i++) { + TLRPC.TL_chatInviteExported in = (TLRPC.TL_chatInviteExported) invites.invites.get(i); + fixDate(in); + this.revokedInvites.add(in); + } + } else { + if (adminId != getAccountInstance().getUserConfig().clientUserId && this.invites.size() == 0 && invites.invites.size() > 0) { + invite = (TLRPC.TL_chatInviteExported) invites.invites.get(0); + invites.invites.remove(0); + } + for (int i = 0; i < invites.invites.size(); i++) { + TLRPC.TL_chatInviteExported in = (TLRPC.TL_chatInviteExported) invites.invites.get(i); + fixDate(in); + this.invites.add(in); + } + } + + for (int i = 0; i < invites.users.size(); i++) { + users.put(invites.users.get(i).id, invites.users.get(i)); + } + int oldRowsCount = rowCount; + if (invites.invites.size() == 0) { + hasMore = false; + } else if (revoked) { + hasMore = this.revokedInvites.size() + 1 < invites.count; + } else { + hasMore = this.invites.size() + 1 < invites.count; + } + if (invites.invites.size() > 0 && isOpened) { + if (recyclerItemsEnterAnimator != null && !isPaused) { + recyclerItemsEnterAnimator.showItemsAnimated(oldRowsCount + 1); + } + } else { + updateByDiffUtils = true; + } + if (info != null && !revoked) { + info.invitesCount = invites.count; + getMessagesStorage().saveChatLinksCount(currentChatId, info.invitesCount); + } + } else { + hasMore = false; + } + + boolean loadNext = false; + if (!hasMore && !loadRevoked && adminId == getAccountInstance().getUserConfig().clientUserId) { + hasMore = true; + loadAdmins = true; + loadNext = true; + } else if (!hasMore && !loadRevoked) { + hasMore = true; + loadRevoked = true; + loadNext = true; + } + + if (!hasMore || (invites.size() + revokedInvites.size() + admins.size()) >= 5) { + resumeDelayedFragmentAnimation(); + } + + if (loadNext) { + loadLinks(); + } + if (updateByDiffUtils && isOpened && listViewAdapter != null && listView.getChildCount() > 0) { + updateRows(false); + callback.fillPositions(callback.newPositionToItem); + DiffUtil.calculateDiff(callback).dispatchUpdatesTo(listViewAdapter); + AndroidUtilities.updateVisibleRows(listView); + } else { + updateRows(true); + } + }); + }); + }); + getConnectionsManager().bindRequestToGuid(reqId, getClassGuid()); + } } private void updateRows(boolean notify) { @@ -310,6 +430,8 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen return; } + creatorRow = -1; + creatorDividerRow = -1; linksStartRow = -1; linksEndRow = -1; linksLoadingRow = -1; @@ -321,14 +443,35 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen revokeAllRow = -1; revokeAllDivider = -1; createLinkHelpRow = -1; + helpRow = -1; + createNewLinkRow = -1; + adminsEndRow = -1; + adminsStartRow = -1; + adminsDividerRow = -1; + adminsHeaderRow = -1; + linksHeaderRow = -1; + dividerRow = -1; rowCount = 0; - helpRow = rowCount++; + boolean otherAdmin = adminId != getAccountInstance().getUserConfig().clientUserId; + if (otherAdmin) { + creatorRow = rowCount++; + creatorDividerRow = rowCount++; + } else { + helpRow = rowCount++; + } + permanentLinkHeaderRow = rowCount++; permanentLinkRow = rowCount++; - dividerRow = rowCount++; - createNewLinkRow = rowCount++; + + if (!otherAdmin) { + dividerRow = rowCount++; + createNewLinkRow = rowCount++; + } else if (!invites.isEmpty() || (linksLoading && !loadRevoked)) { + dividerRow = rowCount++; + linksHeaderRow = rowCount++; + } if (!invites.isEmpty()) { linksStartRow = rowCount; @@ -336,8 +479,28 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen linksEndRow = rowCount; } + if (!otherAdmin && invites.isEmpty() && createNewLinkRow >= 0 && (!linksLoading || loadAdmins || loadRevoked)) { + createLinkHelpRow = rowCount++; + } + + if (!otherAdmin && admins.size() > 0) { + if ((!invites.isEmpty() || createNewLinkRow >= 0) && createLinkHelpRow == -1) { + adminsDividerRow = rowCount++; + } + adminsHeaderRow = rowCount++; + adminsStartRow = rowCount; + rowCount += admins.size(); + adminsEndRow = rowCount; + } + if (!revokedInvites.isEmpty()) { - revokedDivider = rowCount++; + if (adminsStartRow >= 0) { + revokedDivider = rowCount++; + } else if ((!invites.isEmpty() || createNewLinkRow >= 0) && createLinkHelpRow == -1) { + revokedDivider = rowCount++; + } else if (otherAdmin && linksStartRow == -1) { + revokedDivider = rowCount++; + } revokedHeader = rowCount++; revokedLinksStartRow = rowCount; rowCount += revokedInvites.size(); @@ -346,14 +509,10 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen revokeAllRow = rowCount++; } - if (linksLoading || hasMore) { + if (!loadAdmins && !loadRevoked && (linksLoading || hasMore)) { linksLoadingRow = rowCount++; } - if (invites.isEmpty() && revokedInvites.isEmpty() && !linksLoading) { - createLinkHelpRow = rowCount++; - } - if (!invites.isEmpty() || !revokedInvites.isEmpty()) { lastDivider = rowCount++; } @@ -377,13 +536,31 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen } }); - fragmentView = new FrameLayout(context); + fragmentView = new FrameLayout(context) { + @Override + protected void onAttachedToWindow() { + super.onAttachedToWindow(); + AndroidUtilities.runOnUIThread(updateTimerRunnable, 500); + } + + @Override + protected void onDetachedFromWindow() { + super.onDetachedFromWindow(); + AndroidUtilities.cancelRunOnUIThread(updateTimerRunnable); + } + }; fragmentView.setBackgroundColor(Theme.getColor(Theme.key_windowBackgroundGray)); fragmentView.setTag(Theme.key_windowBackgroundGray); FrameLayout frameLayout = (FrameLayout) fragmentView; - listView = new RecyclerListView(context); + listView = new RecyclerListView(context) { + @Override + protected void dispatchDraw(Canvas canvas) { + recyclerItemsEnterAnimator.dispatchDraw(); + super.dispatchDraw(canvas); + } + }; LinearLayoutManager layoutManager = new LinearLayoutManager(context, LinearLayoutManager.VERTICAL, false); listView.setLayoutManager(layoutManager); listView.setAdapter(listViewAdapter = new ListAdapter(context)); @@ -399,6 +576,7 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen } } }); + recyclerItemsEnterAnimator = new RecyclerItemsEnterAnimator(listView); DefaultItemAnimator defaultItemAnimator = new DefaultItemAnimator(); defaultItemAnimator.setDelayAnimations(false); defaultItemAnimator.setSupportsChangeAnimations(false); @@ -407,17 +585,26 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen frameLayout.addView(listView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT)); listView.setOnItemClickListener((view, position) -> { - if (position == createNewLinkRow) { + if (position == creatorRow) { + TLRPC.User user = users.get(invite.admin_id); + if (user != null) { + Bundle bundle = new Bundle(); + bundle.putInt("user_id", user.id); + MessagesController.getInstance(UserConfig.selectedAccount).putUser(user, false); + ProfileActivity profileActivity = new ProfileActivity(bundle); + presentFragment(profileActivity); + } + } else if (position == createNewLinkRow) { LinkEditActivity linkEditActivity = new LinkEditActivity(LinkEditActivity.CREATE_TYPE, currentChatId); linkEditActivity.setCallback(linkEditActivityCallback); presentFragment(linkEditActivity); } else if (position >= linksStartRow && position < linksEndRow) { TLRPC.TL_chatInviteExported invite = invites.get(position - linksStartRow); - inviteLinkBottomSheet = new InviteLinkBottomSheet(context, invite, info, users, this, currentChatId, false); + inviteLinkBottomSheet = new InviteLinkBottomSheet(context, invite, info, users, this, currentChatId, false, isChannel); inviteLinkBottomSheet.show(); } else if (position >= revokedLinksStartRow && position < revokedLinksEndRow) { TLRPC.TL_chatInviteExported invite = revokedInvites.get(position - revokedLinksStartRow); - inviteLinkBottomSheet = new InviteLinkBottomSheet(context, invite, info, users, this, currentChatId, false); + inviteLinkBottomSheet = new InviteLinkBottomSheet(context, invite, info, users, this, currentChatId, false, isChannel); inviteLinkBottomSheet.show(); } else if (position == revokeAllRow) { if (deletingRevokedLinks) { @@ -430,6 +617,11 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen builder.setPositiveButton(LocaleController.getString("Delete", R.string.Delete), (dialogInterface2, i2) -> { TLRPC.TL_messages_deleteRevokedExportedChatInvites req = new TLRPC.TL_messages_deleteRevokedExportedChatInvites(); req.peer = getMessagesController().getInputPeer(-currentChatId); + if (adminId == getUserConfig().getClientUserId()) { + req.admin_id = getMessagesController().getInputUser(getUserConfig().getCurrentUser()); + } else { + req.admin_id = getMessagesController().getInputUser(adminId); + } deletingRevokedLinks = true; getConnectionsManager().sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { deletingRevokedLinks = false; @@ -444,6 +636,15 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen }); builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null); showDialog(builder.create()); + } else if (position >= adminsStartRow && position < adminsEndRow) { + int p = position - adminsStartRow; + TLRPC.TL_chatAdminWithInvites admin = admins.get(p); + if (users.containsKey(admin.admin_id)) { + getMessagesController().putUser(users.get(admin.admin_id), false); + } + ManageLinksActivity fragment = new ManageLinksActivity(currentChatId, admin.admin_id, admin.invites_count); + fragment.setInfo(info, null); + presentFragment(fragment); } }); listView.setOnItemLongClickListener((view, position) -> { @@ -497,7 +698,7 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen messageTextView.setTextColor(Theme.getColor(Theme.key_chats_message)); messageTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); messageTextView.setGravity(Gravity.CENTER); - messageTextView.setText(LocaleController.getString("PrimaryLinkHelp", R.string.PrimaryLinkHelp)); + messageTextView.setText(isChannel ? LocaleController.getString("PrimaryLinkHelpChannel", R.string.PrimaryLinkHelpChannel) : LocaleController.getString("PrimaryLinkHelp", R.string.PrimaryLinkHelp)); addView(messageTextView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.TOP | Gravity.LEFT, 52, 143, 52, 18)); } @@ -519,7 +720,9 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen @Override public boolean isEnabled(RecyclerView.ViewHolder holder) { int position = holder.getAdapterPosition(); - if (createNewLinkRow == position) { + if (creatorRow == position) { + return true; + } else if (createNewLinkRow == position) { return true; } else if (position >= linksStartRow && position < linksEndRow) { return true; @@ -527,6 +730,8 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen return true; } else if (position == revokeAllRow) { return true; + } else if (position >= adminsStartRow && position < adminsEndRow) { + return true; } return false; } @@ -550,7 +755,7 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen view.setBackgroundColor(Theme.getColor(Theme.key_windowBackgroundWhite)); break; case 2: - LinkActionView linkActionView = new LinkActionView(mContext, ManageLinksActivity.this, null, currentChatId, true); + LinkActionView linkActionView = new LinkActionView(mContext, ManageLinksActivity.this, null, currentChatId, true, isChannel); linkActionView.setPermanent(true); linkActionView.setDelegate(new LinkActionView.Delegate() { @Override @@ -560,7 +765,8 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen @Override public void showUsersForPermanentLink() { - inviteLinkBottomSheet = new InviteLinkBottomSheet(linkActionView.getContext(), invite, info, users, ManageLinksActivity.this, currentChatId, true); + boolean canEdit = adminId == getAccountInstance().getUserConfig().clientUserId; + inviteLinkBottomSheet = new InviteLinkBottomSheet(linkActionView.getContext(), invite, info, users, ManageLinksActivity.this, currentChatId, true, isChannel); inviteLinkBottomSheet.show(); } }); @@ -602,6 +808,11 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen cell.setBackground(Theme.getThemedDrawable(mContext, R.drawable.greydivider_bottom, Theme.key_windowBackgroundGrayShadow)); view = cell; break; + case 10: + ManageChatUserCell userCell = new ManageChatUserCell(mContext, 8, 6, false); + userCell.setBackgroundColor(Theme.getColor(Theme.key_windowBackgroundWhite)); + view = userCell; + break; } view.setLayoutParams(new RecyclerView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)); return new RecyclerListView.Holder(view); @@ -612,29 +823,41 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen switch (holder.getItemViewType()) { case 2: LinkActionView linkActionView = (LinkActionView) holder.itemView; - if (isPublic) { + linkActionView.setCanEdit(adminId == getAccountInstance().getUserConfig().clientUserId); + if (isPublic && adminId == getAccountInstance().getUserConfig().clientUserId) { if (info != null) { linkActionView.setLink("https://t.me/" + currentChat.username); linkActionView.setUsers(0, null); - linkActionView.setPublic(true); + linkActionView.showRevokeOption(true); } } else { - linkActionView.setPublic(false); + linkActionView.showRevokeOption(false); if (invite != null) { TLRPC.TL_chatInviteExported inviteExported = invite; linkActionView.setLink(inviteExported.link); linkActionView.loadUsers(inviteExported, currentChatId); } else { linkActionView.setLink(null); + linkActionView.loadUsers(null, currentChatId); } } break; case 1: HeaderCell headerCell = (HeaderCell) holder.itemView; if (position == permanentLinkHeaderRow) { - headerCell.setText(LocaleController.getString("ChannelLinkTitle", R.string.ChannelLinkTitle)); - } else { + if (isPublic && adminId == getAccountInstance().getUserConfig().clientUserId) { + headerCell.setText(LocaleController.getString("PublicLink", R.string.PublicLink)); + } else if (adminId == getAccountInstance().getUserConfig().clientUserId) { + headerCell.setText(LocaleController.getString("ChannelLinkTitle", R.string.ChannelLinkTitle)); + } else { + headerCell.setText(LocaleController.getString("PermanentLinkForThisAdmin", R.string.PermanentLinkForThisAdmin)); + } + } else if (position == revokedHeader) { headerCell.setText(LocaleController.getString("RevokedLinks", R.string.RevokedLinks)); + } else if (position == linksHeaderRow) { + headerCell.setText(LocaleController.getString("LinksCreatedByThisAdmin", R.string.LinksCreatedByThisAdmin)); + } else if (position == adminsHeaderRow) { + headerCell.setText(LocaleController.getString("LinksCreatedByOtherAdmins", R.string.LinksCreatedByOtherAdmins)); } break; case 3: @@ -645,18 +868,48 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen drawable2.setColorFilter(new PorterDuffColorFilter(Theme.getColor(Theme.key_checkboxCheck), PorterDuff.Mode.MULTIPLY)); CombinedDrawable combinedDrawable = new CombinedDrawable(drawable1, drawable2); - textCell.setTextAndIcon(LocaleController.getString("CreateNewLink", R.string.CreateNewLink), combinedDrawable, false); + textCell.setTextAndIcon(LocaleController.getString("CreateNewLink", R.string.CreateNewLink), combinedDrawable, !invites.isEmpty()); break; case 5: TLRPC.TL_chatInviteExported invite; + boolean drawDivider = true; if (position >= linksStartRow && position < linksEndRow) { invite = invites.get(position - linksStartRow); + if (position == linksEndRow - 1) { + drawDivider = false; + } } else { invite = revokedInvites.get(position - revokedLinksStartRow); + if (position == revokedLinksEndRow - 1) { + drawDivider = false; + } } LinkCell cell = (LinkCell) holder.itemView; cell.setLink(invite, position - linksStartRow); + cell.drawDivider = drawDivider; break; + case 10: + ManageChatUserCell userCell = (ManageChatUserCell) holder.itemView; + TLRPC.User user; + int count; + drawDivider = true; + if (position == creatorRow) { + user = getMessagesController().getUser(adminId); + count = invitesCount; + drawDivider = false; + } else { + int p = position - adminsStartRow; + TLRPC.TL_chatAdminWithInvites admin = admins.get(p); + user = users.get(admin.admin_id); + count = admin.invites_count; + if (position == adminsEndRow - 1) { + drawDivider = false; + } + } + + if (user != null) { + userCell.setData(user, ContactsController.formatName(user.first_name, user.last_name), LocaleController.formatPluralString("InviteLinkCount", count), drawDivider); + } } } @@ -671,13 +924,13 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen public int getItemViewType(int position) { if (position == helpRow) { return 0; - } else if (position == permanentLinkHeaderRow || position == revokedHeader) { + } else if (position == permanentLinkHeaderRow || position == revokedHeader || position == adminsHeaderRow || position == linksHeaderRow) { return 1; } else if (position == permanentLinkRow) { return 2; } else if (position == createNewLinkRow) { return 3; - } else if (position == dividerRow || position == revokedDivider || position == revokeAllDivider) { + } else if (position == dividerRow || position == revokedDivider || position == revokeAllDivider || position == creatorDividerRow || position == adminsDividerRow) { return 4; } else if ((position >= linksStartRow && position < linksEndRow) || (position >= revokedLinksStartRow && position < revokedLinksEndRow)) { return 5; @@ -689,48 +942,55 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen return 8; } else if (position == createLinkHelpRow) { return 9; + } else if (position == creatorRow || (position >= adminsStartRow && position < adminsEndRow)) { + return 10; } return 1; } } private void revokePermanent() { - TLRPC.TL_messages_exportChatInvite req = new TLRPC.TL_messages_exportChatInvite(); - req.peer = getMessagesController().getInputPeer(-currentChatId); - //req.legacy_revoke_permanent = true; TODO layer 124 - TLRPC.TL_chatInviteExported oldInvite = invite; - invite = null; - info.exported_invite = null; - listViewAdapter.notifyItemChanged(permanentLinkRow); - final int reqId = getConnectionsManager().sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { - if (error == null) { - invite = (TLRPC.TL_chatInviteExported) response; - if (info != null) { - info.exported_invite = invite; + if (adminId == getAccountInstance().getUserConfig().clientUserId) { + TLRPC.TL_messages_exportChatInvite req = new TLRPC.TL_messages_exportChatInvite(); + req.peer = getMessagesController().getInputPeer(-currentChatId); + req.legacy_revoke_permanent = true; + TLRPC.TL_chatInviteExported oldInvite = invite; + invite = null; + info.exported_invite = null; + final int reqId = getConnectionsManager().sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { + if (error == null) { + invite = (TLRPC.TL_chatInviteExported) response; + if (info != null) { + info.exported_invite = invite; + } + + if (getParentActivity() == null) { + return; + } + + oldInvite.revoked = true; + DiffCallback callback = saveListState(); + revokedInvites.add(0, oldInvite); + updateRows(false); + callback.fillPositions(callback.newPositionToItem); + DiffUtil.calculateDiff(callback).dispatchUpdatesTo(listViewAdapter); + AndroidUtilities.updateVisibleRows(listView); + BulletinFactory.of(this).createSimpleBulletin(R.raw.linkbroken, LocaleController.getString("InviteRevokedHint", R.string.InviteRevokedHint)).show(); } - if (getParentActivity() == null) { - return; - } - - listViewAdapter.notifyItemChanged(permanentLinkRow); - oldInvite.revoked = true; - DiffCallback callback = saveListState(); - revokedInvites.add(0, oldInvite); - updateRows(false); - callback.fillPositions(callback.newPositionToItem); - DiffUtil.calculateDiff(callback).dispatchUpdatesTo(listViewAdapter); - AndroidUtilities.updateVisibleRows(listView); - } - - })); - getConnectionsManager().bindRequestToGuid(reqId, classGuid); + })); + AndroidUtilities.updateVisibleRows(listView); + getConnectionsManager().bindRequestToGuid(reqId, classGuid); + } else { + revokeLink(invite); + } } public static class TextCell extends FrameLayout { private SimpleTextView textView; private ImageView imageView; + boolean divider; public TextCell(Context context) { super(context); @@ -745,6 +1005,7 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen imageView = new ImageView(context); imageView.setScaleType(ImageView.ScaleType.CENTER); addView(imageView); + setWillNotDraw(false); } @Override @@ -775,9 +1036,18 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen imageView.layout(viewLeft, 0, viewLeft + imageView.getMeasuredWidth(), imageView.getMeasuredHeight()); } + @Override + protected void onDraw(Canvas canvas) { + super.onDraw(canvas); + if (divider) { + canvas.drawLine(AndroidUtilities.dp(70), getMeasuredHeight() - 1, getMeasuredWidth(), getMeasuredHeight(), Theme.dividerPaint); + } + } + public void setTextAndIcon(String text, Drawable icon, boolean divider) { textView.setText(text); imageView.setImageDrawable(icon); + this.divider = divider; } } @@ -805,6 +1075,7 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen float animateToStateProgress = 1f; float lastDrawExpringProgress; boolean animateHideExpiring; + boolean drawDivider; public LinkCell(@NonNull Context context) { @@ -856,9 +1127,11 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen icons.add(R.drawable.baseline_forward_24); actions.add(1); - items.add(LocaleController.getString("Edit", R.string.Edit)); - icons.add(R.drawable.baseline_edit_24); - actions.add(2); + if (!invite.permanent) { + items.add(LocaleController.getString("Edit", R.string.Edit)); + icons.add(R.drawable.baseline_edit_24); + actions.add(2); + } items.add(LocaleController.getString("RevokeLink", R.string.RevokeLink)); icons.add(R.drawable.baseline_delete_24); @@ -924,7 +1197,9 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen builder.setTitle(LocaleController.getString("InviteLink", R.string.InviteLink)); AlertDialog alert = builder.create(); builder.show(); + //if (adminId == getAccountInstance().getUserConfig().getClientUserId()) { alert.setItemColor(items.size() - 1, Theme.getColor(Theme.key_dialogTextRed2), Theme.getColor(Theme.key_dialogRedIcon)); + // } }); optionsView.setBackground(Theme.createSelectorDrawable(Theme.getColor(Theme.key_listSelector), 1)); addView(optionsView, LayoutHelper.createFrame(40, 48, Gravity.RIGHT | Gravity.CENTER_VERTICAL)); @@ -934,6 +1209,7 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen setWillNotDraw(false); } + boolean timerRunning; @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { @@ -941,7 +1217,6 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen paint2.setStrokeWidth(AndroidUtilities.dp(2)); } - private TimerParticles timerParticles = new TimerParticles(); @Override @@ -955,18 +1230,27 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen int drawState; float progress = 0; + float timeProgress = 1f; if (invite.expired || invite.revoked) { drawState = invite.revoked ? LINK_STATE_GRAY : LINK_STATE_RED; - } else if (invite.expire_date > 0) { - long currentTime = System.currentTimeMillis() + timeDif * 1000L; - long expireTime = invite.expire_date * 1000L; - long date = (invite.start_date <= 0 ? invite.date : invite.start_date) * 1000L; - long from = currentTime - date; - long to = expireTime - date; - progress = (1f - from / (float) to); + } else if (invite.expire_date > 0 || invite.usage_limit > 0) { + float usageProgress = 1f; + if (invite.expire_date > 0) { + long currentTime = System.currentTimeMillis() + timeDif * 1000L; + long expireTime = invite.expire_date * 1000L; + long date = (invite.start_date <= 0 ? invite.date : invite.start_date) * 1000L; + long from = currentTime - date; + long to = expireTime - date; + timeProgress = (1f - from / (float) to); + } + if (invite.usage_limit > 0) { + usageProgress = (invite.usage_limit - invite.usage) / (float) invite.usage_limit; + } + progress = Math.min(timeProgress, usageProgress); if (progress <= 0) { invite.expired = true; drawState = LINK_STATE_RED; + AndroidUtilities.updateVisibleRows(listView); } else { drawState = LINK_STATE_GREEN; } @@ -1006,7 +1290,7 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen canvas.drawCircle(cX, cY, AndroidUtilities.dp(32) / 2f, paint); if (animateHideExpiring || (!invite.expired && invite.expire_date > 0 && !invite.revoked)) { if (animateHideExpiring) { - progress = lastDrawExpringProgress; + timeProgress = lastDrawExpringProgress; } paint2.setColor(color); @@ -1017,17 +1301,17 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen float a = (animateHideExpiring ? (1f - animateToStateProgress) : animateToStateProgress); float s = (float) (0.7 + 0.3f * a); canvas.scale(s, s, rectF.centerX(), rectF.centerY()); - canvas.drawArc(rectF, -90, -progress * 360, false, paint2); - timerParticles.draw(canvas, paint2, rectF, -progress * 360 , a); + canvas.drawArc(rectF, -90, -timeProgress * 360, false, paint2); + timerParticles.draw(canvas, paint2, rectF, -timeProgress * 360, a); canvas.restore(); } else { - canvas.drawArc(rectF, -90, -progress * 360, false, paint2); - timerParticles.draw(canvas, paint2, rectF, -progress * 360, 1f); + canvas.drawArc(rectF, -90, -timeProgress * 360, false, paint2); + timerParticles.draw(canvas, paint2, rectF, -timeProgress * 360, 1f); } if (!isPaused) { invalidate(); } - lastDrawExpringProgress = progress; + lastDrawExpringProgress = timeProgress; } if (invite.revoked) { @@ -1038,6 +1322,9 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen linkIcon.draw(canvas); } + if (drawDivider) { + canvas.drawLine(AndroidUtilities.dp(70), getMeasuredHeight() - 1, getMeasuredWidth(), getMeasuredHeight(), Theme.dividerPaint); + } } private boolean hasProgress(int state) { @@ -1052,19 +1339,20 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen float p = (progress - 0.5f) / 0.5f; return ColorUtils.blendARGB(Theme.getColor(Theme.key_chat_attachLocationBackground), Theme.getColor(Theme.key_chat_attachPollBackground), (1f - p)); } else { - float p = progress /0.5f; - return ColorUtils.blendARGB(Theme.getColor(Theme.key_chat_attachPollBackground),Theme.getColor(Theme.key_chat_attachAudioBackground), (1f - p)); + float p = progress / 0.5f; + return ColorUtils.blendARGB(Theme.getColor(Theme.key_chat_attachPollBackground), Theme.getColor(Theme.key_chat_attachAudioBackground), (1f - p)); } } else if (state == LINK_STATE_YELLOW) { return Theme.getColor(Theme.key_chat_attachPollBackground); } else if (state == LINK_STATE_GRAY) { - return Theme.getColor(Theme.key_windowBackgroundWhiteGrayIcon); + return Theme.getColor(Theme.key_chats_unreadCounterMuted); } else { return Theme.getColor(Theme.key_featuredStickers_addButton); } } public void setLink(TLRPC.TL_chatInviteExported invite, int position) { + timerRunning = false; if (this.invite == null || invite == null || !this.invite.link.equals(invite.link)) { lastDrawingState = -1; animateToStateProgress = 1f; @@ -1072,14 +1360,40 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen this.invite = invite; this.position = position; - if (invite.link.startsWith("https://")) { + if (invite == null) { + return; + } + + if (invite.link.startsWith("https://t.me/+")) { + titleView.setText(invite.link.substring("https://t.me/+".length())); + } else if (invite.link.startsWith("https://t.me/joinchat/")) { + titleView.setText(invite.link.substring("https://t.me/joinchat/".length())); + } else if (invite.link.startsWith("https://")) { titleView.setText(invite.link.substring("https://".length())); } else { titleView.setText(invite.link); } - String joinedString = invite.usage == 0 ? LocaleController.getString("NoOneJoinedYet", R.string.NoOneJoinedYet) : LocaleController.formatPluralString("PeopleJoined", invite.usage); - if (invite.expired || invite.revoked) { + String joinedString; + if (invite.usage == 0 && invite.usage_limit == 0) { + joinedString = LocaleController.getString("NoOneJoinedYet", R.string.NoOneJoinedYet); + } else { + if (invite.usage_limit > 0 && invite.usage == 0 && !invite.expired && !invite.revoked) { + joinedString = LocaleController.formatPluralString("CanJoin", invite.usage_limit); + } else if (invite.usage_limit > 0 && invite.expired && invite.revoked) { + joinedString = LocaleController.formatPluralString("PeopleJoined", invite.usage) + ", " + LocaleController.formatPluralString("PeopleJoinedRemaining", (invite.usage_limit - invite.usage)); + } else { + joinedString = LocaleController.formatPluralString("PeopleJoined", invite.usage); + } + } + if (invite.permanent && !invite.revoked) { + SpannableStringBuilder spannableStringBuilder = new SpannableStringBuilder(joinedString); + DotDividerSpan dotDividerSpan = new DotDividerSpan(); + dotDividerSpan.setTopPadding(AndroidUtilities.dp(1.5f)); + spannableStringBuilder.append(" . ").setSpan(dotDividerSpan, spannableStringBuilder.length() - 3, spannableStringBuilder.length() - 2, 0); + spannableStringBuilder.append(LocaleController.getString("Permanent", R.string.Permanent)); + subtitleView.setText(spannableStringBuilder); + } else if (invite.expired || invite.revoked) { if (invite.revoked && invite.usage == 0) { joinedString = LocaleController.getString("NoOneJoined", R.string.NoOneJoined); } @@ -1093,10 +1407,40 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen spannableStringBuilder.append(invite.revoked ? LocaleController.getString("Revoked", R.string.Revoked) : LocaleController.getString("Expired", R.string.Expired)); } subtitleView.setText(spannableStringBuilder); + } else if (invite.expire_date > 0) { + SpannableStringBuilder spannableStringBuilder = new SpannableStringBuilder(joinedString); + DotDividerSpan dotDividerSpan = new DotDividerSpan(); + dotDividerSpan.setTopPadding(AndroidUtilities.dp(1.5f)); + spannableStringBuilder.append(" . ").setSpan(dotDividerSpan, spannableStringBuilder.length() - 3, spannableStringBuilder.length() - 2, 0); + + + long currentTime = System.currentTimeMillis() + timeDif * 1000L; + long expireTime = invite.expire_date * 1000L; + + long timeLeft = expireTime - currentTime; + if (timeLeft < 0) { + timeLeft = 0; + } + if (timeLeft > 86400000L) { + spannableStringBuilder.append(LocaleController.formatPluralString("DaysLeft", (int) (timeLeft / 86400000L))); + } else { + int s = (int) ((timeLeft / 1000) % 60); + int m = (int) ((timeLeft / 1000 / 60) % 60); + int h = (int) ((timeLeft / 1000 / 60 / 60)); + spannableStringBuilder.append(String.format(Locale.ENGLISH, "%02d", h)).append(String.format(Locale.ENGLISH, ":%02d", m)).append(String.format(Locale.ENGLISH, ":%02d", s)); + timerRunning = true; + } + subtitleView.setText(spannableStringBuilder); } else { subtitleView.setText(joinedString); } +// if (adminId != getAccountInstance().getUserConfig().getClientUserId() && invite.revoked) { +// optionsView.setVisibility(View.GONE); +// } else { +// optionsView.setVisibility(View.VISIBLE); +// } + // if (invite.revoked) { // optionsView.setVisibility(View.GONE); // } else { @@ -1109,17 +1453,11 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen TLRPC.TL_messages_deleteExportedChatInvite req = new TLRPC.TL_messages_deleteExportedChatInvite(); req.link = invite.link; req.peer = getMessagesController().getInputPeer(-currentChatId); - TLRPC.TL_chatInviteExported inviteFinal = invite; - getConnectionsManager().sendRequest(req, new RequestDelegate() { - @Override - public void run(TLObject response, TLRPC.TL_error error) { - AndroidUtilities.runOnUIThread(() -> { - if (error == null) { - linkEditActivityCallback.onLinkRemoved(inviteFinal); - } - }); + getConnectionsManager().sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { + if (error == null) { + linkEditActivityCallback.onLinkRemoved(invite); } - }); + })); } public void editLink(TLRPC.TL_chatInviteExported invite) { @@ -1134,81 +1472,45 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen req.link = invite.link; req.revoked = true; req.peer = getMessagesController().getInputPeer(-currentChatId); - TLRPC.TL_chatInviteExported inviteFinal = invite; getConnectionsManager().sendRequest(req, (response, error) -> AndroidUtilities.runOnUIThread(() -> { if (error == null) { - linkEditActivityCallback.onLinkEdited(inviteFinal, response); - if (info != null) { - info.invitesCount--; - if (info.invitesCount < 0) { - info.invitesCount = 0; + if (response instanceof TLRPC.TL_messages_exportedChatInviteReplaced) { + TLRPC.TL_messages_exportedChatInviteReplaced replaced = (TLRPC.TL_messages_exportedChatInviteReplaced) response; + if (!isPublic) { + ManageLinksActivity.this.invite = (TLRPC.TL_chatInviteExported) replaced.new_invite; + } + + invite.revoked = true; + DiffCallback callback = saveListState(); + if (isPublic) { + invites.remove(invite); + invites.add(0, (TLRPC.TL_chatInviteExported) replaced.new_invite); + } + revokedInvites.add(0, invite); + updateRows(false); + + if (getParentActivity() == null) { + listViewAdapter.notifyDataSetChanged(); + return; + } + callback.fillPositions(callback.newPositionToItem); + DiffUtil.calculateDiff(callback).dispatchUpdatesTo(listViewAdapter); + AndroidUtilities.updateVisibleRows(listView); + } else { + linkEditActivityCallback.onLinkEdited(invite, response); + if (info != null) { + info.invitesCount--; + if (info.invitesCount < 0) { + info.invitesCount = 0; + } + getMessagesStorage().saveChatLinksCount(currentChatId, info.invitesCount); } - getMessagesStorage().saveChatLinksCount(currentChatId, info.invitesCount); } + BulletinFactory.of(this).createSimpleBulletin(R.raw.linkbroken, LocaleController.getString("InviteRevokedHint", R.string.InviteRevokedHint)).show(); } })); } - private void showItemsAnimated(int from) { - if (isPaused || listView == null) { - return; - } - View progressView = null; - for (int i = 0; i < listView.getChildCount(); i++) { - View child = listView.getChildAt(i); - if (listView.getChildAdapterPosition(child) >= 0 && child instanceof FlickerLoadingView) { - progressView = child; - } - } - final View finalProgressView = progressView; - if (finalProgressView != null) { - listView.removeView(finalProgressView); - } - - listView.invalidate(); - if (finalProgressView != null && finalProgressView.getParent() == null) { - RecyclerView.LayoutManager layoutManager = listView.getLayoutManager(); - listView.addView(finalProgressView); - if (layoutManager != null) { - layoutManager.ignoreView(finalProgressView); - Animator animator = ObjectAnimator.ofFloat(finalProgressView, View.ALPHA, finalProgressView.getAlpha(), 0); - animator.addListener(new AnimatorListenerAdapter() { - @Override - public void onAnimationEnd(Animator animation) { - finalProgressView.setAlpha(1f); - layoutManager.stopIgnoringView(finalProgressView); - listView.removeView(finalProgressView); - } - }); - animator.start(); - } - } - listView.getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() { - @Override - public boolean onPreDraw() { - listView.getViewTreeObserver().removeOnPreDrawListener(this); - int n = listView.getChildCount(); - AnimatorSet animatorSet = new AnimatorSet(); - for (int i = 0; i < n; i++) { - View child = listView.getChildAt(i); - if (child == finalProgressView || listView.getChildAdapterPosition(child) < from) { - continue; - } - child.setAlpha(0); - int s = Math.min(listView.getMeasuredHeight(), Math.max(0, child.getTop())); - int delay = (int) ((s / (float) listView.getMeasuredHeight()) * 100); - ObjectAnimator a = ObjectAnimator.ofFloat(child, View.ALPHA, 0, 1f); - a.setStartDelay(delay); - a.setDuration(200); - animatorSet.playTogether(a); - } - - animatorSet.start(); - return false; - } - }); - } - private final LinkEditActivity.Callback linkEditActivityCallback = new LinkEditActivity.Callback() { @Override public void onLinkCreated(TLObject response) { @@ -1282,6 +1584,8 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen int oldLinksEndRow; int oldRevokedLinksStartRow; int oldRevokedLinksEndRow; + int oldAdminsStartRow; + int oldAdminsEndRow; SparseIntArray oldPositionToItem = new SparseIntArray(); SparseIntArray newPositionToItem = new SparseIntArray(); @@ -1318,6 +1622,9 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen return oldItem.link.equals(newItem.link); } } + if (oldItemPosition >= oldAdminsStartRow && oldItemPosition < oldAdminsEndRow && newItemPosition >= adminsStartRow && newItemPosition < adminsEndRow) { + return (oldItemPosition - oldAdminsStartRow) == (newItemPosition - adminsStartRow); + } int oldItem = oldPositionToItem.get(oldItemPosition, -1); int newItem = newPositionToItem.get(newItemPosition, -1); return oldItem >= 0 && oldItem == newItem; @@ -1343,6 +1650,12 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen put(++pointer, revokeAllDivider, sparseIntArray); put(++pointer, revokeAllRow, sparseIntArray); put(++pointer, createLinkHelpRow, sparseIntArray); + put(++pointer, creatorRow, sparseIntArray); + put(++pointer, creatorDividerRow, sparseIntArray); + put(++pointer, adminsHeaderRow, sparseIntArray); + put(++pointer, adminsDividerRow, sparseIntArray); + put(++pointer, linksHeaderRow, sparseIntArray); + put(++pointer, linksLoadingRow, sparseIntArray); } private void put(int id, int position, SparseIntArray sparseIntArray) { @@ -1359,6 +1672,8 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen callback.oldLinksEndRow = linksEndRow; callback.oldRevokedLinksStartRow = revokedLinksStartRow; callback.oldRevokedLinksEndRow = revokedLinksEndRow; + callback.oldAdminsStartRow = adminsStartRow; + callback.oldAdminsEndRow = adminsEndRow; callback.oldRowCount = rowCount; callback.oldLinks.clear(); callback.oldLinks.addAll(invites); @@ -1431,7 +1746,7 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen themeDescriptions.add(new ThemeDescription(listView, 0, new Class[]{HintInnerCell.class}, new String[]{"messageTextView"}, null, null, null, Theme.key_chats_message)); themeDescriptions.add(new ThemeDescription(listView, ThemeDescription.FLAG_CHECKTAG, new Class[]{ManageChatTextCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlackText)); - themeDescriptions.add(new ThemeDescription(listView, ThemeDescription.FLAG_CHECKTAG, new Class[]{ManageChatTextCell.class}, new String[]{"imageView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayIcon)); + themeDescriptions.add(new ThemeDescription(listView, ThemeDescription.FLAG_CHECKTAG, new Class[]{ManageChatTextCell.class}, new String[]{"imageView"}, null, null, null, Theme.key_chats_unreadCounterMuted)); themeDescriptions.add(new ThemeDescription(listView, ThemeDescription.FLAG_CHECKTAG, new Class[]{ManageChatTextCell.class}, new String[]{"imageView"}, null, null, null, Theme.key_windowBackgroundWhiteBlueButton)); themeDescriptions.add(new ThemeDescription(listView, ThemeDescription.FLAG_CHECKTAG, new Class[]{ManageChatTextCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlueIcon)); @@ -1445,4 +1760,17 @@ public class ManageLinksActivity extends BaseFragment implements NotificationCen themeDescriptions.add(new ThemeDescription(listView, ThemeDescription.FLAG_IMAGECOLOR, new Class[]{LinkCell.class}, new String[]{"optionsView"}, null, null, null, Theme.key_dialogTextGray3)); return themeDescriptions; } + + @Override + public boolean needDelayOpenAnimation() { + return true; + } + + @Override + protected void onTransitionAnimationEnd(boolean isOpen, boolean backward) { + super.onTransitionAnimationEnd(isOpen, backward); + if (isOpen) { + isOpened = true; + } + } } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/MediaActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/MediaActivity.java index db558e137..4b7ec49db 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/MediaActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/MediaActivity.java @@ -1888,7 +1888,7 @@ public class MediaActivity extends BaseFragment implements NotificationCenter.No ((SharedAudioCell) view).setChecked(true, true); } if (!actionBar.isActionModeShowed()) { - actionBar.showActionMode(null, actionModeBackground, null, null, null, 0); + actionBar.showActionMode(true, null, actionModeBackground, null, null, null, 0); resetScroll(); } return true; diff --git a/TMessagesProj/src/main/java/org/telegram/ui/PasscodeActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/PasscodeActivity.java index 7ae910b1f..7cb7a8780 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/PasscodeActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/PasscodeActivity.java @@ -8,7 +8,9 @@ package org.telegram.ui; +import android.app.Activity; import android.content.Context; +import android.content.SharedPreferences; import android.content.res.Configuration; import android.graphics.PorterDuff; import android.graphics.PorterDuffColorFilter; @@ -19,6 +21,7 @@ import android.os.Build; import android.text.Editable; import android.text.InputFilter; import android.text.InputType; +import android.text.SpannableStringBuilder; import android.text.TextUtils; import android.text.TextWatcher; import android.text.method.DigitsKeyListener; @@ -607,6 +610,7 @@ public class PasscodeActivity extends BaseFragment implements NotificationCenter private class ListAdapter extends RecyclerListView.SelectionAdapter { private Context mContext; + private Boolean hasWidgets; public ListAdapter(Context context) { mContext = context; @@ -688,7 +692,15 @@ public class PasscodeActivity extends BaseFragment implements NotificationCenter case 2: { TextInfoPrivacyCell cell = (TextInfoPrivacyCell) holder.itemView; if (position == passcodeDetailRow) { - cell.setText(LocaleController.getString("ChangePasscodeInfo", R.string.ChangePasscodeInfo)); + SpannableStringBuilder stringBuilder = new SpannableStringBuilder(LocaleController.getString("ChangePasscodeInfo", R.string.ChangePasscodeInfo)); + if (hasWidgets == null) { + SharedPreferences preferences = mContext.getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE); + hasWidgets = !preferences.getAll().isEmpty(); + } + if (hasWidgets) { + stringBuilder.append(AndroidUtilities.replaceTags(LocaleController.getString("WidgetPasscodeEnable", R.string.WidgetPasscodeEnable))); + } + cell.setText(stringBuilder); if (autoLockDetailRow != -1) { cell.setBackgroundDrawable(Theme.getThemedDrawable(mContext, R.drawable.greydivider, Theme.key_windowBackgroundGrayShadow)); } else { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/PhotoViewer.java b/TMessagesProj/src/main/java/org/telegram/ui/PhotoViewer.java index 9154120a0..8e37f16be 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/PhotoViewer.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/PhotoViewer.java @@ -203,6 +203,7 @@ import org.telegram.ui.Components.PhotoPaintView; import org.telegram.ui.Components.PhotoViewerCaptionEnterView; import org.telegram.ui.Components.PickerBottomLayoutViewer; import org.telegram.ui.Components.PipVideoView; +import org.telegram.ui.Components.PlayPauseDrawable; import org.telegram.ui.Components.RLottieDrawable; import org.telegram.ui.Components.RadialProgressView; import org.telegram.ui.Components.RecyclerListView; @@ -1323,6 +1324,9 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat private float scale = 1.0f; private boolean visible; + private final CombinedDrawable playDrawable; + private final PlayPauseDrawable playPauseDrawable; + public PhotoProgressView(View parentView) { if (decelerateInterpolator == null) { decelerateInterpolator = new DecelerateInterpolator(1.5f); @@ -1334,6 +1338,12 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat } parent = parentView; resetAlphas(); + + playPauseDrawable = new PlayPauseDrawable(28); + playPauseDrawable.setDuration(200); + + final Drawable circleDrawable = ContextCompat.getDrawable(parentActivity, R.drawable.circle_big); + playDrawable = new CombinedDrawable(circleDrawable.mutate(), playPauseDrawable); } private void updateAnimation(boolean withProgressAnimation) { @@ -1404,6 +1414,16 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat if (backgroundState == state) { return; } + if (playPauseDrawable != null) { + boolean animateIcon = backgroundState == 3 || backgroundState == 4; + if (state == 3) { + playPauseDrawable.setPause(false, animateIcon); + } else if (state == 4) { + playPauseDrawable.setPause(true, animateIcon); + } + playPauseDrawable.setParent(parent); + playPauseDrawable.invalidateSelf(); + } lastUpdateTime = System.currentTimeMillis(); if (animated && backgroundState != state) { previousBackgroundState = backgroundState; @@ -1497,8 +1517,13 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat final float alpha = calculateAlpha(); - if (previousBackgroundState >= 0 && previousBackgroundState < progressDrawables.length) { - Drawable drawable = progressDrawables[previousBackgroundState]; + if (previousBackgroundState >= 0 && previousBackgroundState < progressDrawables.length + 2) { + Drawable drawable; + if (previousBackgroundState < progressDrawables.length) { + drawable = progressDrawables[previousBackgroundState]; + } else { + drawable = playDrawable; + } if (drawable != null) { drawable.setAlpha((int) (255 * animatedAlphaValue * alpha)); drawable.setBounds(x, y, x + sizeScaled, y + sizeScaled); @@ -1506,8 +1531,13 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat } } - if (backgroundState >= 0 && backgroundState < progressDrawables.length) { - Drawable drawable = progressDrawables[backgroundState]; + if (backgroundState >= 0 && backgroundState < progressDrawables.length + 2) { + Drawable drawable; + if (backgroundState < progressDrawables.length) { + drawable = progressDrawables[backgroundState]; + } else { + drawable = playDrawable; + } if (drawable != null) { if (previousBackgroundState != -2) { drawable.setAlpha((int) (255 * (1.0f - animatedAlphaValue) * alpha)); @@ -1865,7 +1895,7 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat } @Override - protected void onTransitionStart(boolean keyboardVisible) { + protected void onTransitionStart(boolean keyboardVisible, int contentHeight) { windowView.setClipChildren(false); if (captionEditText.getTag() != null && keyboardVisible) { if (isCurrentVideo) { @@ -1885,6 +1915,7 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat if (lastTitle != null) { if (!isCurrentVideo) { actionBar.setTitleAnimated(lastTitle, false, 220); + lastTitle = null; } } } @@ -1912,7 +1943,6 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat setClipChildren(false); setClipToPadding(false); paint.setColor(0x33000000); - } @Override @@ -2147,7 +2177,13 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat @Override protected boolean drawChild(Canvas canvas, View child, long drawingTime) { if (child == mentionListView || child == captionEditText) { - if (currentEditMode != 0 || !captionEditText.isPopupShowing() && captionEditText.getEmojiPadding() == 0 && (AndroidUtilities.usingHardwareInput && captionEditText.getTag() == null || getKeyboardHeight() == 0)) { + if (currentEditMode != 0 && currentPanTranslationY == 0) { + return false; + } else if (AndroidUtilities.isInMultiwindow || AndroidUtilities.usingHardwareInput) { + if (!captionEditText.isPopupShowing() && captionEditText.getEmojiPadding() == 0 && captionEditText.getTag() == null) { + return false; + } + } else if (!captionEditText.isPopupShowing() && captionEditText.getEmojiPadding() == 0 && getKeyboardHeight() == 0) { if (currentPanTranslationY == 0) { return false; } @@ -2165,7 +2201,7 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat bottomTouchEnabled = false; } else { int paddingBottom = getKeyboardHeight() <= AndroidUtilities.dp(20) && !AndroidUtilities.isInMultiwindow ? captionEditText.getEmojiPadding() : 0; - if (captionEditText.isPopupShowing() || AndroidUtilities.usingHardwareInput && captionEditText.getTag() != null || getKeyboardHeight() > AndroidUtilities.dp(80) || paddingBottom != 0) { + if (captionEditText.isPopupShowing() || (AndroidUtilities.isInMultiwindow || AndroidUtilities.usingHardwareInput) && captionEditText.getTag() != null || getKeyboardHeight() > AndroidUtilities.dp(80) || paddingBottom != 0) { bottomTouchEnabled = false; return false; } else { @@ -3153,6 +3189,57 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat preparePlayer(Uri.fromFile(new File(finalPath)), false, true, editState.savedFilterState); } } + } else if (id == NotificationCenter.messagesDeleted) { + boolean scheduled = (Boolean) args[2]; + if (scheduled) { + return; + } + int channelId = (Integer) args[1]; + ArrayList markAsDeletedMessages = (ArrayList) args[0]; + boolean reset = false; + for (int x = 0; x < 2; x++) { + ArrayList arr = x == 0 ? imagesArr : imagesArrTemp; + SparseArray[] ids = x == 0 ? imagesByIds : imagesByIdsTemp; + if (!arr.isEmpty()) { + for (int b = 0; b < 2; b++) { + if (ids[b].size() > 0) { + MessageObject messageObject = ids[b].valueAt(0); + if (messageObject.messageOwner.peer_id.channel_id == channelId) { + for (int a = 0, N = markAsDeletedMessages.size(); a < N; a++) { + int mid = markAsDeletedMessages.get(a); + MessageObject message = ids[b].get(markAsDeletedMessages.get(a)); + if (message != null) { + ids[b].remove(mid); + arr.remove(message); + if (b == 0) { + totalImagesCount--; + } else { + totalImagesCountMerge--; + } + reset = true; + } + } + } + } + } + } + } + if (reset) { + if (this == PipInstance) { + destroyPhotoViewer(); + } else { + if (!imagesArr.isEmpty()) { + int index = currentIndex; + currentIndex = -1; + if (index >= imagesArr.size()) { + index = imagesArr.size() - 1; + } + setImageIndex(index); + } else { + closePhoto(false, false); + } + } + } } } @@ -3263,14 +3350,10 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat if (progressDrawables == null) { final Drawable circleDrawable = ContextCompat.getDrawable(parentActivity, R.drawable.circle_big); - final CombinedDrawable playDrawable = new CombinedDrawable(circleDrawable.mutate(), ContextCompat.getDrawable(parentActivity, R.drawable.video_play1)); - final CombinedDrawable pauseDrawable = new CombinedDrawable(circleDrawable.mutate(), ContextCompat.getDrawable(parentActivity, R.drawable.video_pause1)); progressDrawables = new Drawable[]{ circleDrawable, // PROGRESS_EMPTY ContextCompat.getDrawable(parentActivity, R.drawable.cancel_big), // PROGRESS_CANCEL ContextCompat.getDrawable(parentActivity, R.drawable.load_big), // PROGRESS_LOAD - playDrawable, // PROGRESS_PLAY - pauseDrawable // PROGRESS_PAUSE }; } @@ -3457,6 +3540,7 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat containerView = new FrameLayoutDrawer(activity); containerView.setFocusable(false); + windowView.addView(containerView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, Gravity.TOP | Gravity.LEFT)); if (Build.VERSION.SDK_INT >= 21) { containerView.setFitsSystemWindows(true); @@ -5429,7 +5513,7 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat @Override public void onTextChanged(CharSequence text) { if (mentionsAdapter != null && captionEditText != null && parentChatActivity != null && text != null) { - mentionsAdapter.searchUsernameOrHashtag(text.toString(), captionEditText.getCursorPosition(), parentChatActivity.messages, false); + mentionsAdapter.searchUsernameOrHashtag(text.toString(), captionEditText.getCursorPosition(), parentChatActivity.messages, false, false); } int color = Theme.getColor(Theme.key_dialogFloatingIcon); if (captionEditText.getCaptionLimitOffset() < 0) { @@ -5679,6 +5763,9 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat } private void showScheduleDatePickerDialog() { + if (parentChatActivity == null) { + return; + } final AlertsCreator.ScheduleDatePickerColors colors = new AlertsCreator.ScheduleDatePickerColors(0xffffffff, 0xff252525, 0xffffffff, 0x1effffff, 0xffffffff, 0xf9222222, 0x24ffffff); AlertsCreator.createScheduleDatePickerDialog(parentActivity, parentChatActivity.getDialogId(), this::sendPressed, colors); } @@ -6596,7 +6683,7 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat private boolean isAccessibilityEnabled() { try { AccessibilityManager am = (AccessibilityManager) activityContext.getSystemService(Context.ACCESSIBILITY_SERVICE); - return am.isEnabled(); + return am.isEnabled() && am.isTouchExplorationEnabled(); } catch (Exception e) { FileLog.e(e); } @@ -9048,7 +9135,7 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat return ImageLocation.getForDocument(message.getDocument()); } else { TLRPC.FileLocation location; - TLRPC.PhotoSize sizeFull = FileLoader.getClosestPhotoSizeWithSize(message.photoThumbs, AndroidUtilities.getPhotoSize()); + TLRPC.PhotoSize sizeFull = FileLoader.getClosestPhotoSizeWithSize(message.photoThumbs, AndroidUtilities.getPhotoSize(), false, null, true); if (sizeFull != null) { if (size != null) { size[0] = sizeFull.size; @@ -9126,7 +9213,7 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat } } else if (message.messageOwner.media instanceof TLRPC.TL_messageMediaPhoto && message.messageOwner.media.photo != null || message.messageOwner.media instanceof TLRPC.TL_messageMediaWebPage && message.messageOwner.media.webpage != null) { TLRPC.FileLocation location; - TLRPC.PhotoSize sizeFull = FileLoader.getClosestPhotoSizeWithSize(message.photoThumbs, AndroidUtilities.getPhotoSize()); + TLRPC.PhotoSize sizeFull = FileLoader.getClosestPhotoSizeWithSize(message.photoThumbs, AndroidUtilities.getPhotoSize(), false, null, true); if (sizeFull != null) { if (size != null) { size[0] = sizeFull.size; @@ -9820,15 +9907,14 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat allowShare = true; menuItem.showSubItem(gallery_menu_save); menuItem.showSubItem(gallery_menu_scan); - shareButton.setVisibility(!videoPlayerControlVisible ? View.VISIBLE : View.GONE); - if (shareButton.getVisibility() == View.VISIBLE) { - paintButton.setVisibility(!isVideo && canSendMediaToParentChatActivity() ? View.VISIBLE : View.GONE); - bottomButtonsLayout.setVisibility(!videoPlayerControlVisible ? View.VISIBLE : View.GONE); - if (bottomButtonsLayout.getVisibility() == View.VISIBLE) { - menuItem.hideSubItem(gallery_menu_share); - } else { - menuItem.showSubItem(gallery_menu_share); - } + + boolean canPaint = newMessageObject.getDocument() == null || newMessageObject.canPreviewDocument() || newMessageObject.getMimeType().startsWith("video/"); + paintButton.setVisibility(canPaint && canSendMediaToParentChatActivity() ? View.VISIBLE : View.GONE); + bottomButtonsLayout.setVisibility(!videoPlayerControlVisible ? View.VISIBLE : View.GONE); + if (bottomButtonsLayout.getVisibility() == View.VISIBLE) { + menuItem.hideSubItem(gallery_menu_share); + } else { + menuItem.showSubItem(gallery_menu_share); } } groupedPhotosListView.fillList(); @@ -10146,6 +10232,7 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat groupedPhotosListView.fillList(); pageBlocksAdapter.updateSlideshowCell(pageBlock); } + setCurrentCaption(newMessageObject, caption, animateCaption); } @@ -11431,15 +11518,15 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat } if (photoEntry.isVideo) { if (videoEditedInfo != null) { - SendMessagesHelper.prepareSendingVideo(parentChatActivity.getAccountInstance(), photoEntry.path, videoEditedInfo, parentChatActivity.getDialogId(), null, parentChatActivity.getThreadMessage(), photoEntry.caption, photoEntry.entities, photoEntry.ttl, editingMessageObject, notify, scheduleDate); + SendMessagesHelper.prepareSendingVideo(parentChatActivity.getAccountInstance(), photoEntry.path, videoEditedInfo, parentChatActivity.getDialogId(), parentChatActivity.getReplyMessage(), parentChatActivity.getThreadMessage(), photoEntry.caption, photoEntry.entities, photoEntry.ttl, editingMessageObject, notify, scheduleDate); } else { - SendMessagesHelper.prepareSendingVideo(parentChatActivity.getAccountInstance(), photoEntry.path, null, parentChatActivity.getDialogId(), null, parentChatActivity.getThreadMessage(), photoEntry.caption, photoEntry.entities, photoEntry.ttl, editingMessageObject, notify, scheduleDate); + SendMessagesHelper.prepareSendingVideo(parentChatActivity.getAccountInstance(), photoEntry.path, null, parentChatActivity.getDialogId(), parentChatActivity.getReplyMessage(), parentChatActivity.getThreadMessage(), photoEntry.caption, photoEntry.entities, photoEntry.ttl, editingMessageObject, notify, scheduleDate); } } else { if (photoEntry.imagePath != null) { - SendMessagesHelper.prepareSendingPhoto(parentChatActivity.getAccountInstance(), photoEntry.imagePath, photoEntry.thumbPath, null, parentChatActivity.getDialogId(), null, parentChatActivity.getThreadMessage(), photoEntry.caption, photoEntry.entities, photoEntry.stickers, null, photoEntry.ttl, editingMessageObject, videoEditedInfo, notify, scheduleDate); + SendMessagesHelper.prepareSendingPhoto(parentChatActivity.getAccountInstance(), photoEntry.imagePath, photoEntry.thumbPath, null, parentChatActivity.getDialogId(), parentChatActivity.getReplyMessage(), parentChatActivity.getThreadMessage(), photoEntry.caption, photoEntry.entities, photoEntry.stickers, null, photoEntry.ttl, editingMessageObject, videoEditedInfo, notify, scheduleDate); } else if (photoEntry.path != null) { - SendMessagesHelper.prepareSendingPhoto(parentChatActivity.getAccountInstance(), photoEntry.path, photoEntry.thumbPath, null, parentChatActivity.getDialogId(), null, parentChatActivity.getThreadMessage(), photoEntry.caption, photoEntry.entities, photoEntry.stickers, null, photoEntry.ttl, editingMessageObject, videoEditedInfo, notify, scheduleDate); + SendMessagesHelper.prepareSendingPhoto(parentChatActivity.getAccountInstance(), photoEntry.path, photoEntry.thumbPath, null, parentChatActivity.getDialogId(), parentChatActivity.getReplyMessage(), parentChatActivity.getThreadMessage(), photoEntry.caption, photoEntry.entities, photoEntry.stickers, null, photoEntry.ttl, editingMessageObject, videoEditedInfo, notify, scheduleDate); } } } @@ -11575,15 +11662,18 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat doneButtonPressed = false; allowShowFullscreenButton = true; parentChatActivity = chatActivity; + lastTitle = null; actionBar.setTitle(LocaleController.formatString("Of", R.string.Of, 1, 1)); actionBar.setTitleScrollNonFitText(false); + NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.fileDidFailToLoad); NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.fileDidLoad); NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.FileLoadProgressChanged); NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.mediaCountDidLoad); NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.mediaDidLoad); NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.dialogPhotosLoaded); + NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.messagesDeleted); NotificationCenter.getGlobalInstance().addObserver(this, NotificationCenter.emojiDidLoad); NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.filePreparingFailed); NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.fileNewChunkAvailable); @@ -12298,6 +12388,7 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.mediaCountDidLoad); NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.mediaDidLoad); NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.dialogPhotosLoaded); + NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.messagesDeleted); NotificationCenter.getGlobalInstance().removeObserver(this, NotificationCenter.emojiDidLoad); NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.filePreparingFailed); NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.fileNewChunkAvailable); @@ -13044,6 +13135,7 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat currentScale = ts; currentTranslationY = ty; currentTranslationX = tx; + updateMinMax(currentScale); containerView.invalidate(); } else { if (animationStartTime != 0) { @@ -13089,14 +13181,26 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat } if (isActionBarVisible) { - if (scale <= 1.0001f) { + if (currentScale <= 1.0001f) { if (!allowShowFullscreenButton) { - fullscreenButton[0].animate().alpha(1.0f).setDuration(120).start(); + fullscreenButton[0].animate().alpha(1.0f).setDuration(120).setListener(new AnimatorListenerAdapter() { + @Override + public void onAnimationEnd(Animator animation) { + fullscreenButton[0].setTag(null); + } + }).start(); + fullscreenButton[0].setTag(1); allowShowFullscreenButton = true; } } else { if (allowShowFullscreenButton) { - fullscreenButton[0].animate().alpha(0.0f).setDuration(120).start(); + fullscreenButton[0].animate().alpha(0.0f).setDuration(120).setListener(new AnimatorListenerAdapter() { + @Override + public void onAnimationEnd(Animator animation) { + fullscreenButton[0].setTag(null); + } + }).start(); + fullscreenButton[0].setTag(1); allowShowFullscreenButton = false; } } @@ -13466,7 +13570,7 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat photoProgressViews[0].setAlpha(progressAlpha); photoProgressViews[0].onDraw(canvas); - if (isActionBarVisible && allowShowFullscreenButton) { + if (isActionBarVisible && allowShowFullscreenButton && fullscreenButton[0].getTag() == null) { fullscreenButton[0].setAlpha(alpha); } @@ -13718,6 +13822,19 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat if (!canZoom && !doubleTapEnabled) { return onSingleTapConfirmed(e); } + if (containerView.getTag() != null && photoProgressViews[0] != null && containerView != null) { + float x = e.getX(); + float y = e.getY(); + boolean rez = false; + if (x >= (getContainerViewWidth() - AndroidUtilities.dp(100)) / 2.0f && x <= (getContainerViewWidth() + AndroidUtilities.dp(100)) / 2.0f && + y >= (getContainerViewHeight() - AndroidUtilities.dp(100)) / 2.0f && y <= (getContainerViewHeight() + AndroidUtilities.dp(100)) / 2.0f) { + rez = onSingleTapConfirmed(e); + } + if (rez) { + discardTap = true; + return true; + } + } return false; } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ProfileActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ProfileActivity.java index 291f6fe7e..76c326f87 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ProfileActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ProfileActivity.java @@ -153,6 +153,7 @@ import org.telegram.ui.Components.RadialProgressView; import org.telegram.ui.Components.RecyclerListView; import org.telegram.ui.Components.ScamDrawable; import org.telegram.ui.Components.SharedMediaLayout; +import org.telegram.ui.Components.TimerDrawable; import org.telegram.ui.Components.UndoView; import org.telegram.ui.Components.voip.VoIPHelper; @@ -221,6 +222,8 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. private View avatarOverlay; private AnimatorSet avatarAnimation; private RadialProgressView avatarProgressView; + private ImageView timeItem; + private TimerDrawable timerDrawable; private ProfileGalleryView avatarsViewPager; private PagerIndicatorView avatarsViewPagerIndicatorView; private AvatarDrawable avatarDrawable; @@ -427,6 +430,9 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. private boolean hideNumber; + private boolean firstLayout = true; + private boolean invalidateScroll = true; + private final Property HEADER_SHADOW = new AnimationProperties.FloatProperty("headerShadow") { @Override public void setValue(ProfileActivity object, float value) { @@ -1096,11 +1102,20 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. animator.setInterpolator(CubicBezierInterpolator.EASE_BOTH); animator.addUpdateListener(a -> { final float value = AndroidUtilities.lerp(animatorValues, a.getAnimatedFraction()); - final View menuItem = getSecondaryMenuItem(); - if (menuItem != null) { - menuItem.setScaleX(1f - value); - menuItem.setScaleY(1f - value); - menuItem.setAlpha(1f - value); + if (searchItem != null && !isPulledDown) { + searchItem.setScaleX(1f - value); + searchItem.setScaleY(1f - value); + searchItem.setAlpha(1f - value); + } + if (editItemVisible) { + editItem.setScaleX(1f - value); + editItem.setScaleY(1f - value); + editItem.setAlpha(1f - value); + } + if (callItemVisible) { + callItem.setScaleX(1f - value); + callItem.setScaleY(1f - value); + callItem.setAlpha(1f - value); } if (videoCallItemVisible) { videoCallItem.setScaleX(1f - value); @@ -1116,9 +1131,14 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. @Override public void onAnimationEnd(Animator animation) { if (isIndicatorVisible) { - final View menuItem = getSecondaryMenuItem(); - if (menuItem != null) { - menuItem.setVisibility(GONE); + if (searchItem != null) { + searchItem.setVisibility(GONE); + } + if (editItemVisible) { + editItem.setVisibility(GONE); + } + if (callItemVisible) { + callItem.setVisibility(GONE); } if (videoCallItemVisible) { videoCallItem.setVisibility(GONE); @@ -1130,9 +1150,14 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. @Override public void onAnimationStart(Animator animation) { - final View menuItem = getSecondaryMenuItem(); - if (menuItem != null && (menuItem != searchItem || !expanded)) { - menuItem.setVisibility(VISIBLE); + if (searchItem != null && !expanded) { + searchItem.setVisibility(VISIBLE); + } + if (editItemVisible) { + editItem.setVisibility(VISIBLE); + } + if (callItemVisible) { + callItem.setVisibility(VISIBLE); } if (videoCallItemVisible) { videoCallItem.setVisibility(VISIBLE); @@ -1583,7 +1608,7 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. builder.setPositiveButton(LocaleController.getString("Delete", R.string.Delete), (dialogInterface, i) -> { ArrayList arrayList = new ArrayList<>(); arrayList.add(user); - getContactsController().deleteContact(arrayList); + getContactsController().deleteContact(arrayList, true); }); builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null); AlertDialog dialog = builder.create(); @@ -1994,7 +2019,6 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. fragmentView = new NestedFrameLayout(context) { private boolean ignoreLayout; - private boolean firstLayout = true; private Paint grayPaint = new Paint(); @Override @@ -2044,6 +2068,7 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. } } } + if (!fragmentOpened && (expandPhoto || openAnimationInProgress && playProfileAnimation == 2)) { ignoreLayout = true; @@ -2147,14 +2172,18 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. if (actionBar.isSearchFieldVisible()) { layoutManager.scrollToPositionWithOffset(sharedMediaRow, -paddingTop); layout = true; - } else if ((!changed || !allowPullingDown) && view != null) { - if (pos == 0 && !allowPullingDown && top > AndroidUtilities.dp(88)) { - top = AndroidUtilities.dp(88); + } else if (invalidateScroll || currentPaddingTop != paddingTop) { + if (savedScrollPosition >= 0) { + layoutManager.scrollToPositionWithOffset(savedScrollPosition, savedScrollOffset - paddingTop); + } else if ((!changed || !allowPullingDown) && view != null) { + if (pos == 0 && !allowPullingDown && top > AndroidUtilities.dp(88)) { + top = AndroidUtilities.dp(88); + } + layoutManager.scrollToPositionWithOffset(pos, top - paddingTop); + layout = true; + } else { + layoutManager.scrollToPositionWithOffset(0, AndroidUtilities.dp(88) - paddingTop); } - layoutManager.scrollToPositionWithOffset(pos, top - paddingTop); - layout = true; - } else { - layoutManager.scrollToPositionWithOffset(0, AndroidUtilities.dp(88) - paddingTop); } if (currentPaddingTop != paddingTop || listView.getPaddingBottom() != paddingBottom) { listView.setPadding(0, paddingTop, 0, paddingBottom); @@ -2175,7 +2204,9 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. @Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) { super.onLayout(changed, left, top, right, bottom); + savedScrollPosition = -1; firstLayout = false; + invalidateScroll = false; checkListViewScroll(); } @@ -2205,17 +2236,20 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. int count = listView.getChildCount(); sortedChildren.clear(); + boolean hasRemovingItems = false; for (int i = 0; i < count; i++) { View child = listView.getChildAt(i); if (listView.getChildAdapterPosition(child) != RecyclerView.NO_POSITION) { sortedChildren.add(listView.getChildAt(i)); + } else { + hasRemovingItems = true; } } Collections.sort(sortedChildren, viewComparator); boolean hasBackground = false; float lastY = listView.getY(); count = sortedChildren.size(); - if (!openAnimationInProgress && count > 0) { + if (!openAnimationInProgress && count > 0 && !hasRemovingItems) { lastY += sortedChildren.get(0).getY(); } float alpha = 1f; @@ -3214,6 +3248,13 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. avatarProgressView.setNoProgress(false); avatarContainer.addView(avatarProgressView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT)); + timeItem = new ImageView(context); + timeItem.setPadding(AndroidUtilities.dp(10), AndroidUtilities.dp(10), AndroidUtilities.dp(5), AndroidUtilities.dp(5)); + timeItem.setScaleType(ImageView.ScaleType.CENTER); + timeItem.setImageDrawable(timerDrawable = new TimerDrawable(context)); + frameLayout.addView(timeItem, LayoutHelper.createFrame(34, 34, Gravity.TOP | Gravity.LEFT)); + updateTimeItem(); + showAvatarProgress(false, false); if (avatarsViewPager != null) { @@ -3294,6 +3335,8 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. TextView textView = new TextView(context); textView.setTextColor(Theme.getColor(Theme.key_player_actionBarSubtitle)); textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14); + textView.setSingleLine(true); + textView.setEllipsize(TextUtils.TruncateAt.END); textView.setGravity(Gravity.LEFT); return textView; } @@ -4284,7 +4327,7 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. otherItem.hideSubItem(set_as_main); otherItem.hideSubItem(edit_avatar); otherItem.hideSubItem(delete_avatar); - otherItem.hideSubItem(add_photo); + otherItem.showSubItem(add_photo); otherItem.showSubItem(logout); } }*/ @@ -4356,6 +4399,9 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. avatarImage.setRoundRadius((int) AndroidUtilities.lerp(AndroidUtilities.dpf2(21f), 0f, animationProgress)); avatarContainer.setTranslationX(AndroidUtilities.lerp(avX, 0, animationProgress)); avatarContainer.setTranslationY(AndroidUtilities.lerp((float) Math.ceil(avY), 0f, animationProgress)); + float extra = (avatarContainer.getMeasuredWidth() - AndroidUtilities.dp(42)) * avatarScale; + timeItem.setTranslationX(avatarContainer.getX() + AndroidUtilities.dp(16) + extra); + timeItem.setTranslationY(avatarContainer.getY() + AndroidUtilities.dp(15) + extra); avatarContainer.setScaleX(avatarScale); avatarContainer.setScaleY(avatarScale); @@ -4385,6 +4431,9 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. avatarContainer.setScaleY(avatarScale); avatarContainer.setTranslationX(avatarX); avatarContainer.setTranslationY((float) Math.ceil(avatarY)); + float extra = AndroidUtilities.dp(42) * avatarScale - AndroidUtilities.dp(42); + timeItem.setTranslationX(avatarContainer.getX() + AndroidUtilities.dp(16) + extra); + timeItem.setTranslationY(avatarContainer.getY() + AndroidUtilities.dp(15) + extra); } nameX = -21 * AndroidUtilities.density * diff; nameY = (float) Math.floor(avatarY) + AndroidUtilities.dp(1.3f) + AndroidUtilities.dp(7) * diff; @@ -4477,7 +4526,20 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. int viewWidth = AndroidUtilities.isTablet() ? AndroidUtilities.dp(490) : AndroidUtilities.displaySize.x; ActionBarMenuItem item = avatarsViewPagerIndicatorView.getSecondaryMenuItem(); - int buttonsWidth = AndroidUtilities.dp(118 + 8 + (40 + (item != null ? 48 * (1.0f - mediaHeaderAnimationProgress) : 0) + (videoCallItemVisible || chat_id != 0 && callItemVisible ? 48 * (1.0f - mediaHeaderAnimationProgress) : 0))); + int extra = 0; + if (editItemVisible) { + extra += 48; + } + if (callItemVisible) { + extra += 48; + } + if (videoCallItemVisible) { + extra += 48; + } + if (searchItem != null) { + extra += 48; + } + int buttonsWidth = AndroidUtilities.dp(118 + 8 + (40 + extra * (1.0f - mediaHeaderAnimationProgress))); int minWidth = viewWidth - buttonsWidth; int width = (int) (viewWidth - buttonsWidth * Math.max(0.0f, 1.0f - (diff != 1.0f ? diff * 0.15f / (1.0f - diff) : 1.0f)) - nameTextView[1].getTranslationX()); @@ -4630,6 +4692,7 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. if (currentEncryptedChat != null && chat.id == currentEncryptedChat.id) { currentEncryptedChat = chat; updateListAnimated(false); + updateTimeItem(); } } else if (id == NotificationCenter.blockedUsersDidLoad) { boolean oldValue = userBlocked; @@ -4677,6 +4740,7 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. if (currentChat.megagroup && (loadChannelParticipants || !byChannelUsers)) { getChannelParticipants(true); } + updateTimeItem(); } } else if (id == NotificationCenter.closeChats) { removeSelfFromStack(); @@ -4708,6 +4772,7 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. needLayout(true); } } + updateTimeItem(); } } else if (id == NotificationCenter.didReceiveNewMessages) { boolean scheduled = (Boolean) args[2]; @@ -4735,6 +4800,38 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. } } + private void updateTimeItem() { + if (timerDrawable == null) { + return; + } + if (currentEncryptedChat != null) { + timerDrawable.setTime(currentEncryptedChat.ttl); + timeItem.setTag(1); + timeItem.setVisibility(View.VISIBLE); + } else if (userInfo != null) { + timerDrawable.setTime(userInfo.ttl_period); + if (userInfo.ttl_period != 0) { + timeItem.setTag(1); + timeItem.setVisibility(View.VISIBLE); + } else { + timeItem.setTag(null); + timeItem.setVisibility(View.GONE); + } + } else if (chatInfo != null) { + timerDrawable.setTime(chatInfo.ttl_period); + if (chatInfo.ttl_period != 0) { + timeItem.setTag(1); + timeItem.setVisibility(View.VISIBLE); + } else { + timeItem.setTag(null); + timeItem.setVisibility(View.GONE); + } + } else { + timeItem.setTag(null); + timeItem.setVisibility(View.GONE); + } + } + @Override public boolean needDelayOpenAnimation() { if (playProfileAnimation == 0) { @@ -4764,7 +4861,8 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. } invalidateIsInLandscapeMode(); if (listAdapter != null) { - saveScrollPosition(); + // saveScrollPosition(); + firstLayout = true; listAdapter.notifyDataSetChanged(); } @@ -4867,6 +4965,7 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. } if (!fragmentOpened) { fragmentOpened = true; + invalidateScroll = true; fragmentView.requestLayout(); } } @@ -5034,6 +5133,11 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. animators.add(ObjectAnimator.ofFloat(onlineTextView[a], View.ALPHA, a == 0 ? 0.0f : 1.0f)); animators.add(ObjectAnimator.ofFloat(nameTextView[a], View.ALPHA, a == 0 ? 0.0f : 1.0f)); } + if (timeItem.getTag() != null) { + animators.add(ObjectAnimator.ofFloat(timeItem, View.ALPHA, 0.0f)); + animators.add(ObjectAnimator.ofFloat(timeItem, View.SCALE_X, 0.0f)); + animators.add(ObjectAnimator.ofFloat(timeItem, View.SCALE_Y, 0.0f)); + } if (animatingItem != null) { animatingItem.setAlpha(1.0f); animators.add(ObjectAnimator.ofFloat(animatingItem, View.ALPHA, 0.0f)); @@ -5064,6 +5168,11 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. animators.add(ObjectAnimator.ofFloat(onlineTextView[a], View.ALPHA, a == 0 ? 1.0f : 0.0f)); animators.add(ObjectAnimator.ofFloat(nameTextView[a], View.ALPHA, a == 0 ? 1.0f : 0.0f)); } + if (timeItem.getTag() != null) { + animators.add(ObjectAnimator.ofFloat(timeItem, View.ALPHA, 1.0f)); + animators.add(ObjectAnimator.ofFloat(timeItem, View.SCALE_X, 1.0f)); + animators.add(ObjectAnimator.ofFloat(timeItem, View.SCALE_Y, 1.0f)); + } if (animatingItem != null) { animatingItem.setAlpha(0.0f); animators.add(ObjectAnimator.ofFloat(animatingItem, View.ALPHA, 1.0f)); @@ -5236,7 +5345,7 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. TLRPC.User user = getMessagesController().getUser(uid); getMessagesController().deleteUserFromChat(chat_id, user, chatInfo); if (currentChat != null && user != null && BulletinFactory.canShowBulletin(this)) { - BulletinFactory.createRemoveFromChatBulletin(this, user.first_name, currentChat.title).show(); + BulletinFactory.createRemoveFromChatBulletin(this, user, currentChat.title).show(); } if (chatInfo.participants.participants.remove(participant)) { updateListAnimated(true); @@ -5876,7 +5985,7 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. callItemVisible = false; videoCallItemVisible = false; canSearchMembers = false; - + boolean selfUser = false; if (user_id != 0) { TLRPC.User user = getMessagesController().getUser(user_id); if (user == null) { @@ -6003,10 +6112,13 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. //otherItem.addSubItem(edit_avatar, R.drawable.photo_paint, LocaleController.getString("EditPhoto", R.string.EditPhoto)); otherItem.addSubItem(delete_avatar, R.drawable.baseline_delete_24, LocaleController.getString("Delete", R.string.Delete)); } + if (selfUser) { + otherItem.addSubItem(logout, R.drawable.msg_leave, LocaleController.getString("LogOut", R.string.LogOut)); + } if (!isPulledDown) { otherItem.hideSubItem(gallery_menu_save); otherItem.hideSubItem(set_as_main); - otherItem.hideSubItem(add_photo); + otherItem.showSubItem(add_photo); otherItem.hideSubItem(edit_avatar); otherItem.hideSubItem(delete_avatar); } @@ -6371,7 +6483,7 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. src.renameTo(destFile); String oldKey = avatar.volume_id + "_" + avatar.local_id + "@50_50"; String newKey = small.location.volume_id + "_" + small.location.local_id + "@50_50"; - ImageLoader.getInstance().replaceImageInCache(oldKey, newKey, ImageLocation.getForUser(user, false), true); + ImageLoader.getInstance().replaceImageInCache(oldKey, newKey, ImageLocation.getForUser(user, false), false); } if (big != null && avatarBig != null) { File destFile = FileLoader.getPathToAttach(big, true); @@ -6417,6 +6529,7 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. listView.smoothScrollBy(0, view.getTop() - AndroidUtilities.dp(88), CubicBezierInterpolator.EASE_OUT_QUINT); } } + actionBar.createMenu().requestLayout(); }); } @@ -6573,7 +6686,8 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. int totalHeight = 0; for (int i = 0; i < n; i++) { View view = listView.getChildAt(i); - if (listView.getChildAdapterPosition(view) != bottomPaddingRow) { + int p = listView.getChildAdapterPosition(view); + if (p >= 0 && p != bottomPaddingRow) { totalHeight += listView.getChildAt(i).getMeasuredHeight(); } } @@ -6946,6 +7060,9 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. userCell.setData(getMessagesController().getUser(part.user_id), null, null, 0, position != membersEndRow - 1); } break; + case 12: + holder.itemView.requestLayout(); + break; } } @@ -7735,25 +7852,40 @@ public class ProfileActivity extends BaseFragment implements NotificationCenter. if (updateOnlineCount) { updateOnlineCount(false); } + saveScrollPosition(); updateRowsIds(); diffCallback.fillPositions(diffCallback.newPositionToItem); DiffUtil.calculateDiff(diffCallback).dispatchUpdatesTo(listAdapter); - saveScrollPosition(); + if (savedScrollPosition >= 0) { + layoutManager.scrollToPositionWithOffset(savedScrollPosition, savedScrollOffset - listView.getPaddingTop()); + } AndroidUtilities.updateVisibleRows(listView); } + int savedScrollPosition = -1; + int savedScrollOffset; + private void saveScrollPosition() { if (listView != null && layoutManager != null && listView.getChildCount() > 0) { View view = null; int position = -1; + int top = Integer.MAX_VALUE; for (int i = 0; i < listView.getChildCount(); i++) { - position = listView.getChildAdapterPosition(listView.getChildAt(i)); - if (position != RecyclerListView.NO_POSITION) { - view = listView.getChildAt(i); - break; + int childPosition = listView.getChildAdapterPosition(listView.getChildAt(i)); + View child = listView.getChildAt(i); + if (childPosition != RecyclerListView.NO_POSITION && child.getTop() < top) { + view = child; + position = childPosition; + top = child.getTop(); } } if (view != null) { + savedScrollPosition = position; + savedScrollOffset = view.getTop(); + if (savedScrollPosition == 0 && !allowPullingDown && savedScrollOffset > AndroidUtilities.dp(88)) { + savedScrollOffset = AndroidUtilities.dp(88); + } + layoutManager.scrollToPositionWithOffset(position, view.getTop() - listView.getPaddingTop()); } } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ProfileNotificationsActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ProfileNotificationsActivity.java index d4f3ee2ae..1f9eef144 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ProfileNotificationsActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ProfileNotificationsActivity.java @@ -29,19 +29,24 @@ import android.view.ViewGroup; import android.widget.FrameLayout; import android.widget.TextView; +import androidx.recyclerview.widget.LinearLayoutManager; +import androidx.recyclerview.widget.RecyclerView; + import org.telegram.messenger.AndroidUtilities; -import org.telegram.messenger.ChatObject; -import org.telegram.messenger.MessagesController; import org.telegram.messenger.ApplicationLoader; +import org.telegram.messenger.ChatObject; import org.telegram.messenger.FileLog; import org.telegram.messenger.LocaleController; +import org.telegram.messenger.MessagesController; import org.telegram.messenger.MessagesStorage; import org.telegram.messenger.NotificationCenter; import org.telegram.messenger.NotificationsController; import org.telegram.messenger.R; import org.telegram.tgnet.TLObject; import org.telegram.tgnet.TLRPC; +import org.telegram.ui.ActionBar.ActionBar; import org.telegram.ui.ActionBar.AlertDialog; +import org.telegram.ui.ActionBar.BaseFragment; import org.telegram.ui.ActionBar.Theme; import org.telegram.ui.ActionBar.ThemeDescription; import org.telegram.ui.Cells.HeaderCell; @@ -50,8 +55,6 @@ import org.telegram.ui.Cells.ShadowSectionCell; import org.telegram.ui.Cells.TextCheckBoxCell; import org.telegram.ui.Cells.TextCheckCell; import org.telegram.ui.Cells.TextColorCell; -import org.telegram.ui.ActionBar.ActionBar; -import org.telegram.ui.ActionBar.BaseFragment; import org.telegram.ui.Cells.TextInfoPrivacyCell; import org.telegram.ui.Cells.TextSettingsCell; import org.telegram.ui.Cells.UserCell2; @@ -61,9 +64,6 @@ import org.telegram.ui.Components.RecyclerListView; import java.util.ArrayList; -import androidx.recyclerview.widget.LinearLayoutManager; -import androidx.recyclerview.widget.RecyclerView; - public class ProfileNotificationsActivity extends BaseFragment implements NotificationCenter.NotificationCenterDelegate { private RecyclerListView listView; @@ -387,7 +387,7 @@ public class ProfileNotificationsActivity extends BaseFragment implements Notifi preferences.edit().putBoolean("content_preview_" + dialog_id, !checkCell.isChecked()).commit(); checkCell.setChecked(!checkCell.isChecked()); } else if (position == callsVibrateRow) { - showDialog(AlertsCreator.createVibrationSelectDialog(getParentActivity(), dialog_id, "calls_vibrate_", () -> { + showDialog(AlertsCreator.createVibrationSelectDialog(getParentActivity(), dialog_id, "calls_vibrate_" + dialog_id, () -> { if (adapter != null) { adapter.notifyItemChanged(callsVibrateRow); } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ProxyListActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ProxyListActivity.java index eef439eb5..3cb212669 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ProxyListActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ProxyListActivity.java @@ -1257,6 +1257,7 @@ public class ProxyListActivity extends BaseFragment implements NotificationCente } } + @SuppressWarnings("unchecked") @Override public void onBindViewHolder(@NonNull RecyclerView.ViewHolder holder, int position, @NonNull List payloads) { if (holder.getItemViewType() == 3 && payloads.contains(PAYLOAD_CHECKED_CHANGED)) { diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ReportOtherActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ReportOtherActivity.java deleted file mode 100644 index 33968c936..000000000 --- a/TMessagesProj/src/main/java/org/telegram/ui/ReportOtherActivity.java +++ /dev/null @@ -1,178 +0,0 @@ -/* - * This is the source code of Telegram for Android v. 5.x.x. - * It is licensed under GNU GPL v. 2 or later. - * You should have received a copy of the license in this archive (see LICENSE). - * - * Copyright Nikolai Kudashov, 2013-2018. - */ - -package org.telegram.ui; - -import android.content.Context; -import android.content.SharedPreferences; -import android.os.Bundle; -import android.text.InputType; -import android.util.TypedValue; -import android.view.Gravity; -import android.view.View; -import android.view.ViewGroup; -import android.view.inputmethod.EditorInfo; -import android.widget.LinearLayout; -import android.widget.Toast; - -import org.telegram.messenger.AndroidUtilities; -import org.telegram.messenger.LocaleController; -import org.telegram.messenger.MessagesController; -import org.telegram.messenger.R; -import org.telegram.messenger.UserConfig; -import org.telegram.tgnet.ConnectionsManager; -import org.telegram.tgnet.TLObject; -import org.telegram.tgnet.TLRPC; -import org.telegram.ui.ActionBar.ActionBar; -import org.telegram.ui.ActionBar.ActionBarMenu; -import org.telegram.ui.ActionBar.BaseFragment; -import org.telegram.ui.ActionBar.Theme; -import org.telegram.ui.ActionBar.ThemeDescription; -import org.telegram.ui.Components.EditTextBoldCursor; -import org.telegram.ui.Components.LayoutHelper; - -import java.util.ArrayList; - -public class ReportOtherActivity extends BaseFragment { - - private EditTextBoldCursor firstNameField; - private View headerLabelView; - private long dialog_id; - private int message_id; - private View doneButton; - - private final static int done_button = 1; - - public ReportOtherActivity(Bundle args) { - super(args); - dialog_id = getArguments().getLong("dialog_id", 0); - message_id = getArguments().getInt("message_id", 0); - } - - @Override - public View createView(Context context) { - actionBar.setBackButtonImage(R.drawable.ic_ab_back); - actionBar.setAllowOverlayTitle(true); - actionBar.setTitle(LocaleController.getString("ReportChat", R.string.ReportChat)); - actionBar.setActionBarMenuOnItemClick(new ActionBar.ActionBarMenuOnItemClick() { - @Override - public void onItemClick(int id) { - if (id == -1) { - finishFragment(); - } else if (id == done_button) { - if (firstNameField.getText().length() != 0) { - TLObject req; - TLRPC.InputPeer peer = MessagesController.getInstance(UserConfig.selectedAccount).getInputPeer((int) dialog_id); - if (message_id != 0) { - TLRPC.TL_messages_report request = new TLRPC.TL_messages_report(); - request.peer = peer; - request.id.add(message_id); - TLRPC.TL_inputReportReasonOther reportReasonOther = new TLRPC.TL_inputReportReasonOther(); - reportReasonOther.text = firstNameField.getText().toString(); - request.reason = reportReasonOther; - req = request; - } else { - TLRPC.TL_account_reportPeer request = new TLRPC.TL_account_reportPeer(); - request.peer = MessagesController.getInstance(currentAccount).getInputPeer((int) dialog_id); - TLRPC.TL_inputReportReasonOther reportReasonOther = new TLRPC.TL_inputReportReasonOther(); - reportReasonOther.text = firstNameField.getText().toString(); - request.reason = reportReasonOther; - req = request; - } - ConnectionsManager.getInstance(currentAccount).sendRequest(req, (response, error) -> { - - }); - if (getParentActivity() != null) { - Toast.makeText(getParentActivity(), LocaleController.getString("ReportChatSent", R.string.ReportChatSent), Toast.LENGTH_SHORT).show(); - } - finishFragment(); - } - } - } - }); - - ActionBarMenu menu = actionBar.createMenu(); - doneButton = menu.addItemWithWidth(done_button, R.drawable.ic_done, AndroidUtilities.dp(56), LocaleController.getString("Done", R.string.Done)); - - LinearLayout linearLayout = new LinearLayout(context); - fragmentView = linearLayout; - fragmentView.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)); - ((LinearLayout) fragmentView).setOrientation(LinearLayout.VERTICAL); - fragmentView.setOnTouchListener((v, event) -> true); - - firstNameField = new EditTextBoldCursor(context); - firstNameField.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 18); - firstNameField.setHintTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteHintText)); - firstNameField.setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteBlackText)); - firstNameField.setBackgroundDrawable(Theme.createEditTextDrawable(context, false)); - firstNameField.setMaxLines(3); - firstNameField.setPadding(0, 0, 0, 0); - firstNameField.setGravity(LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT); - firstNameField.setInputType(InputType.TYPE_TEXT_FLAG_CAP_SENTENCES | InputType.TYPE_TEXT_FLAG_MULTI_LINE | InputType.TYPE_TEXT_FLAG_AUTO_CORRECT); - firstNameField.setImeOptions(EditorInfo.IME_ACTION_DONE); - firstNameField.setGravity(LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT); - firstNameField.setCursorColor(Theme.getColor(Theme.key_windowBackgroundWhiteBlackText)); - firstNameField.setCursorSize(AndroidUtilities.dp(20)); - firstNameField.setCursorWidth(1.5f); - firstNameField.setOnEditorActionListener((textView, i, keyEvent) -> { - if (i == EditorInfo.IME_ACTION_DONE && doneButton != null) { - doneButton.performClick(); - return true; - } - return false; - }); - - linearLayout.addView(firstNameField, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, 36, 24, 24, 24, 0)); - firstNameField.setHint(LocaleController.getString("ReportChatDescription", R.string.ReportChatDescription)); - firstNameField.setSelection(firstNameField.length()); - - return fragmentView; - } - - @Override - public void onResume() { - super.onResume(); - SharedPreferences preferences = MessagesController.getGlobalMainSettings(); - boolean animations = preferences.getBoolean("view_animations", true); - if (!animations) { - firstNameField.requestFocus(); - AndroidUtilities.showKeyboard(firstNameField); - } - } - - @Override - public void onTransitionAnimationEnd(boolean isOpen, boolean backward) { - if (isOpen) { - AndroidUtilities.runOnUIThread(() -> { - if (firstNameField != null) { - firstNameField.requestFocus(); - AndroidUtilities.showKeyboard(firstNameField); - } - }, 100); - } - } - - @Override - public ArrayList getThemeDescriptions() { - ArrayList themeDescriptions = new ArrayList<>(); - - themeDescriptions.add(new ThemeDescription(fragmentView, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_windowBackgroundWhite)); - - themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_actionBarDefault)); - themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_ITEMSCOLOR, null, null, null, null, Theme.key_actionBarDefaultIcon)); - themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_TITLECOLOR, null, null, null, null, Theme.key_actionBarDefaultTitle)); - themeDescriptions.add(new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SELECTORCOLOR, null, null, null, null, Theme.key_actionBarDefaultSelector)); - - themeDescriptions.add(new ThemeDescription(firstNameField, ThemeDescription.FLAG_TEXTCOLOR, null, null, null, null, Theme.key_windowBackgroundWhiteBlackText)); - themeDescriptions.add(new ThemeDescription(firstNameField, ThemeDescription.FLAG_HINTTEXTCOLOR, null, null, null, null, Theme.key_windowBackgroundWhiteHintText)); - themeDescriptions.add(new ThemeDescription(firstNameField, ThemeDescription.FLAG_BACKGROUNDFILTER, null, null, null, null, Theme.key_windowBackgroundWhiteInputField)); - themeDescriptions.add(new ThemeDescription(firstNameField, ThemeDescription.FLAG_BACKGROUNDFILTER | ThemeDescription.FLAG_DRAWABLESELECTEDSTATE, null, null, null, null, Theme.key_windowBackgroundWhiteInputFieldActivated)); - - return themeDescriptions; - } -} diff --git a/TMessagesProj/src/main/java/org/telegram/ui/SecretMediaViewer.java b/TMessagesProj/src/main/java/org/telegram/ui/SecretMediaViewer.java index 3040c6043..a782848c0 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/SecretMediaViewer.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/SecretMediaViewer.java @@ -26,7 +26,6 @@ import android.graphics.drawable.ColorDrawable; import android.graphics.drawable.Drawable; import android.net.Uri; import android.os.Build; -import androidx.annotation.Keep; import android.util.SparseArray; import android.view.GestureDetector; import android.view.Gravity; @@ -39,18 +38,20 @@ import android.view.WindowManager; import android.view.animation.DecelerateInterpolator; import android.widget.FrameLayout; +import androidx.annotation.Keep; + import com.google.android.exoplayer2.C; import com.google.android.exoplayer2.ExoPlayer; import com.google.android.exoplayer2.ui.AspectRatioFrameLayout; import org.telegram.messenger.AndroidUtilities; +import org.telegram.messenger.FileLoader; +import org.telegram.messenger.FileLog; import org.telegram.messenger.ImageLocation; import org.telegram.messenger.ImageReceiver; import org.telegram.messenger.LocaleController; import org.telegram.messenger.MessageObject; import org.telegram.messenger.NotificationCenter; -import org.telegram.messenger.FileLoader; -import org.telegram.messenger.FileLog; import org.telegram.messenger.R; import org.telegram.messenger.UserConfig; import org.telegram.tgnet.ConnectionsManager; @@ -666,7 +667,7 @@ public class SecretMediaViewer implements NotificationCenter.NotificationCenterD centerImage.setForceCrossfade(true); } - public void openMedia(MessageObject messageObject, PhotoViewer.PhotoViewerProvider provider) { + public void openMedia(MessageObject messageObject, PhotoViewer.PhotoViewerProvider provider, Runnable onOpen) { if (parentActivity == null || messageObject == null || !messageObject.needDrawBluredPreview() || provider == null) { return; } @@ -823,6 +824,9 @@ public class SecretMediaViewer implements NotificationCenter.NotificationCenterD photoAnimationEndRunnable = () -> { photoAnimationInProgress = 0; imageMoveAnimation = null; + if (onOpen != null) { + onOpen.run(); + } if (containerView == null) { return; } diff --git a/TMessagesProj/src/main/java/org/telegram/ui/ThemeActivity.java b/TMessagesProj/src/main/java/org/telegram/ui/ThemeActivity.java index 9e588b988..db54294ce 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/ThemeActivity.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/ThemeActivity.java @@ -2135,9 +2135,7 @@ public class ThemeActivity extends BaseFragment implements NotificationCenter.No themeDescriptions.add(new ThemeDescription(listView, 0, new Class[]{ChatListCell.class}, null, null, null, Theme.key_radioBackground)); themeDescriptions.add(new ThemeDescription(listView, 0, new Class[]{ChatListCell.class}, null, null, null, Theme.key_radioBackgroundChecked)); - - themeDescriptions.add(new ThemeDescription(listView, 0, new Class[]{TextCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlueText4)); - themeDescriptions.add(new ThemeDescription(listView, 0, new Class[]{TextCell.class}, new String[]{"imageView"}, null, null, null, Theme.key_windowBackgroundWhiteBlueText4)); + ; themeDescriptions.add(new ThemeDescription(listView, 0, new Class[]{NotificationsCheckCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlackText)); themeDescriptions.add(new ThemeDescription(listView, 0, new Class[]{NotificationsCheckCell.class}, new String[]{"valueTextView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayText2)); diff --git a/TMessagesProj/src/main/java/org/telegram/ui/VoIPFragment.java b/TMessagesProj/src/main/java/org/telegram/ui/VoIPFragment.java index fec57252e..814adaf7b 100644 --- a/TMessagesProj/src/main/java/org/telegram/ui/VoIPFragment.java +++ b/TMessagesProj/src/main/java/org/telegram/ui/VoIPFragment.java @@ -799,6 +799,9 @@ public class VoIPFragment implements VoIPBaseService.StateListener, Notification speakerPhoneIcon.setPadding(AndroidUtilities.dp(12), AndroidUtilities.dp(12), AndroidUtilities.dp(12), AndroidUtilities.dp(12)); frameLayout.addView(speakerPhoneIcon, LayoutHelper.createFrame(56, 56, Gravity.TOP | Gravity.RIGHT)); speakerPhoneIcon.setOnClickListener(view -> { + if (speakerPhoneIcon.getTag() == null) { + return; + } if (VoIPService.getSharedInstance() != null) { VoIPService.getSharedInstance().toggleSpeakerphoneOrShowRouteSheet(activity, false); } @@ -1803,10 +1806,12 @@ public class VoIPFragment implements VoIPBaseService.StateListener, Notification if (currentUserIsVideo || callingUserIsVideo) { setFrontalCameraAction(bottomButtons[0], service, animated); if (uiVisible) { + speakerPhoneIcon.setTag(1); speakerPhoneIcon.animate().alpha(1f).start(); } } else { setSpeakerPhoneAction(bottomButtons[0], service, animated); + speakerPhoneIcon.setTag(null); speakerPhoneIcon.animate().alpha(0f).start(); } setVideoAction(bottomButtons[1], service, animated); @@ -1927,6 +1932,7 @@ public class VoIPFragment implements VoIPBaseService.StateListener, Notification bottomButton.setChecked(false, animated); } bottomButton.setCheckableForAccessibility(true); + bottomButton.setEnabled(true); bottomButton.setOnClickListener(view -> { if (VoIPService.getSharedInstance() != null) { VoIPService.getSharedInstance().toggleSpeakerphoneOrShowRouteSheet(activity, false); diff --git a/TMessagesProj/src/main/java/org/webrtc/RecyclerItemsEnterAnimator.java b/TMessagesProj/src/main/java/org/webrtc/RecyclerItemsEnterAnimator.java new file mode 100644 index 000000000..bb91c1bb4 --- /dev/null +++ b/TMessagesProj/src/main/java/org/webrtc/RecyclerItemsEnterAnimator.java @@ -0,0 +1,117 @@ +package org.webrtc; + +import android.animation.Animator; +import android.animation.AnimatorListenerAdapter; +import android.animation.AnimatorSet; +import android.animation.ObjectAnimator; +import android.animation.ValueAnimator; +import android.util.SparseArray; +import android.view.View; +import android.view.ViewTreeObserver; + +import androidx.recyclerview.widget.RecyclerView; + +import org.telegram.ui.Components.FlickerLoadingView; +import org.telegram.ui.Components.RecyclerListView; + +import java.util.HashSet; + +public class RecyclerItemsEnterAnimator { + + private final RecyclerListView listView; + private final SparseArray listAlphaItems = new SparseArray<>(); + HashSet ignoreView = new HashSet<>(); + boolean invalidateAlpha; + + public RecyclerItemsEnterAnimator(RecyclerListView listView) { + this.listView = listView; + } + + public void dispatchDraw() { + if (invalidateAlpha || listAlphaItems.size() > 0) { + for (int i = 0; i < listView.getChildCount(); i++) { + View child = listView.getChildAt(i); + int position = listView.getChildAdapterPosition(child); + if (position >= 0 && !ignoreView.contains(child)) { + Float alpha = listAlphaItems.get(position, null); + if (alpha == null) { + child.setAlpha(1f); + } else { + child.setAlpha(alpha); + } + } + } + invalidateAlpha = false; + } + } + + public void showItemsAnimated(int from) { + int n = listView.getChildCount(); + View progressView = null; + for (int i = 0; i < n; i++) { + View child = listView.getChildAt(i); + if (listView.getChildAdapterPosition(child) >= 0 && child instanceof FlickerLoadingView) { + progressView = child; + } + } + final View finalProgressView = progressView; + RecyclerView.LayoutManager layoutManager = listView.getLayoutManager(); + if (progressView != null && layoutManager != null) { + listView.removeView(progressView); + ignoreView.add(finalProgressView); + listView.addView(finalProgressView); + layoutManager.ignoreView(finalProgressView); + Animator animator = ObjectAnimator.ofFloat(finalProgressView, View.ALPHA, finalProgressView.getAlpha(), 0); + animator.addListener(new AnimatorListenerAdapter() { + @Override + public void onAnimationEnd(Animator animation) { + finalProgressView.setAlpha(1f); + layoutManager.stopIgnoringView(finalProgressView); + ignoreView.remove(finalProgressView); + listView.removeView(finalProgressView); + } + }); + animator.start(); + from--; + } + int finalFrom = from; + listView.getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() { + @Override + public boolean onPreDraw() { + listView.getViewTreeObserver().removeOnPreDrawListener(this); + int n = listView.getChildCount(); + AnimatorSet animatorSet = new AnimatorSet(); + for (int i = 0; i < n; i++) { + View child = listView.getChildAt(i); + int position = listView.getChildAdapterPosition(child); + if (child != finalProgressView && position >= finalFrom - 1 && listAlphaItems.get(position, null) == null) { + listAlphaItems.put(position, 0f); + child.setAlpha(0); + int s = Math.min(listView.getMeasuredHeight(), Math.max(0, child.getTop())); + int delay = (int) ((s / (float) listView.getMeasuredHeight()) * 100); + ValueAnimator a = ValueAnimator.ofFloat(0, 1f); + a.addUpdateListener(valueAnimator -> { + Float alpha = (Float) valueAnimator.getAnimatedValue(); + listAlphaItems.put(position, alpha); + invalidateAlpha = true; + listView.invalidate(); + }); + a.addListener(new AnimatorListenerAdapter() { + @Override + public void onAnimationEnd(Animator animation) { + listAlphaItems.remove(position); + invalidateAlpha = true; + listView.invalidate(); + } + }); + a.setStartDelay(delay); + a.setDuration(200); + animatorSet.playTogether(a); + } + } + animatorSet.start(); + return false; + } + }); + } +} diff --git a/TMessagesProj/src/main/res/drawable-hdpi/channelintro.png b/TMessagesProj/src/main/res/drawable-hdpi/channelintro.png deleted file mode 100644 index 85f044e03..000000000 Binary files a/TMessagesProj/src/main/res/drawable-hdpi/channelintro.png and /dev/null differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/msg_delete_auto.png b/TMessagesProj/src/main/res/drawable-hdpi/msg_delete_auto.png new file mode 100644 index 000000000..dcef48c58 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/msg_delete_auto.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widget_bg.9.png b/TMessagesProj/src/main/res/drawable-hdpi/widget_bg.9.png new file mode 100644 index 000000000..fee3bb471 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widget_bg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widget_check.png b/TMessagesProj/src/main/res/drawable-hdpi/widget_check.png new file mode 100644 index 000000000..3c1ed349b Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widget_check.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widget_clock.png b/TMessagesProj/src/main/res/drawable-hdpi/widget_clock.png new file mode 100644 index 000000000..b30664fb2 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widget_clock.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widget_counter.9.png b/TMessagesProj/src/main/res/drawable-hdpi/widget_counter.9.png new file mode 100644 index 000000000..db87d8af0 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widget_counter.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widget_counter_muted.9.png b/TMessagesProj/src/main/res/drawable-hdpi/widget_counter_muted.9.png new file mode 100644 index 000000000..f8cecf181 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widget_counter_muted.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widget_edit.9.png b/TMessagesProj/src/main/res/drawable-hdpi/widget_edit.9.png new file mode 100644 index 000000000..7bbed19ff Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widget_edit.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widget_halfcheck.png b/TMessagesProj/src/main/res/drawable-hdpi/widget_halfcheck.png new file mode 100644 index 000000000..d3a2666b7 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widget_halfcheck.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widget_muted.png b/TMessagesProj/src/main/res/drawable-hdpi/widget_muted.png new file mode 100644 index 000000000..27e099689 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widget_muted.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widget_online.png b/TMessagesProj/src/main/res/drawable-hdpi/widget_online.png new file mode 100644 index 000000000..cde098fc4 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widget_online.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widget_pin.png b/TMessagesProj/src/main/res/drawable-hdpi/widget_pin.png new file mode 100644 index 000000000..8d248b6f1 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widget_pin.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widget_verified.png b/TMessagesProj/src/main/res/drawable-hdpi/widget_verified.png new file mode 100644 index 000000000..c50e2dd52 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widget_verified.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widgets_dark_badgebg.9.png b/TMessagesProj/src/main/res/drawable-hdpi/widgets_dark_badgebg.9.png new file mode 100644 index 000000000..09d1dd106 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widgets_dark_badgebg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widgets_dark_plus.png b/TMessagesProj/src/main/res/drawable-hdpi/widgets_dark_plus.png new file mode 100644 index 000000000..9ace8d361 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widgets_dark_plus.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widgets_light_badgebg.9.png b/TMessagesProj/src/main/res/drawable-hdpi/widgets_light_badgebg.9.png new file mode 100644 index 000000000..22968bec2 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widgets_light_badgebg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-hdpi/widgets_light_plus.png b/TMessagesProj/src/main/res/drawable-hdpi/widgets_light_plus.png new file mode 100644 index 000000000..c5608819b Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-hdpi/widgets_light_plus.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/channelintro.png b/TMessagesProj/src/main/res/drawable-mdpi/channelintro.png deleted file mode 100644 index 51d0161b1..000000000 Binary files a/TMessagesProj/src/main/res/drawable-mdpi/channelintro.png and /dev/null differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/msg_delete_auto.png b/TMessagesProj/src/main/res/drawable-mdpi/msg_delete_auto.png new file mode 100644 index 000000000..aa789fd4e Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/msg_delete_auto.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/msg_report_abuse.png b/TMessagesProj/src/main/res/drawable-mdpi/msg_report_abuse.png new file mode 100644 index 000000000..b451179e4 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/msg_report_abuse.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/msg_report_fake.png b/TMessagesProj/src/main/res/drawable-mdpi/msg_report_fake.png new file mode 100644 index 000000000..f604c02fa Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/msg_report_fake.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/msg_report_other.png b/TMessagesProj/src/main/res/drawable-mdpi/msg_report_other.png new file mode 100644 index 000000000..4b62a7c9d Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/msg_report_other.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/msg_report_spam.png b/TMessagesProj/src/main/res/drawable-mdpi/msg_report_spam.png new file mode 100644 index 000000000..8cd48c4a5 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/msg_report_spam.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/msg_report_violence.png b/TMessagesProj/src/main/res/drawable-mdpi/msg_report_violence.png new file mode 100644 index 000000000..ce4342756 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/msg_report_violence.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/msg_report_xxx.png b/TMessagesProj/src/main/res/drawable-mdpi/msg_report_xxx.png new file mode 100644 index 000000000..5f6a52245 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/msg_report_xxx.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widget_bg.9.png b/TMessagesProj/src/main/res/drawable-mdpi/widget_bg.9.png new file mode 100644 index 000000000..68dada846 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widget_bg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widget_check.png b/TMessagesProj/src/main/res/drawable-mdpi/widget_check.png new file mode 100644 index 000000000..5dfcc142b Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widget_check.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widget_clock.png b/TMessagesProj/src/main/res/drawable-mdpi/widget_clock.png new file mode 100644 index 000000000..bf373fef5 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widget_clock.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widget_counter.9.png b/TMessagesProj/src/main/res/drawable-mdpi/widget_counter.9.png new file mode 100644 index 000000000..aca8fb36b Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widget_counter.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widget_counter_muted.9.png b/TMessagesProj/src/main/res/drawable-mdpi/widget_counter_muted.9.png new file mode 100644 index 000000000..249feebe6 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widget_counter_muted.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widget_edit.9.png b/TMessagesProj/src/main/res/drawable-mdpi/widget_edit.9.png new file mode 100644 index 000000000..458eb2e2a Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widget_edit.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widget_halfcheck.png b/TMessagesProj/src/main/res/drawable-mdpi/widget_halfcheck.png new file mode 100644 index 000000000..8a00e0d15 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widget_halfcheck.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widget_muted.png b/TMessagesProj/src/main/res/drawable-mdpi/widget_muted.png new file mode 100644 index 000000000..ccc32c198 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widget_muted.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widget_online.png b/TMessagesProj/src/main/res/drawable-mdpi/widget_online.png new file mode 100644 index 000000000..6c02baa91 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widget_online.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widget_pin.png b/TMessagesProj/src/main/res/drawable-mdpi/widget_pin.png new file mode 100644 index 000000000..5bb76cf37 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widget_pin.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widget_verified.png b/TMessagesProj/src/main/res/drawable-mdpi/widget_verified.png new file mode 100644 index 000000000..f7a036dc2 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widget_verified.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widgets_dark_badgebg.9.png b/TMessagesProj/src/main/res/drawable-mdpi/widgets_dark_badgebg.9.png new file mode 100644 index 000000000..363123ff9 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widgets_dark_badgebg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widgets_dark_plus.png b/TMessagesProj/src/main/res/drawable-mdpi/widgets_dark_plus.png new file mode 100644 index 000000000..5dd337cb0 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widgets_dark_plus.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widgets_light_badgebg.9.png b/TMessagesProj/src/main/res/drawable-mdpi/widgets_light_badgebg.9.png new file mode 100644 index 000000000..3ebc2a09a Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widgets_light_badgebg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-mdpi/widgets_light_plus.png b/TMessagesProj/src/main/res/drawable-mdpi/widgets_light_plus.png new file mode 100644 index 000000000..3ae8a8568 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-mdpi/widgets_light_plus.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-hdpi/widget_bg.9.png b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_bg.9.png new file mode 100644 index 000000000..b880efd54 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_bg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-hdpi/widget_check.png b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_check.png new file mode 100644 index 000000000..b69327592 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_check.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-hdpi/widget_clock.png b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_clock.png new file mode 100644 index 000000000..544e6bb33 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_clock.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-hdpi/widget_counter.9.png b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_counter.9.png new file mode 100644 index 000000000..c7314cad6 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_counter.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-hdpi/widget_counter_muted.9.png b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_counter_muted.9.png new file mode 100644 index 000000000..0392fc8b4 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_counter_muted.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-hdpi/widget_edit.9.png b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_edit.9.png new file mode 100644 index 000000000..1b4dc0626 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_edit.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-hdpi/widget_halfcheck.png b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_halfcheck.png new file mode 100644 index 000000000..311e405d6 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_halfcheck.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-hdpi/widget_muted.png b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_muted.png new file mode 100644 index 000000000..ecf6d32b7 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_muted.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-hdpi/widget_online.png b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_online.png new file mode 100644 index 000000000..2dc6af43c Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_online.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-hdpi/widget_pin.png b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_pin.png new file mode 100644 index 000000000..d45b49f49 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_pin.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-hdpi/widget_verified.png b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_verified.png new file mode 100644 index 000000000..6d56e37ac Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-hdpi/widget_verified.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-mdpi/widget_bg.9.png b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_bg.9.png new file mode 100644 index 000000000..a4d186927 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_bg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-mdpi/widget_check.png b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_check.png new file mode 100644 index 000000000..d60d849d1 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_check.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-mdpi/widget_clock.png b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_clock.png new file mode 100644 index 000000000..4a0d1f3e0 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_clock.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-mdpi/widget_counter.9.png b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_counter.9.png new file mode 100644 index 000000000..06c38a852 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_counter.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-mdpi/widget_counter_muted.9.png b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_counter_muted.9.png new file mode 100644 index 000000000..9de7d03af Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_counter_muted.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-mdpi/widget_edit.9.png b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_edit.9.png new file mode 100644 index 000000000..b7d0a170c Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_edit.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-mdpi/widget_halfcheck.png b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_halfcheck.png new file mode 100644 index 000000000..ff86161b0 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_halfcheck.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-mdpi/widget_muted.png b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_muted.png new file mode 100644 index 000000000..c8e3cb6ab Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_muted.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-mdpi/widget_online.png b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_online.png new file mode 100644 index 000000000..cf29da17d Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_online.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-mdpi/widget_pin.png b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_pin.png new file mode 100644 index 000000000..8de91645c Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_pin.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-mdpi/widget_verified.png b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_verified.png new file mode 100644 index 000000000..4b238274d Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-mdpi/widget_verified.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_bg.9.png b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_bg.9.png new file mode 100644 index 000000000..880247fc2 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_bg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_check.png b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_check.png new file mode 100644 index 000000000..5d7e71268 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_check.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_clock.png b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_clock.png new file mode 100644 index 000000000..48370ad73 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_clock.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_counter.9.png b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_counter.9.png new file mode 100644 index 000000000..94b6e2833 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_counter.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_counter_muted.9.png b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_counter_muted.9.png new file mode 100644 index 000000000..cf66f723c Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_counter_muted.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_edit.9.png b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_edit.9.png new file mode 100644 index 000000000..eda7fa656 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_edit.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_halfcheck.png b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_halfcheck.png new file mode 100644 index 000000000..769e383b9 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_halfcheck.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_muted.png b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_muted.png new file mode 100644 index 000000000..c2a970eba Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_muted.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_online.png b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_online.png new file mode 100644 index 000000000..c0659a70b Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_online.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_pin.png b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_pin.png new file mode 100644 index 000000000..26428a044 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_pin.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_verified.png b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_verified.png new file mode 100644 index 000000000..46433d996 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xhdpi/widget_verified.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_bg.9.png b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_bg.9.png new file mode 100644 index 000000000..2b963818d Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_bg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_check.png b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_check.png new file mode 100644 index 000000000..ac5fa2a35 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_check.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_clock.png b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_clock.png new file mode 100644 index 000000000..3591a535a Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_clock.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_counter.9.png b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_counter.9.png new file mode 100644 index 000000000..6d63b4d7c Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_counter.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_counter_muted.9.png b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_counter_muted.9.png new file mode 100644 index 000000000..ac06bb65e Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_counter_muted.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_edit.9.png b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_edit.9.png new file mode 100644 index 000000000..cac9dee9a Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_edit.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_halfcheck.png b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_halfcheck.png new file mode 100644 index 000000000..9142a25fe Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_halfcheck.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_muted.png b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_muted.png new file mode 100644 index 000000000..4d75e0102 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_muted.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_online.png b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_online.png new file mode 100644 index 000000000..ae13a511b Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_online.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_pin.png b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_pin.png new file mode 100644 index 000000000..f005bfbfe Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_pin.png differ diff --git a/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_verified.png b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_verified.png new file mode 100644 index 000000000..397fa1f06 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-night-xxhdpi/widget_verified.png differ diff --git a/TMessagesProj/src/main/res/drawable-v21/list_selector_ex.xml b/TMessagesProj/src/main/res/drawable-v21/list_selector_ex.xml index 0ba2177bc..52e0f3b84 100644 --- a/TMessagesProj/src/main/res/drawable-v21/list_selector_ex.xml +++ b/TMessagesProj/src/main/res/drawable-v21/list_selector_ex.xml @@ -1,5 +1,7 @@ - + android:color="#0f000000"> + diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/channelintro.png b/TMessagesProj/src/main/res/drawable-xhdpi/channelintro.png deleted file mode 100644 index 59c39b4e7..000000000 Binary files a/TMessagesProj/src/main/res/drawable-xhdpi/channelintro.png and /dev/null differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/msg_delete_auto.png b/TMessagesProj/src/main/res/drawable-xhdpi/msg_delete_auto.png new file mode 100644 index 000000000..9fd64ec28 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/msg_delete_auto.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_abuse.png b/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_abuse.png new file mode 100644 index 000000000..ed979c42d Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_abuse.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_fake.png b/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_fake.png new file mode 100644 index 000000000..81066b316 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_fake.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_other.png b/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_other.png new file mode 100644 index 000000000..c1206a47d Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_other.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_spam.png b/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_spam.png new file mode 100644 index 000000000..4baf91c4e Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_spam.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_violence.png b/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_violence.png new file mode 100644 index 000000000..b889dc6d5 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_violence.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_xxx.png b/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_xxx.png new file mode 100644 index 000000000..105099f38 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/msg_report_xxx.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widget_bg.9.png b/TMessagesProj/src/main/res/drawable-xhdpi/widget_bg.9.png new file mode 100644 index 000000000..1d9ecbde3 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widget_bg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widget_check.png b/TMessagesProj/src/main/res/drawable-xhdpi/widget_check.png new file mode 100644 index 000000000..3e5ce06e4 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widget_check.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widget_clock.png b/TMessagesProj/src/main/res/drawable-xhdpi/widget_clock.png new file mode 100644 index 000000000..22dc1bb40 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widget_clock.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widget_counter.9.png b/TMessagesProj/src/main/res/drawable-xhdpi/widget_counter.9.png new file mode 100644 index 000000000..22ba5f991 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widget_counter.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widget_counter_muted.9.png b/TMessagesProj/src/main/res/drawable-xhdpi/widget_counter_muted.9.png new file mode 100644 index 000000000..2395cabf1 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widget_counter_muted.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widget_edit.9.png b/TMessagesProj/src/main/res/drawable-xhdpi/widget_edit.9.png new file mode 100644 index 000000000..1964af0e4 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widget_edit.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widget_halfcheck.png b/TMessagesProj/src/main/res/drawable-xhdpi/widget_halfcheck.png new file mode 100644 index 000000000..cf4b251ca Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widget_halfcheck.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widget_muted.png b/TMessagesProj/src/main/res/drawable-xhdpi/widget_muted.png new file mode 100644 index 000000000..2dd215018 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widget_muted.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widget_online.png b/TMessagesProj/src/main/res/drawable-xhdpi/widget_online.png new file mode 100644 index 000000000..e38d04d1b Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widget_online.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widget_pin.png b/TMessagesProj/src/main/res/drawable-xhdpi/widget_pin.png new file mode 100644 index 000000000..82a1cefb4 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widget_pin.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widget_verified.png b/TMessagesProj/src/main/res/drawable-xhdpi/widget_verified.png new file mode 100644 index 000000000..501811a28 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widget_verified.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widgets_dark_badgebg.9.png b/TMessagesProj/src/main/res/drawable-xhdpi/widgets_dark_badgebg.9.png new file mode 100644 index 000000000..254c70988 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widgets_dark_badgebg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widgets_dark_plus.png b/TMessagesProj/src/main/res/drawable-xhdpi/widgets_dark_plus.png new file mode 100644 index 000000000..765d743e0 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widgets_dark_plus.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widgets_light_badgebg.9.png b/TMessagesProj/src/main/res/drawable-xhdpi/widgets_light_badgebg.9.png new file mode 100644 index 000000000..ab6da3cba Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widgets_light_badgebg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-xhdpi/widgets_light_plus.png b/TMessagesProj/src/main/res/drawable-xhdpi/widgets_light_plus.png new file mode 100644 index 000000000..6c968bb71 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xhdpi/widgets_light_plus.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/channelintro.png b/TMessagesProj/src/main/res/drawable-xxhdpi/channelintro.png deleted file mode 100644 index 3fd2c8296..000000000 Binary files a/TMessagesProj/src/main/res/drawable-xxhdpi/channelintro.png and /dev/null differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/msg_delete_auto.png b/TMessagesProj/src/main/res/drawable-xxhdpi/msg_delete_auto.png new file mode 100644 index 000000000..9112817b1 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/msg_delete_auto.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_abuse.png b/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_abuse.png new file mode 100644 index 000000000..483b555b8 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_abuse.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_fake.png b/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_fake.png new file mode 100644 index 000000000..df2f194e6 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_fake.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_other.png b/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_other.png new file mode 100644 index 000000000..647d78063 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_other.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_spam.png b/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_spam.png new file mode 100644 index 000000000..b785ac877 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_spam.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_violence.png b/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_violence.png new file mode 100644 index 000000000..f05e30e46 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_violence.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_xxx.png b/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_xxx.png new file mode 100644 index 000000000..e2d868bf8 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/msg_report_xxx.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widget_bg.9.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_bg.9.png new file mode 100644 index 000000000..fb97914c5 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_bg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widget_check.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_check.png new file mode 100644 index 000000000..e778c885d Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_check.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widget_clock.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_clock.png new file mode 100644 index 000000000..1e1fe9039 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_clock.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widget_counter.9.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_counter.9.png new file mode 100644 index 000000000..ac0ba9727 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_counter.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widget_counter_muted.9.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_counter_muted.9.png new file mode 100644 index 000000000..c2308a727 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_counter_muted.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widget_edit.9.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_edit.9.png new file mode 100644 index 000000000..73b2cdf7a Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_edit.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widget_halfcheck.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_halfcheck.png new file mode 100644 index 000000000..886c98411 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_halfcheck.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widget_muted.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_muted.png new file mode 100644 index 000000000..3e3c394b8 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_muted.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widget_online.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_online.png new file mode 100644 index 000000000..b2d8a7a61 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_online.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widget_pin.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_pin.png new file mode 100644 index 000000000..7aeacae52 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_pin.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widget_verified.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_verified.png new file mode 100644 index 000000000..46a18fad7 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widget_verified.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widgets_dark_badgebg.9.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widgets_dark_badgebg.9.png new file mode 100644 index 000000000..7f38c9e38 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widgets_dark_badgebg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widgets_dark_plus.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widgets_dark_plus.png new file mode 100644 index 000000000..e62330a34 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widgets_dark_plus.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widgets_light_badgebg.9.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widgets_light_badgebg.9.png new file mode 100644 index 000000000..c231086be Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widgets_light_badgebg.9.png differ diff --git a/TMessagesProj/src/main/res/drawable-xxhdpi/widgets_light_plus.png b/TMessagesProj/src/main/res/drawable-xxhdpi/widgets_light_plus.png new file mode 100644 index 000000000..dea680d02 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable-xxhdpi/widgets_light_plus.png differ diff --git a/TMessagesProj/src/main/res/drawable/chats_widget_preview.png b/TMessagesProj/src/main/res/drawable/chats_widget_preview.png new file mode 100644 index 000000000..1ff9796d5 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable/chats_widget_preview.png differ diff --git a/TMessagesProj/src/main/res/drawable/contacts_widget_preview.png b/TMessagesProj/src/main/res/drawable/contacts_widget_preview.png new file mode 100644 index 000000000..a06bdfab6 Binary files /dev/null and b/TMessagesProj/src/main/res/drawable/contacts_widget_preview.png differ diff --git a/TMessagesProj/src/main/res/drawable/gem_l.png b/TMessagesProj/src/main/res/drawable/gem_l.png deleted file mode 100644 index 06c378b6f..000000000 Binary files a/TMessagesProj/src/main/res/drawable/gem_l.png and /dev/null differ diff --git a/TMessagesProj/src/main/res/drawable/shortcut_preview.png b/TMessagesProj/src/main/res/drawable/shortcut_preview.png deleted file mode 100644 index 8b1ba2043..000000000 Binary files a/TMessagesProj/src/main/res/drawable/shortcut_preview.png and /dev/null differ diff --git a/TMessagesProj/src/main/res/layout/contacts_widget_item.xml b/TMessagesProj/src/main/res/layout/contacts_widget_item.xml new file mode 100644 index 000000000..4ac3ddd7c --- /dev/null +++ b/TMessagesProj/src/main/res/layout/contacts_widget_item.xml @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/layout/shortcut_widget_layout.xml b/TMessagesProj/src/main/res/layout/contacts_widget_layout_1.xml similarity index 59% rename from TMessagesProj/src/main/res/layout/shortcut_widget_layout.xml rename to TMessagesProj/src/main/res/layout/contacts_widget_layout_1.xml index d55964ba5..5baf9e536 100644 --- a/TMessagesProj/src/main/res/layout/shortcut_widget_layout.xml +++ b/TMessagesProj/src/main/res/layout/contacts_widget_layout_1.xml @@ -1,25 +1,26 @@ + android:layout_height="90dp" + android:background="@drawable/widget_bg" + android:padding="2dp"> - + android:scrollbars="none" + android:divider="#00000000" /> + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/layout/contacts_widget_layout_2.xml b/TMessagesProj/src/main/res/layout/contacts_widget_layout_2.xml new file mode 100644 index 000000000..734fd9387 --- /dev/null +++ b/TMessagesProj/src/main/res/layout/contacts_widget_layout_2.xml @@ -0,0 +1,26 @@ + + + + + + + + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/layout/contacts_widget_layout_3.xml b/TMessagesProj/src/main/res/layout/contacts_widget_layout_3.xml new file mode 100644 index 000000000..47b2a4dbd --- /dev/null +++ b/TMessagesProj/src/main/res/layout/contacts_widget_layout_3.xml @@ -0,0 +1,26 @@ + + + + + + + + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/layout/contacts_widget_layout_4.xml b/TMessagesProj/src/main/res/layout/contacts_widget_layout_4.xml new file mode 100644 index 000000000..21af05649 --- /dev/null +++ b/TMessagesProj/src/main/res/layout/contacts_widget_layout_4.xml @@ -0,0 +1,26 @@ + + + + + + + + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/layout/feed_widget_layout.xml b/TMessagesProj/src/main/res/layout/feed_widget_layout.xml index f0b8e7c1b..17595fb08 100644 --- a/TMessagesProj/src/main/res/layout/feed_widget_layout.xml +++ b/TMessagesProj/src/main/res/layout/feed_widget_layout.xml @@ -4,14 +4,16 @@ android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" - android:background="@drawable/popup_fixed_alert"> + android:background="@drawable/widget_bg" + android:padding="2dp"> - + tools:listitem="@layout/collection_widget_list_item" /> \ No newline at end of file diff --git a/TMessagesProj/src/main/res/layout/shortcut_widget_item.xml b/TMessagesProj/src/main/res/layout/shortcut_widget_item.xml index 9b06dd874..bac9e1ece 100644 --- a/TMessagesProj/src/main/res/layout/shortcut_widget_item.xml +++ b/TMessagesProj/src/main/res/layout/shortcut_widget_item.xml @@ -4,9 +4,10 @@ android:layout_width="match_parent" android:minHeight="72dp" android:id="@+id/shortcut_widget_item" - android:layout_height="wrap_content"> + android:layout_height="72dp"> - - + android:textColor="@color/widget_time" /> @@ -54,35 +56,43 @@ android:layout_gravity="top|start" android:layout_marginEnd="16dp"> - + android:layout_toLeftOf="@+id/shortcut_widget_item_badge" /> - + android:background="@drawable/widget_counter" + android:textColor="@color/widget_badge" /> - + android:layout_gravity="bottom|start" + android:background="@color/widget_divider" /> \ No newline at end of file diff --git a/TMessagesProj/src/main/res/layout/shortcut_widget_layout_1.xml b/TMessagesProj/src/main/res/layout/shortcut_widget_layout_1.xml new file mode 100644 index 000000000..a61710544 --- /dev/null +++ b/TMessagesProj/src/main/res/layout/shortcut_widget_layout_1.xml @@ -0,0 +1,26 @@ + + + + + + + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/layout/shortcut_widget_layout_2.xml b/TMessagesProj/src/main/res/layout/shortcut_widget_layout_2.xml new file mode 100644 index 000000000..bac838936 --- /dev/null +++ b/TMessagesProj/src/main/res/layout/shortcut_widget_layout_2.xml @@ -0,0 +1,26 @@ + + + + + + + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/layout/shortcut_widget_layout_3.xml b/TMessagesProj/src/main/res/layout/shortcut_widget_layout_3.xml new file mode 100644 index 000000000..240115d7b --- /dev/null +++ b/TMessagesProj/src/main/res/layout/shortcut_widget_layout_3.xml @@ -0,0 +1,26 @@ + + + + + + + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/layout/shortcut_widget_layout_4.xml b/TMessagesProj/src/main/res/layout/shortcut_widget_layout_4.xml new file mode 100644 index 000000000..605aa4549 --- /dev/null +++ b/TMessagesProj/src/main/res/layout/shortcut_widget_layout_4.xml @@ -0,0 +1,26 @@ + + + + + + + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/layout/widget_deleted.xml b/TMessagesProj/src/main/res/layout/widget_deleted.xml new file mode 100644 index 000000000..77852c0e1 --- /dev/null +++ b/TMessagesProj/src/main/res/layout/widget_deleted.xml @@ -0,0 +1,18 @@ + + + + + + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/layout/widget_edititem.xml b/TMessagesProj/src/main/res/layout/widget_edititem.xml new file mode 100644 index 000000000..42bbb5d17 --- /dev/null +++ b/TMessagesProj/src/main/res/layout/widget_edititem.xml @@ -0,0 +1,19 @@ + + + + + + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_abuse.png b/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_abuse.png new file mode 100644 index 000000000..79a4a5708 Binary files /dev/null and b/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_abuse.png differ diff --git a/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_fake.png b/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_fake.png new file mode 100644 index 000000000..b736e4ac7 Binary files /dev/null and b/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_fake.png differ diff --git a/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_other.png b/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_other.png new file mode 100644 index 000000000..c803a127c Binary files /dev/null and b/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_other.png differ diff --git a/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_spam.png b/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_spam.png new file mode 100644 index 000000000..334d346e3 Binary files /dev/null and b/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_spam.png differ diff --git a/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_violence.png b/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_violence.png new file mode 100644 index 000000000..8359fe0fd Binary files /dev/null and b/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_violence.png differ diff --git a/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_xxx.png b/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_xxx.png new file mode 100644 index 000000000..f6be5ec98 Binary files /dev/null and b/TMessagesProj/src/main/res/mipmap-mdpi/msg_report_xxx.png differ diff --git a/TMessagesProj/src/main/res/raw/channel_create.tgs b/TMessagesProj/src/main/res/raw/channel_create.tgs new file mode 100644 index 000000000..7142eb9b4 --- /dev/null +++ b/TMessagesProj/src/main/res/raw/channel_create.tgs @@ -0,0 +1 @@ +{"tgs":1,"v":"5.5.2.2","fr":60,"ip":60,"op":240,"w":512,"h":512,"nm":"ANIMA_channels_3sec","ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"star1","sr":1,"ks":{"p":{"a":0,"k":[395.037,65,0]},"a":{"a":0,"k":[29.714,29.714,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":150,"s":[0,0,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":161.188,"s":[80,80,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":172.375,"s":[120,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":183.562,"s":[80,80,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":194.75,"s":[120,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":205.938,"s":[80,80,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":217.125,"s":[120,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":228.312,"s":[80,80,100]},{"t":240,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-16.353,-1.561],[-0.002,1.663],[0,0.011],[0,0.011],[1.656,-0.158],[-1.562,16.357],[1.663,0.003],[0.011,0],[0.011,0],[-0.158,-1.656],[16.357,1.562],[0.002,-1.663],[0,-0.011],[0,-0.011],[-1.656,0.158],[1.561,-16.353],[-1.663,-0.003],[-0.011,0],[-0.011,0],[0.157,1.656]],"o":[[1.656,0.158],[0,-0.011],[0,-0.011],[-0.002,-1.664],[-16.276,1.552],[0.158,-1.656],[-0.011,0],[-0.011,0],[-1.663,0.003],[1.551,16.276],[-1.655,-0.158],[0,0.011],[0,0.011],[0.002,1.664],[16.28,-1.552],[-0.158,1.655],[0.011,0],[0.011,0],[1.663,-0.003],[-1.552,-16.28]],"v":[[26.333,2.846],[29.464,0.033],[29.464,0],[29.464,-0.033],[26.332,-2.846],[2.846,-26.332],[0.034,-29.464],[0.001,-29.464],[-0.034,-29.464],[-2.845,-26.331],[-26.332,-2.846],[-29.464,-0.033],[-29.464,0],[-29.464,0.033],[-26.331,2.846],[-2.845,26.333],[-0.033,29.464],[0.001,29.464],[0.034,29.464],[2.846,26.332]],"c":true}},"nm":"Path 1","hd":false},{"ty":"gr","it":[{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"mm","mm":4,"nm":"Merge Paths 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.933000033509,0.128999986836,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[29.713,29.714]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":150,"op":240,"st":32,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"star5","sr":1,"ks":{"p":{"a":0,"k":[339.251,48.046,0]},"a":{"a":0,"k":[15.683,15.683,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":150,"s":[0,0,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":161.188,"s":[120,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":172.375,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":183.562,"s":[120,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":194.75,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":205.938,"s":[120,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":217.125,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":228.312,"s":[120,120,100]},{"t":240,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-8.565,-0.818],[-0.001,0.871],[0,0.006],[0,0],[0.868,-0.083],[-0.817,8.567],[0.871,0.001],[0.005,0],[0.006,0],[-0.083,-0.868],[8.568,0.818],[0.002,-0.871],[0,0],[0,-0.006],[-0.867,0.083],[0.818,-8.566],[-0.871,-0.002],[-0.006,0],[-0.006,0],[0.083,0.868]],"o":[[0.867,0.083],[0,-0.006],[0,0],[-0.001,-0.871],[-8.525,0.812],[0.083,-0.867],[-0.006,0],[-0.006,0],[-0.871,0.001],[0.813,8.525],[-0.867,-0.083],[0,0],[0,0.006],[0.002,0.871],[8.527,-0.813],[-0.083,0.867],[0.006,0],[0.006,0],[0.871,-0.002],[-0.812,-8.527]],"v":[[13.793,1.49],[15.432,0.018],[15.432,-0.001],[15.432,-0.018],[13.792,-1.49],[1.491,-13.792],[0.017,-15.432],[0,-15.432],[-0.018,-15.432],[-1.491,-13.792],[-13.793,-1.49],[-15.432,-0.018],[-15.432,-0.001],[-15.432,0.018],[-13.792,1.49],[-1.491,13.792],[-0.018,15.432],[0,15.432],[0.017,15.432],[1.491,13.792]],"c":true}},"nm":"Path 1","hd":false},{"ty":"gr","it":[{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"mm","mm":4,"nm":"Merge Paths 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.9453125,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[15.682,15.683]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":150,"op":240,"st":32,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"star3","sr":1,"ks":{"p":{"a":0,"k":[52.161,198.408,0]},"a":{"a":0,"k":[22.666,22.667,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":150,"s":[0,0,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":161.188,"s":[120,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":172.375,"s":[90,90,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":183.562,"s":[120,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":194.75,"s":[90,90,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":205.938,"s":[120,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":217.125,"s":[90,90,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":228.312,"s":[120,120,100]},{"t":240,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-12.442,-1.188],[-0.002,1.265],[0,0.008],[0,0.009],[1.26,-0.12],[-1.188,12.444],[1.265,0.002],[0.008,0],[0.008,0],[-0.12,-1.259],[12.444,1.188],[0.002,-1.266],[0,0],[0,-0.008],[-1.259,0.12],[1.187,-12.442],[-1.265,-0.002],[-0.008,0],[-0.008,0],[0.12,1.26]],"o":[[1.26,0.12],[0,-0.008],[0,0],[-0.002,-1.265],[-12.383,1.181],[0.12,-1.26],[-0.008,0],[-0.009,0],[-1.266,0.002],[1.18,12.384],[-1.26,-0.121],[0,0.008],[0,0.017],[0.002,1.266],[12.386,-1.181],[-0.121,1.26],[0.008,0],[0.008,0],[1.266,-0.002],[-1.181,-12.386]],"v":[[20.035,2.165],[22.417,0.026],[22.417,0.001],[22.417,-0.025],[20.033,-2.165],[2.165,-20.033],[0.025,-22.417],[0.001,-22.417],[-0.025,-22.417],[-2.165,-20.033],[-20.033,-2.164],[-22.417,-0.024],[-22.417,-0.008],[-22.417,0.026],[-20.033,2.165],[-2.165,20.035],[-0.025,22.417],[0.001,22.417],[0.025,22.417],[2.165,20.034]],"c":true}},"nm":"Path 1","hd":false},{"ty":"gr","it":[{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"mm","mm":4,"nm":"Merge Paths 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.933000033509,0.128999986836,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[22.666,22.667]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":150,"op":240,"st":32,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 1","parent":5,"sr":1,"ks":{"o":{"a":0,"k":66},"r":{"a":0,"k":-5.65},"p":{"a":0,"k":[56.716,64.656,0]},"a":{"a":0,"k":[36.365,-4.849,0]},"s":{"a":0,"k":[66.925,66.925,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":76,"s":[{"i":[[-3.945,1.633],[13.23,3.218],[-9.308,-1.061]],"o":[[-18.657,-0.489],[3.468,0.868],[18.163,-0.096]],"v":[[69.158,-17.577],[22.771,-20.589],[42.512,-16.81]],"c":true}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":90,"s":[{"i":[[0.189,4.657],[0.757,-3.47],[-7.151,-7.547]],"o":[[-0.134,-3.287],[-0.912,4.177],[16.094,-3.561]],"v":[[69.796,-9.127],[23.975,-9.31],[25.457,21.116]],"c":true}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":135,"s":[{"i":[[0.189,4.657],[0.757,-3.47],[-7.151,-7.547]],"o":[[-0.134,-3.287],[-0.912,4.177],[16.094,-3.561]],"v":[[69.796,-9.127],[23.975,-9.31],[27.918,53.218]],"c":true}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":165,"s":[{"i":[[0.189,4.657],[-1.723,-3.106],[-7.151,-7.547]],"o":[[-0.134,-3.287],[9.99,18.007],[7.964,-11.326]],"v":[[52.685,-8.681],[6.963,-10.906],[42.385,26.004]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.79,"y":0},"t":180,"s":[{"i":[[0.189,4.657],[21.295,3.199],[-7.151,-7.547]],"o":[[-16.571,3.048],[3.963,23.863],[7.964,-11.326]],"v":[[50.966,-7.479],[4.65,-10.276],[23.202,54.869]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[{"i":[[0.189,4.657],[21.295,3.199],[-7.151,-7.547]],"o":[[-16.571,3.048],[3.963,23.863],[7.964,-11.326]],"v":[[50.966,-7.479],[4.65,-10.276],[23.202,54.869]],"c":true}]},{"t":240,"s":[{"i":[[-3.945,1.633],[13.23,3.218],[-9.308,-1.061]],"o":[[-18.657,-0.489],[3.468,0.868],[18.163,-0.096]],"v":[[69.158,-17.577],[22.771,-20.589],[42.512,-16.81]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764705882,0.207843137255,0.007843137255,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":76,"op":249,"st":-444,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"mouth","parent":7,"sr":1,"ks":{"p":{"a":0,"k":[98.535,95.328,0]},"a":{"a":0,"k":[63.424,46.393,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":60,"s":[{"i":[[-1.82,0.942],[36.777,-1.283],[11.162,4.237],[-6.444,-2.035],[-15.929,0.517],[-11.512,4.035]],"o":[[-9.744,4.999],[-24.317,0.848],[8.345,2.137],[12.913,1.117],[28.618,-0.929],[2.898,-1.016]],"v":[[61.102,10.81],[-5.041,22.466],[-68.829,15.713],[-50.028,20.857],[-6.13,22.922],[54.026,13.774]],"c":true}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":90,"s":[{"i":[[1.548,2.596],[32.912,-1.283],[9.988,4.237],[-5.767,-2.035],[-14.231,-1.052],[-10.276,13.293]],"o":[[-4.481,-7.512],[-21.761,0.848],[7.468,2.137],[-9.455,22.394],[24.554,1.815],[2.587,-3.346]],"v":[[46.639,16.515],[-11.746,22.466],[-68.829,15.713],[-52.004,20.857],[-27.856,53.582],[44.757,25.599]],"c":true}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":135,"s":[{"i":[[1.548,2.596],[32.912,-1.283],[9.988,4.237],[-5.767,-2.035],[-14.231,-1.052],[-7.036,15.999]],"o":[[-4.481,-7.512],[-21.761,0.848],[7.468,2.137],[10.31,29.418],[24.554,1.815],[1.703,-3.871]],"v":[[46.639,16.515],[-11.746,22.466],[-68.829,15.713],[-52.004,20.857],[-17.229,80.243],[46.426,25.964]],"c":true}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":165,"s":[{"i":[[-5.402,3.167],[32.912,-1.283],[4.502,-7.746],[-8.213,-6.699],[-15.156,4.686],[-8.26,22.141]],"o":[[-14.463,9.031],[-21.761,0.848],[-3.217,5.535],[17.95,14.641],[23.654,-7.313],[4.444,-1.578]],"v":[[62.996,7.486],[-11.746,22.466],[-67.36,17.305],[-60.851,36.518],[9.717,53.934],[45.02,16.347]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.79,"y":0},"t":180,"s":[{"i":[[-5.402,3.167],[32.912,-1.283],[4.502,-7.746],[-5.183,-9.244],[-14.667,6.045],[-15.764,19.306]],"o":[[-14.463,9.031],[-21.761,0.848],[-3.217,5.535],[28.467,50.775],[22.558,-9.297],[4.444,-1.578]],"v":[[62.996,7.486],[-11.746,22.466],[-67.36,17.305],[-62.718,36.218],[4.085,80.147],[36.353,17.122]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[{"i":[[-5.402,3.167],[32.912,-1.283],[4.502,-7.746],[-5.183,-9.244],[-14.667,6.045],[-15.764,19.306]],"o":[[-14.463,9.031],[-21.761,0.848],[-3.217,5.535],[28.467,50.775],[22.558,-9.297],[4.444,-1.578]],"v":[[62.996,7.486],[-11.746,22.466],[-67.36,17.305],[-62.718,36.218],[4.085,80.147],[36.353,17.122]],"c":true}]},{"t":240,"s":[{"i":[[-1.82,0.942],[36.777,-1.283],[11.162,4.237],[-6.444,-2.035],[-15.929,0.517],[-11.512,4.035]],"o":[[-9.744,4.999],[-24.317,0.848],[8.345,2.137],[12.913,1.117],[28.618,-0.929],[2.898,-1.016]],"v":[[61.102,10.81],[-5.041,22.466],[-68.829,15.713],[-50.028,20.857],[-6.13,22.922],[54.026,13.774]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":100},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.490196078431,0.035294117647,0.035294117647,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[64.819,32.647]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"fl","c":{"a":0,"k":[0.490196078431,0.035294117647,0.035294117647,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false}],"ip":-57,"op":253,"st":60,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"beak_bl","parent":7,"sr":1,"ks":{"r":{"a":0,"k":7.036},"p":{"a":0,"k":[50.927,24.827,0]},"a":{"a":0,"k":[33.59,24.06,0]},"s":{"a":0,"k":[100.251,100.251,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.063,33.021]],"o":[[10.492,-2.644],[0,0]],"v":[[14.716,61.902],[42.688,4.863]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.705882352941,0.517647058824,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[33.59,24.06]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[10]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[10]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[10]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[10]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[10]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[10]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[10]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":228,"s":[10]},{"t":240,"s":[20]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[80]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[90]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[70]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[80]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[90]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[70]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[80]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[80]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[90]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[70]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":228,"s":[80]},{"t":240,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":-57,"op":253,"st":60,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"beak","parent":14,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":60,"s":[1.238]},{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":90,"s":[20.885]},{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":135,"s":[20.885]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":165,"s":[-10]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":230,"s":[-10]},{"t":240,"s":[1.238]}]},"p":{"a":1,"k":[{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":60,"s":[198.417,241.127,0],"to":[-24.307,24.986,0],"ti":[1.552,33.826,0]},{"t":90,"s":[147.268,149.821,0],"h":1},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":135,"s":[147.268,149.821,0],"to":[18.252,33.287,0],"ti":[-16.042,38.68,0]},{"t":165,"s":[238.411,181.727,0],"h":1},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[238.411,181.727,0],"to":[-2.516,10.266,0],"ti":[24.307,-24.986,0]},{"t":240,"s":[198.417,241.127,0]}]},"a":{"a":0,"k":[97.708,70.794,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":160,"s":[106.05,93.1,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":166,"s":[108.05,94.856,100]},{"t":177,"s":[106.05,93.1,100],"h":1},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":230,"s":[106.05,93.1,100]},{"t":240,"s":[106.05,93.1,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":60,"s":[{"i":[[9.2,-6.21],[25.985,13.864],[0.052,6.168],[-9.31,0.197],[-23.063,2.556],[-31.058,14.194],[-2.093,-7.204]],"o":[[-27.141,18.319],[-5.74,-3.063],[-0.067,-7.995],[53.629,-1.135],[27.153,-3.011],[7.678,-3.509],[1.991,6.852]],"v":[[68.793,33.675],[-71.398,41.985],[-80.063,26.452],[-66.148,10.491],[-3.943,-51.521],[61.715,3.092],[78.111,11.562]],"c":true}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":90,"s":[{"i":[[6.583,-10.649],[-0.473,54.873],[12.428,5.829],[-9.913,0.21],[-23.063,2.556],[-31.01,9.829],[-4.199,-7.062]],"o":[[-26.544,42.943],[0.108,-12.517],[-8.932,-5.014],[53.629,-1.135],[27.153,-3.011],[8.048,-2.551],[3.994,6.717]],"v":[[64.225,42.066],[-59.714,49.345],[-66.263,26.912],[-66.148,10.491],[-3.942,-51.521],[46.001,6.737],[66.38,14.854]],"c":true}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":135,"s":[{"i":[[5.988,-10.995],[22.645,116.754],[12.428,5.829],[-9.913,0.21],[-23.063,2.556],[-31.01,9.829],[-4.199,-7.062]],"o":[[-27.469,50.438],[-2.383,-12.288],[-8.932,-5.014],[53.629,-1.135],[27.153,-3.011],[8.048,-2.551],[3.994,6.717]],"v":[[64.225,42.066],[-51.092,46.374],[-66.263,26.912],[-66.148,10.491],[-3.942,-51.521],[46.001,6.737],[66.38,14.854]],"c":true}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":165,"s":[{"i":[[0.268,-10.856],[32.986,28.873],[2.287,12.815],[-9.913,0.21],[-23.063,2.556],[-31.01,9.829],[11.601,-6.329]],"o":[[-1.814,73.412],[-6.64,-5.812],[-2.287,-12.815],[53.629,-1.135],[27.153,-3.011],[9.063,-2.872],[-6.152,3.356]],"v":[[48.708,30.89],[-62.014,62.771],[-81.355,35.504],[-66.148,10.491],[-3.942,-51.521],[61.531,2.457],[65.208,19.172]],"c":true}]},{"t":180,"s":[{"i":[[0.677,-10.838],[35.29,61.142],[2.287,12.815],[-9.913,0.21],[-23.063,2.556],[-31.01,9.829],[11.601,-6.329]],"o":[[-6.67,106.802],[-4.639,-8.038],[-2.287,-12.815],[53.629,-1.135],[27.153,-3.011],[9.063,-2.872],[-6.152,3.356]],"v":[[41.446,35.688],[-66.271,70.221],[-81.355,35.504],[-66.148,10.491],[-3.942,-51.521],[61.531,2.457],[65.208,19.172]],"c":true}],"h":1},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[{"i":[[0.677,-10.838],[35.29,61.142],[2.287,12.815],[-9.913,0.21],[-23.063,2.556],[-31.01,9.829],[11.601,-6.329]],"o":[[-6.67,106.802],[-4.639,-8.038],[-2.287,-12.815],[53.629,-1.135],[27.153,-3.011],[9.063,-2.872],[-6.152,3.356]],"v":[[41.446,35.688],[-66.271,70.221],[-81.355,35.504],[-66.148,10.491],[-3.942,-51.521],[61.531,2.457],[65.208,19.172]],"c":true}]},{"t":240,"s":[{"i":[[9.2,-6.21],[25.985,13.864],[0.052,6.168],[-9.31,0.197],[-23.063,2.556],[-31.058,14.194],[-2.093,-7.204]],"o":[[-27.141,18.319],[-5.74,-3.063],[-0.067,-7.995],[53.629,-1.135],[27.153,-3.011],[7.678,-3.509],[1.991,6.852]],"v":[[68.793,33.675],[-71.398,41.985],[-80.063,26.452],[-66.148,10.491],[-3.943,-51.521],[61.715,3.092],[78.111,11.562]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.811999990426,0.20800000359,0.008000000785,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.361000001197,0.118000000598,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[97.207,71.199]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-57,"op":253,"st":60,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"eye_r 2","parent":9,"sr":1,"ks":{"p":{"a":0,"k":[27.147,31.05,0]},"a":{"a":0,"k":[27.147,31.05,0]},"s":{"a":0,"k":[18.547,18.547,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":136,"s":[{"i":[[-0.661,-16.693],[14.49,-0.574],[0.661,16.693],[-14.49,0.574]],"o":[[0.661,16.693],[-14.49,0.574],[-0.662,-16.693],[14.49,-0.574]],"v":[[26.237,-1.04],[1.198,30.225],[-26.236,1.039],[-1.198,-30.225]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":142,"s":[{"i":[[-0.661,-8.008],[14.49,-0.275],[0.662,8.008],[-14.49,0.275]],"o":[[0.661,8.008],[-14.49,0.275],[-0.662,-8.008],[14.49,-0.275]],"v":[[28.471,137.204],[3.432,152.202],[-24.001,138.201],[1.037,123.203]],"c":true}]},{"i":{"x":0.28,"y":1},"o":{"x":0.167,"y":0},"t":148,"s":[{"i":[[-0.661,-16.693],[14.49,-0.574],[0.661,16.693],[-14.49,0.574]],"o":[[0.661,16.693],[-14.49,0.574],[-0.662,-16.693],[14.49,-0.574]],"v":[[26.237,-1.04],[1.198,30.225],[-26.236,1.039],[-1.198,-30.225]],"c":true}]},{"i":{"x":0.28,"y":1},"o":{"x":0.72,"y":0},"t":180,"s":[{"i":[[-1.386,-31.486],[30.381,-1.083],[1.388,31.486],[-30.381,1.083]],"o":[[1.386,31.486],[-30.381,1.083],[-1.388,-31.486],[30.381,-1.083]],"v":[[146.121,25.435],[93.623,84.406],[36.106,29.357],[88.602,-29.614]],"c":true}]},{"i":{"x":0.28,"y":1},"o":{"x":0.72,"y":0},"t":188,"s":[{"i":[[-1.581,-10.831],[34.658,-0.372],[1.583,10.831],[-34.658,0.372]],"o":[[1.581,10.831],[-34.658,0.372],[-1.583,-10.831],[34.658,-0.372]],"v":[[157.586,131.333],[97.696,151.62],[32.08,132.682],[91.968,112.396]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.72,"y":0},"t":198,"s":[{"i":[[-1.386,-31.486],[30.381,-1.083],[1.388,31.486],[-30.381,1.083]],"o":[[1.386,31.486],[-30.381,1.083],[-1.388,-31.486],[30.381,-1.083]],"v":[[146.121,25.435],[93.623,84.406],[36.106,29.357],[88.602,-29.614]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[{"i":[[-1.386,-31.486],[30.381,-1.083],[1.388,31.486],[-30.381,1.083]],"o":[[1.386,31.486],[-30.381,1.083],[-1.388,-31.486],[30.381,-1.083]],"v":[[146.121,25.435],[93.623,84.406],[36.106,29.357],[88.602,-29.614]],"c":true}]},{"t":240,"s":[{"i":[[-0.661,-16.693],[14.49,-0.574],[0.661,16.693],[-14.49,0.574]],"o":[[0.661,16.693],[-14.49,0.574],[-0.662,-16.693],[14.49,-0.574]],"v":[[26.237,-1.04],[1.198,30.225],[-26.236,1.039],[-1.198,-30.225]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.04],"y":[1]},"o":{"x":[0.96],"y":[0]},"t":136,"s":[1,1,1,1]},{"i":{"x":[0.04],"y":[1]},"o":{"x":[0.96],"y":[0]},"t":142,"s":[0,0,0,1]},{"i":{"x":[0.04],"y":[1]},"o":{"x":[0.96],"y":[0]},"t":148,"s":[1,1,1,1]},{"i":{"x":[0.04],"y":[1]},"o":{"x":[0.96],"y":[0]},"t":182,"s":[1,1,1,1]},{"i":{"x":[0.04],"y":[1]},"o":{"x":[0.96],"y":[0]},"t":188,"s":[0,0,0,1]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":194,"s":[1,1,1,1]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":230,"s":[1,1,1,1]},{"t":240,"s":[1,1,1,1]}]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-23.787,-45.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-57,"op":281,"st":60,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"eye_r","parent":7,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":134,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":164,"s":[-6.368]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":230,"s":[-6.368]},{"t":240,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":134,"s":[190.121,27.645,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.79,"y":0.79},"t":164,"s":[171.447,24.639,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[171.447,24.639,0],"to":[0,0,0],"ti":[0,0,0]},{"t":240,"s":[190.121,27.645,0]}]},"a":{"a":0,"k":[27.148,31.05,0]},"s":{"a":1,"k":[{"i":{"x":[0.21,0.21,0.21],"y":[1,1,1]},"o":{"x":[0.79,0.79,0.79],"y":[0,0,0]},"t":134,"s":[100,100,100]},{"i":{"x":[0.21,0.21,0.21],"y":[1,1,1]},"o":{"x":[0.79,0.79,0.79],"y":[0,0,0]},"t":165,"s":[80,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.79,0.79,0.79],"y":[0,0,0]},"t":180,"s":[104,130,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":230,"s":[104,130,100]},{"t":240,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":136,"s":[{"i":[[-0.661,-16.693],[14.49,-0.574],[0.661,16.693],[-14.49,0.574]],"o":[[0.661,16.693],[-14.49,0.574],[-0.662,-16.693],[14.49,-0.574]],"v":[[26.237,-1.04],[1.198,30.225],[-26.236,1.039],[-1.198,-30.225]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":142,"s":[{"i":[[-2.853,-1.819],[17.436,-0.513],[-2.3,2.121],[-24.836,1.391]],"o":[[4.6,2.933],[-26.239,0.772],[3.242,-2.989],[21.835,-1.223]],"v":[[26.237,5.857],[1.819,15.499],[-26.236,7.936],[0.922,8.214]],"c":true}]},{"i":{"x":0.28,"y":1},"o":{"x":0.167,"y":0},"t":148,"s":[{"i":[[-0.661,-16.693],[14.49,-0.574],[0.661,16.693],[-14.49,0.574]],"o":[[0.661,16.693],[-14.49,0.574],[-0.662,-16.693],[14.49,-0.574]],"v":[[26.237,-1.04],[1.198,30.225],[-26.236,1.039],[-1.198,-30.225]],"c":true}]},{"i":{"x":0.28,"y":1},"o":{"x":0.72,"y":0},"t":180,"s":[{"i":[[-0.661,-16.693],[14.49,-0.574],[0.661,16.693],[-14.49,0.574]],"o":[[0.661,16.693],[-14.49,0.574],[-0.662,-16.693],[14.49,-0.574]],"v":[[26.237,-1.04],[1.198,30.225],[-26.236,1.039],[-1.198,-30.225]],"c":true}]},{"i":{"x":0.28,"y":1},"o":{"x":0.72,"y":0},"t":188,"s":[{"i":[[-2.853,-1.819],[17.436,-0.513],[-2.3,2.121],[-24.836,1.391]],"o":[[4.6,2.933],[-26.239,0.772],[3.242,-2.989],[21.835,-1.223]],"v":[[26.237,5.857],[1.819,15.499],[-26.236,7.936],[0.922,8.214]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.72,"y":0},"t":198,"s":[{"i":[[-0.661,-16.693],[14.49,-0.574],[0.661,16.693],[-14.49,0.574]],"o":[[0.661,16.693],[-14.49,0.574],[-0.662,-16.693],[14.49,-0.574]],"v":[[26.237,-1.04],[1.198,30.225],[-26.236,1.039],[-1.198,-30.225]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[{"i":[[-0.661,-16.693],[14.49,-0.574],[0.661,16.693],[-14.49,0.574]],"o":[[0.661,16.693],[-14.49,0.574],[-0.662,-16.693],[14.49,-0.574]],"v":[[26.237,-1.04],[1.198,30.225],[-26.236,1.039],[-1.198,-30.225]],"c":true}]},{"t":240,"s":[{"i":[[-0.661,-16.693],[14.49,-0.574],[0.661,16.693],[-14.49,0.574]],"o":[[0.661,16.693],[-14.49,0.574],[-0.662,-16.693],[14.49,-0.574]],"v":[[26.237,-1.04],[1.198,30.225],[-26.236,1.039],[-1.198,-30.225]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[27.147,31.05]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":136,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":142,"s":[10]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":148,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":188,"s":[10]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":198,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":230,"s":[0]},{"t":240,"s":[0]}]},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":-57,"op":253,"st":60,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"eye_l 2","parent":11,"sr":1,"ks":{"p":{"a":0,"k":[30.388,33.639,0]},"a":{"a":0,"k":[30.388,33.639,0]},"s":{"a":0,"k":[27.37,27.37,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":136,"s":[{"i":[[4.689,-16.192],[14.055,4.071],[-4.689,16.192],[-14.055,-4.07]],"o":[[-4.689,16.192],[-14.055,-4.07],[4.69,-16.192],[14.055,4.071]],"v":[[25.449,7.37],[-8.491,29.318],[-25.449,-7.37],[8.491,-29.319]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":142,"s":[{"i":[[4.689,-7.867],[14.055,1.978],[-4.69,7.867],[-14.055,-1.978]],"o":[[-4.689,7.867],[-14.055,-1.978],[4.69,-7.867],[14.055,1.978]],"v":[[18.569,131.049],[-15.371,141.713],[-32.329,123.887],[1.611,113.223]],"c":true}]},{"i":{"x":0.28,"y":1},"o":{"x":0.167,"y":0},"t":148,"s":[{"i":[[4.689,-16.192],[14.055,4.071],[-4.689,16.192],[-14.055,-4.07]],"o":[[-4.689,16.192],[-14.055,-4.07],[4.69,-16.192],[14.055,4.071]],"v":[[25.449,7.37],[-8.491,29.318],[-25.449,-7.37],[8.491,-29.319]],"c":true}]},{"i":{"x":0.28,"y":1},"o":{"x":0.72,"y":0},"t":180,"s":[{"i":[[7.858,-27.136],[23.555,6.821],[-7.86,27.136],[-23.555,-6.823]],"o":[[-7.858,27.136],[-23.555,-6.821],[7.86,-27.136],[23.555,6.823]],"v":[[103.128,37.851],[46.248,74.633],[17.829,13.148],[74.708,-23.635]],"c":true}]},{"i":{"x":0.28,"y":1},"o":{"x":0.72,"y":0},"t":188,"s":[{"i":[[9.619,-7.965],[26.053,1.777],[-9.621,7.965],[-26.053,-1.777]],"o":[[-9.619,7.965],[-26.053,-1.777],[9.621,-7.965],[26.053,1.777]],"v":[[118.217,126.535],[53.624,137.74],[23.869,120.1],[88.462,108.895]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.72,"y":0},"t":198,"s":[{"i":[[7.858,-27.136],[23.555,6.821],[-7.86,27.136],[-23.555,-6.823]],"o":[[-7.858,27.136],[-23.555,-6.821],[7.86,-27.136],[23.555,6.823]],"v":[[103.128,37.851],[46.248,74.633],[17.829,13.148],[74.708,-23.635]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[{"i":[[7.858,-27.136],[23.555,6.821],[-7.86,27.136],[-23.555,-6.823]],"o":[[-7.858,27.136],[-23.555,-6.821],[7.86,-27.136],[23.555,6.823]],"v":[[103.128,37.851],[46.248,74.633],[17.829,13.148],[74.708,-23.635]],"c":true}]},{"t":240,"s":[{"i":[[4.689,-16.192],[14.055,4.071],[-4.689,16.192],[-14.055,-4.07]],"o":[[-4.689,16.192],[-14.055,-4.07],[4.69,-16.192],[14.055,4.071]],"v":[[25.449,7.37],[-8.491,29.318],[-25.449,-7.37],[8.491,-29.319]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.04],"y":[1]},"o":{"x":[0.96],"y":[0]},"t":136,"s":[1,1,1,1]},{"i":{"x":[0.04],"y":[1]},"o":{"x":[0.96],"y":[0]},"t":142,"s":[0,0,0,1]},{"i":{"x":[0.04],"y":[1]},"o":{"x":[0.96],"y":[0]},"t":148,"s":[1,1,1,1]},{"i":{"x":[0.04],"y":[1]},"o":{"x":[0.96],"y":[0]},"t":182,"s":[1,1,1,1]},{"i":{"x":[0.04],"y":[1]},"o":{"x":[0.96],"y":[0]},"t":188,"s":[0,0,0,1]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":194,"s":[1,1,1,1]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":230,"s":[1,1,1,1]},{"t":240,"s":[1,1,1,1]}]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[15.77,-20.802]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[75.153,75.153]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-57,"op":281,"st":60,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"eye_l","parent":7,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":60,"s":[0]},{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":90,"s":[6.533]},{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":135,"s":[6.533]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":165,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":230,"s":[0]},{"t":240,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":60,"s":[1.347,31.614,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.21,"y":0.21},"o":{"x":0.79,"y":0.79},"t":90,"s":[24.672,32.004,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":135,"s":[24.672,32.004,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.79,"y":0.79},"t":165,"s":[1.347,31.614,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":230,"s":[1.347,31.614,0],"to":[0,0,0],"ti":[0,0,0]},{"t":240,"s":[1.347,31.614,0]}]},"a":{"a":0,"k":[30.368,34.202,0]},"s":{"a":1,"k":[{"i":{"x":[0.21,0.21,0.21],"y":[1,1,1]},"o":{"x":[0.79,0.79,0.79],"y":[0,0,0]},"t":60,"s":[100,100,100]},{"i":{"x":[0.21,0.21,0.21],"y":[1,1,1]},"o":{"x":[0.79,0.79,0.79],"y":[0,0,0]},"t":90,"s":[80,100,100]},{"i":{"x":[0.21,0.21,0.21],"y":[1,1,1]},"o":{"x":[0.79,0.79,0.79],"y":[0,0,0]},"t":135,"s":[80,100,100]},{"i":{"x":[0.21,0.21,0.21],"y":[1,1,1]},"o":{"x":[0.79,0.79,0.79],"y":[0,0,0]},"t":165,"s":[110,110,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.79,0.79,0.79],"y":[0,0,0]},"t":180,"s":[130,130,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":230,"s":[130,130,100]},{"t":240,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":136,"s":[{"i":[[4.689,-16.192],[14.055,4.071],[-4.689,16.192],[-14.055,-4.07]],"o":[[-4.689,16.192],[-14.055,-4.07],[4.69,-16.192],[14.055,4.071]],"v":[[25.449,7.37],[-8.491,29.318],[-25.449,-7.37],[8.491,-29.319]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":142,"s":[{"i":[[-3.12,-2.95],[16.641,0.607],[-1.973,3.962],[-14.632,-0.137]],"o":[[4.034,3.815],[-14.623,-0.533],[2.838,-5.699],[16.326,0.153]],"v":[[26.195,4.34],[0.215,15.429],[-25.2,3.236],[0.282,8.812]],"c":true}]},{"i":{"x":0.28,"y":1},"o":{"x":0.167,"y":0},"t":148,"s":[{"i":[[4.689,-16.192],[14.055,4.071],[-4.689,16.192],[-14.055,-4.07]],"o":[[-4.689,16.192],[-14.055,-4.07],[4.69,-16.192],[14.055,4.071]],"v":[[25.449,7.37],[-8.491,29.318],[-25.449,-7.37],[8.491,-29.319]],"c":true}]},{"i":{"x":0.28,"y":1},"o":{"x":0.72,"y":0},"t":180,"s":[{"i":[[4.689,-16.192],[14.055,4.071],[-4.689,16.192],[-14.055,-4.07]],"o":[[-4.689,16.192],[-14.055,-4.07],[4.69,-16.192],[14.055,4.071]],"v":[[25.449,7.37],[-8.491,29.318],[-25.449,-7.37],[8.491,-29.319]],"c":true}]},{"i":{"x":0.28,"y":1},"o":{"x":0.72,"y":0},"t":188,"s":[{"i":[[-3.12,-2.95],[16.641,0.607],[-1.973,3.962],[-14.632,-0.137]],"o":[[4.034,3.815],[-14.623,-0.533],[2.838,-5.699],[16.326,0.153]],"v":[[26.195,4.34],[0.215,15.429],[-25.2,3.236],[0.282,8.812]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.72,"y":0},"t":198,"s":[{"i":[[4.689,-16.192],[14.055,4.071],[-4.689,16.192],[-14.055,-4.07]],"o":[[-4.689,16.192],[-14.055,-4.07],[4.69,-16.192],[14.055,4.071]],"v":[[25.449,7.37],[-8.491,29.318],[-25.449,-7.37],[8.491,-29.319]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[{"i":[[4.689,-16.192],[14.055,4.071],[-4.689,16.192],[-14.055,-4.07]],"o":[[-4.689,16.192],[-14.055,-4.07],[4.69,-16.192],[14.055,4.071]],"v":[[25.449,7.37],[-8.491,29.318],[-25.449,-7.37],[8.491,-29.319]],"c":true}]},{"t":240,"s":[{"i":[[4.689,-16.192],[14.055,4.071],[-4.689,16.192],[-14.055,-4.07]],"o":[[-4.689,16.192],[-14.055,-4.07],[4.69,-16.192],[14.055,4.071]],"v":[[25.449,7.37],[-8.491,29.318],[-25.449,-7.37],[8.491,-29.319]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[30.388,33.639]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":136,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":142,"s":[10]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":148,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":188,"s":[10]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":198,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":230,"s":[0]},{"t":240,"s":[0]}]},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":-57,"op":253,"st":60,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"head_bl1","parent":14,"sr":1,"ks":{"p":{"a":0,"k":[320.498,178.454,0]},"a":{"a":0,"k":[48.324,110.462,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,-36.326],[19.366,-18.785]],"o":[[28.684,25.988],[0,29.13],[0,0]],"v":[[-23.323,-85.462],[23.323,12.88],[-7.594,85.462]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.987999949736,0.933000033509,0.128999986836,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[48.324,110.462]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[0]},{"t":240,"s":[5]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[95]},{"t":240,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":-57,"op":253,"st":60,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"head_bl0","parent":14,"sr":1,"ks":{"p":{"a":0,"k":[126.397,134.159,0]},"a":{"a":0,"k":[97.475,104.838,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-27.206,16.408],[-27.285,0]],"o":[[11.749,-27.609],[21.795,-13.143],[0,0]],"v":[[-67.477,44.82],[-7.128,-23.78],[67.476,-44.82]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[0]},{"t":240,"s":[5]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[95]},{"t":240,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"tr","p":{"a":0,"k":[102.473,69.82]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":-57,"op":253,"st":60,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"head","parent":21,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":60,"s":[0]},{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":90,"s":[5.485]},{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":135,"s":[5.485]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":165,"s":[-8.43]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":230,"s":[-8.43]},{"t":240,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":60,"s":[207.031,103.808,0],"to":[2.275,-1.745,0],"ti":[-2.275,1.745,0]},{"i":{"x":0.21,"y":0.21},"o":{"x":0.79,"y":0.79},"t":90,"s":[220.681,93.336,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":135,"s":[220.681,93.336,0],"to":[-3.831,0.131,0],"ti":[3.831,-0.131,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.79,"y":0.79},"t":165,"s":[197.694,94.121,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[197.694,94.121,0],"to":[1.556,1.614,0],"ti":[-1.556,-1.614,0]},{"t":240,"s":[207.031,103.808,0]}]},"a":{"a":0,"k":[198.872,292.565,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,35.849],[-96.027,0],[0,-85.843],[23.231,-23.356]],"o":[[-34.972,-19.697],[0,-85.843],[96.027,0],[0,36.217],[0,0]],"v":[[-127.667,133.783],[-173.872,36.566],[-0.001,-133.783],[173.872,36.566],[136.785,126.808]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.980000035903,0.564000028722,0.088000002094,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.834999952129,0.152999997606,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[198.872,158.783]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-57,"op":253,"st":60,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"wing_r_bl","parent":17,"sr":1,"ks":{"p":{"a":0,"k":[65.551,87.158,0]},"a":{"a":0,"k":[37.183,57.851,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":60,"s":[{"i":[[0,0],[24.367,41.336]],"o":[[3.481,-7.832],[0,0]],"v":[[2.176,32.851],[-12.184,-32.851]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":90,"s":[{"i":[[0,0],[24.367,41.336]],"o":[[3.481,-7.832],[0,0]],"v":[[2.176,32.851],[-12.184,-32.851]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":150,"s":[{"i":[[0,0],[24.367,41.336]],"o":[[3.481,-7.832],[0,0]],"v":[[2.176,32.851],[-12.184,-32.851]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":160,"s":[{"i":[[0,0],[18.627,5.609]],"o":[[-2.738,-12.321],[0,0]],"v":[[-0.617,10.818],[-32.846,-19.601]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[15.885,9.315]],"o":[[-1.164,-17.093],[0,0]],"v":[[-9.958,17.062],[-32.846,-19.601]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":170,"s":[{"i":[[0,0],[18.627,5.609]],"o":[[-2.738,-12.321],[0,0]],"v":[[-0.617,10.818],[-32.846,-19.601]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":175,"s":[{"i":[[0,0],[15.885,9.315]],"o":[[-1.164,-17.093],[0,0]],"v":[[-9.958,17.062],[-32.846,-19.601]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":180,"s":[{"i":[[0,0],[18.627,5.609]],"o":[[-2.738,-12.321],[0,0]],"v":[[-0.617,10.818],[-32.846,-19.601]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":185,"s":[{"i":[[0,0],[15.885,9.315]],"o":[[-1.164,-17.093],[0,0]],"v":[[-9.958,17.062],[-32.846,-19.601]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":190,"s":[{"i":[[0,0],[18.627,5.609]],"o":[[-2.738,-12.321],[0,0]],"v":[[-0.617,10.818],[-32.846,-19.601]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":195,"s":[{"i":[[0,0],[15.885,9.315]],"o":[[-1.164,-17.093],[0,0]],"v":[[-9.958,17.062],[-32.846,-19.601]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":200,"s":[{"i":[[0,0],[18.627,5.609]],"o":[[-2.738,-12.321],[0,0]],"v":[[-0.617,10.818],[-32.846,-19.601]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":205,"s":[{"i":[[0,0],[15.885,9.315]],"o":[[-1.164,-17.093],[0,0]],"v":[[-9.958,17.062],[-32.846,-19.601]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":210,"s":[{"i":[[0,0],[18.627,5.609]],"o":[[-2.738,-12.321],[0,0]],"v":[[-0.617,10.818],[-32.846,-19.601]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":215,"s":[{"i":[[0,0],[15.885,9.315]],"o":[[-1.164,-17.093],[0,0]],"v":[[-9.958,17.062],[-32.846,-19.601]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":220,"s":[{"i":[[0,0],[18.627,5.609]],"o":[[-2.738,-12.321],[0,0]],"v":[[-0.617,10.818],[-32.846,-19.601]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.79,"y":0},"t":225,"s":[{"i":[[0,0],[18.627,5.609]],"o":[[-2.738,-12.321],[0,0]],"v":[[-0.617,10.818],[-32.846,-19.601]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[{"i":[[0,0],[18.627,5.609]],"o":[[-2.738,-12.321],[0,0]],"v":[[-0.617,10.818],[-32.846,-19.601]],"c":false}]},{"t":240,"s":[{"i":[[0,0],[24.367,41.336]],"o":[[3.481,-7.832],[0,0]],"v":[[2.176,32.851],[-12.184,-32.851]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.987999949736,0.933000033509,0.128999986836,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[37.184,57.851]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":216,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[5]},{"t":240,"s":[0]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":216,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[100]},{"t":240,"s":[95]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":-57,"op":253,"st":60,"bm":0},{"ddd":0,"ind":16,"ty":3,"nm":"NULL CONTROL","parent":21,"sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":1,"k":[{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":60,"s":[-2]},{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":90,"s":[-2]},{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":150,"s":[-2]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":180,"s":[-15.958]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":230,"s":[-15.958]},{"t":240,"s":[-2]}]},"p":{"a":1,"k":[{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":60,"s":[204.948,89.621,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.21,"y":0.21},"o":{"x":0.79,"y":0.79},"t":90,"s":[174.966,90.646,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":150,"s":[174.966,90.646,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.79,"y":0.79},"t":180,"s":[219.94,89.109,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[219.94,89.109,0],"to":[0,0,0],"ti":[0,0,0]},{"t":240,"s":[204.948,89.621,0]}]},"a":{"a":0,"k":[60,60,0]}},"ao":0,"ip":-57,"op":253,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"wing_r","parent":16,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":60,"s":[-4.172]},{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":90,"s":[17.583]},{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":150,"s":[17.583]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":180,"s":[156.038]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":230,"s":[156.038]},{"t":240,"s":[-4.172]}]},"p":{"a":1,"k":[{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":60,"s":[185.876,53.289,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.21,"y":0.21},"o":{"x":0.79,"y":0.79},"t":90,"s":[195.876,73.289,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":150,"s":[195.876,73.289,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.79,"y":0.79},"t":180,"s":[180.876,171.289,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[180.876,171.289,0],"to":[0,0,0],"ti":[0,0,0]},{"t":240,"s":[185.876,53.289,0]}]},"a":{"a":0,"k":[25,25,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":60,"s":[{"i":[[0,0],[-11.722,9.442],[37.485,49.188]],"o":[[25.776,57.968],[9.545,-7.688],[-5.909,-7.754]],"v":[[-46.256,-10.037],[19.756,48.44],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":90,"s":[{"i":[[0,0],[-11.722,9.442],[37.485,49.188]],"o":[[25.776,57.968],[9.545,-7.688],[-5.909,-7.754]],"v":[[-46.256,-10.037],[19.756,48.44],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":150,"s":[{"i":[[0,0],[-11.722,9.442],[37.485,49.188]],"o":[[25.776,57.968],[9.545,-7.688],[-5.909,-7.754]],"v":[[-46.256,-10.037],[19.756,48.44],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":160,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[17.421,51.232],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[-0.017,56.614],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":170,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[17.421,51.232],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":175,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[-0.017,56.614],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":180,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[17.421,51.232],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":185,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[-0.017,56.614],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":190,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[17.421,51.232],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":195,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[-0.017,56.614],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":200,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[17.421,51.232],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":205,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[-0.017,56.614],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":210,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[17.421,51.232],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":215,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[-0.017,56.614],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":220,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[17.421,51.232],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.79,"y":0},"t":225,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[17.421,51.232],[-1.468,-46.213]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[{"i":[[0,0],[-11.722,9.442],[49.397,35.584]],"o":[[52.505,18.09],[9.545,-7.688],[-7.91,-5.698]],"v":[[-46.256,-10.037],[17.421,51.232],[-1.468,-46.213]],"c":false}]},{"t":240,"s":[{"i":[[0,0],[-11.722,9.442],[37.485,49.188]],"o":[[25.776,57.968],[9.545,-7.688],[-5.909,-7.754]],"v":[[-46.256,-10.037],[19.756,48.44],[-1.468,-46.213]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.980000035903,0.564000028722,0.088000002094,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.834999952129,0.152999997606,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[57.977,82.882]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-57,"op":253,"st":60,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"wing_l_bl 3","parent":19,"sr":1,"ks":{"p":{"a":0,"k":[58.491,81.784,0]},"a":{"a":0,"k":[39.576,60.461,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":60,"s":[{"i":[[0,0],[-27.412,26.106]],"o":[[-9.814,-27.276],[0,0]],"v":[[-10.663,38.916],[22.1,-45.125]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":90,"s":[{"i":[[0,0],[-27.412,26.106]],"o":[[3.039,-13.525],[0,0]],"v":[[-8.638,10.33],[22.1,-45.125]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":150,"s":[{"i":[[0,0],[-27.412,26.106]],"o":[[3.039,-13.525],[0,0]],"v":[[-8.638,10.33],[22.1,-45.125]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":160,"s":[{"i":[[0,0],[-7.403,11.059]],"o":[[5.317,-21.283],[0,0]],"v":[[-11.468,25.668],[3.671,-21.131]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[-10.314,3.185]],"o":[[-1.706,-20.051],[0,0]],"v":[[2.371,-0.701],[28.646,-44.195]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":170,"s":[{"i":[[0,0],[-10.553,2.269]],"o":[[5.317,-21.283],[0,0]],"v":[[-3.636,34.133],[36.736,-8.516]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":175,"s":[{"i":[[0,0],[-10.553,2.269]],"o":[[0.058,-20.123],[0,0]],"v":[[6.75,32.508],[36.736,-8.516]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":180,"s":[{"i":[[0,0],[-10.553,2.269]],"o":[[5.317,-21.283],[0,0]],"v":[[-3.636,34.133],[36.736,-8.516]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":185,"s":[{"i":[[0,0],[-10.553,2.269]],"o":[[0.058,-20.123],[0,0]],"v":[[6.75,32.508],[36.736,-8.516]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":190,"s":[{"i":[[0,0],[-10.553,2.269]],"o":[[5.317,-21.283],[0,0]],"v":[[-3.636,34.133],[36.736,-8.516]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":195,"s":[{"i":[[0,0],[-10.553,2.269]],"o":[[0.058,-20.123],[0,0]],"v":[[6.75,32.508],[36.736,-8.516]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":200,"s":[{"i":[[0,0],[-10.553,2.269]],"o":[[5.317,-21.283],[0,0]],"v":[[-3.636,34.133],[36.736,-8.516]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":205,"s":[{"i":[[0,0],[-10.553,2.269]],"o":[[0.058,-20.123],[0,0]],"v":[[6.75,32.508],[36.736,-8.516]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":210,"s":[{"i":[[0,0],[-10.553,2.269]],"o":[[5.317,-21.283],[0,0]],"v":[[-3.636,34.133],[36.736,-8.516]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":215,"s":[{"i":[[0,0],[-10.553,2.269]],"o":[[0.058,-20.123],[0,0]],"v":[[6.75,32.508],[36.736,-8.516]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":220,"s":[{"i":[[0,0],[-10.553,2.269]],"o":[[5.317,-21.283],[0,0]],"v":[[-3.636,34.133],[36.736,-8.516]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.79,"y":0},"t":225,"s":[{"i":[[0,0],[-10.553,2.269]],"o":[[5.317,-21.283],[0,0]],"v":[[-3.636,34.133],[36.736,-8.516]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[{"i":[[0,0],[-10.553,2.269]],"o":[[5.317,-21.283],[0,0]],"v":[[-3.636,34.133],[36.736,-8.516]],"c":false}]},{"t":240,"s":[{"i":[[0,0],[-27.412,26.106]],"o":[[-9.814,-27.276],[0,0]],"v":[[-10.663,38.916],[22.1,-45.125]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[39.576,60.461]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[0]},{"t":240,"s":[5]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[95]},{"t":240,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":-54,"op":248,"st":60,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"wing_l","parent":16,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":60,"s":[1.958]},{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":90,"s":[1.958]},{"i":{"x":[0.21],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":150,"s":[1.958]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.79],"y":[0]},"t":180,"s":[-145.759]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":230,"s":[-145.759]},{"t":240,"s":[1.958]}]},"p":{"a":1,"k":[{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":60,"s":[-65.877,66.711,0],"to":[0,0,0],"ti":[0,0,0]},{"t":90,"s":[-23.877,50.711,0],"h":1},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":150,"s":[-23.877,50.711,0],"to":[-27.642,117.707,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.79,"y":0.79},"t":180,"s":[-13.877,164.711,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[-13.877,164.711,0],"to":[0,0,0],"ti":[0,0,0]},{"t":240,"s":[-65.877,66.711,0]}]},"a":{"a":0,"k":[90.955,25,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":60,"s":[{"i":[[0,0],[12.341,9.191],[-50.426,37.782]],"o":[[-13.53,28.324],[-12.073,-8.99],[0,0]],"v":[[32.978,13.596],[-18.413,47.618],[17.449,-56.809]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":90,"s":[{"i":[[0,0],[12.341,9.191],[-33.229,33.442]],"o":[[-13.53,28.324],[-12.073,-8.99],[0,0]],"v":[[15.197,5.698],[-18.413,47.618],[17.449,-56.809]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":150,"s":[{"i":[[0,0],[12.341,9.191],[-33.229,33.442]],"o":[[-13.53,28.324],[-12.073,-8.99],[0,0]],"v":[[15.197,5.698],[-18.413,47.618],[17.449,-56.809]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":160,"s":[{"i":[[0,0],[7.36,0.835],[-50.426,37.782]],"o":[[-32.263,18.38],[-24.615,-2.793],[0,0]],"v":[[32.978,13.596],[-3.044,59.536],[17.449,-56.809]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[7.405,0.183],[-50.426,37.782]],"o":[[-32.263,18.38],[-28.157,-0.695],[0,0]],"v":[[32.978,13.595],[16.72,59.692],[17.449,-56.809]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":170,"s":[{"i":[[0,0],[7.36,0.835],[-50.426,37.782]],"o":[[-32.263,18.38],[-24.615,-2.793],[0,0]],"v":[[32.978,13.596],[-3.044,59.536],[17.449,-56.809]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":175,"s":[{"i":[[0,0],[7.405,0.183],[-50.426,37.782]],"o":[[-32.263,18.38],[-28.157,-0.695],[0,0]],"v":[[32.978,13.595],[16.72,59.692],[17.449,-56.809]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":180,"s":[{"i":[[0,0],[7.36,0.835],[-50.426,37.782]],"o":[[-32.263,18.38],[-24.615,-2.793],[0,0]],"v":[[32.978,13.596],[-3.044,59.536],[17.449,-56.809]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":185,"s":[{"i":[[0,0],[7.405,0.183],[-50.426,37.782]],"o":[[-32.263,18.38],[-28.157,-0.695],[0,0]],"v":[[32.978,13.596],[16.72,59.692],[17.449,-56.809]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":190,"s":[{"i":[[0,0],[7.36,0.835],[-50.426,37.782]],"o":[[-32.263,18.38],[-24.615,-2.793],[0,0]],"v":[[32.978,13.596],[-3.044,59.536],[17.449,-56.809]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":195,"s":[{"i":[[0,0],[7.405,0.183],[-50.426,37.782]],"o":[[-32.263,18.38],[-28.157,-0.695],[0,0]],"v":[[32.978,13.595],[16.72,59.692],[17.449,-56.809]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":200,"s":[{"i":[[0,0],[7.36,0.835],[-50.426,37.782]],"o":[[-32.263,18.38],[-24.615,-2.793],[0,0]],"v":[[32.978,13.596],[-3.044,59.536],[17.449,-56.809]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":205,"s":[{"i":[[0,0],[7.405,0.183],[-50.426,37.782]],"o":[[-32.263,18.38],[-28.157,-0.695],[0,0]],"v":[[32.978,13.595],[16.72,59.692],[17.449,-56.809]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"t":210,"s":[{"i":[[0,0],[7.36,0.835],[-50.426,37.782]],"o":[[-32.263,18.38],[-24.615,-2.793],[0,0]],"v":[[32.978,13.596],[-3.044,59.536],[17.449,-56.809]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"t":215,"s":[{"i":[[0,0],[7.405,0.183],[-50.426,37.782]],"o":[[-32.263,18.38],[-28.157,-0.695],[0,0]],"v":[[32.978,13.595],[16.72,59.692],[17.449,-56.809]],"c":false}]},{"i":{"x":0.21,"y":1},"o":{"x":0.79,"y":0},"t":220,"s":[{"i":[[0,0],[7.36,0.835],[-50.426,37.782]],"o":[[-32.263,18.38],[-24.615,-2.793],[0,0]],"v":[[32.978,13.596],[-3.044,59.536],[17.449,-56.809]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.79,"y":0},"t":225,"s":[{"i":[[0,0],[7.36,0.835],[-50.426,37.782]],"o":[[-32.263,18.38],[-24.615,-2.793],[0,0]],"v":[[32.978,13.596],[-3.044,59.536],[17.449,-56.809]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[{"i":[[0,0],[7.36,0.835],[-50.426,37.782]],"o":[[-32.263,18.38],[-24.615,-2.793],[0,0]],"v":[[32.978,13.596],[-3.044,59.536],[17.449,-56.809]],"c":false}]},{"t":240,"s":[{"i":[[0,0],[12.341,9.191],[-50.426,37.782]],"o":[[-13.53,28.324],[-12.073,-8.99],[0,0]],"v":[[32.978,13.596],[-18.413,47.618],[17.449,-56.809]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.980000035903,0.564000028722,0.088000002094,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.834999952129,0.152999997606,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[57.978,81.809]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-57,"op":253,"st":60,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"body_bl","parent":21,"sr":1,"ks":{"p":{"a":0,"k":[216.973,130.423,0]},"a":{"a":0,"k":[188.59,59.694,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-18.618,-14.885]],"o":[[-2.767,11.612],[0,0]],"v":[[3.671,49.456],[20.648,95.849]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[33.014,46.386]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[40.142,-16.01]],"o":[[8.329,32.639],[0,0]],"v":[[-10.933,10.261],[-44.459,83.464]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.987999949736,0.933000033509,0.128999986836,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[342.558,59.694]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":216,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[5]},{"t":240,"s":[0]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":216,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[100]},{"t":240,"s":[95]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":-57,"op":253,"st":60,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"body","sr":1,"ks":{"r":{"a":0,"k":1.958},"p":{"a":0,"k":[265.814,470.678,0]},"a":{"a":0,"k":[212.688,255.599,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":60,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":75,"s":[103,97,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":90,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":150,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":157.5,"s":[103,97,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":165,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":172.5,"s":[103,97,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":180,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":187.5,"s":[103,97,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":195,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":202.5,"s":[103,97,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":210,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":217.5,"s":[103,97,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":225,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":232.5,"s":[103,97,100]},{"t":240,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[{"i":[[45.447,50.71],[1.09,20.241],[-97.035,0],[6.248,-112.406],[47.513,-16.732]],"o":[[-13.79,-15.386],[-4.738,-88.003],[104.214,0],[-1.823,32.8],[-50.195,17.677]],"v":[[-148.484,73.286],[-169.43,22.956],[0.832,-111.8],[169.924,20.909],[110.907,88.614]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":164,"s":[{"i":[[45.447,50.71],[-2.213,20.149],[-97.035,0],[0,-103.78],[47.513,-16.732]],"o":[[-13.79,-15.386],[10.63,-96.813],[104.214,0],[0,32.851],[-50.195,17.677]],"v":[[-148.484,73.286],[-164.635,19.916],[-0.019,-123.996],[166.848,17.107],[110.908,88.614]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":210,"s":[{"i":[[45.447,50.71],[-2.213,20.149],[-97.035,0],[0,-103.78],[47.513,-16.732]],"o":[[-13.79,-15.386],[10.63,-96.813],[104.214,0],[0,32.851],[-50.195,17.677]],"v":[[-148.484,73.286],[-164.635,19.916],[-0.019,-123.996],[166.848,17.107],[110.908,88.614]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":230,"s":[{"i":[[45.447,50.71],[1.09,20.241],[-97.035,0],[6.248,-112.406],[47.513,-16.732]],"o":[[-13.79,-15.386],[-4.738,-88.003],[104.214,0],[-1.823,32.8],[-50.195,17.677]],"v":[[-148.484,73.286],[-169.43,22.956],[0.832,-111.8],[169.924,20.909],[110.907,88.614]],"c":true}]},{"t":240,"s":[{"i":[[45.447,50.71],[1.09,20.241],[-97.035,0],[6.248,-112.406],[47.513,-16.732]],"o":[[-13.79,-15.386],[-4.738,-88.003],[104.214,0],[-1.823,32.8],[-50.195,17.677]],"v":[[-148.484,73.286],[-169.43,22.956],[0.832,-111.8],[169.924,20.909],[110.907,88.614]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.980000035903,0.564000028722,0.088000002094,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.834999952129,0.152999997606,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[211.848,148.996]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-57,"op":253,"st":60,"bm":0},{"ddd":0,"ind":22,"ty":0,"nm":"water1 Comp 1","refId":"comp_1","sr":1,"ks":{"p":{"a":0,"k":[268,265,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":146,"op":266,"st":146,"bm":0},{"ddd":0,"ind":23,"ty":0,"nm":"water1 Comp 1","refId":"comp_1","sr":1,"ks":{"p":{"a":0,"k":[268,265,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":70,"op":190,"st":70,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"water1","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[257.634,431.728,0],"to":[0,0.5,0],"ti":[0,-0.5,0]},{"t":70,"s":[257.634,434.728,0]}]},"a":{"a":0,"k":[176.495,64.82,0]},"s":{"a":1,"k":[{"i":{"x":[0.649,0.649,0.649],"y":[0.878,0.878,-3.532]},"o":{"x":[0.312,0.312,0.312],"y":[0,0,0]},"t":0,"s":[66,66,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,-6.857]},"o":{"x":[0.38,0.38,0.38],"y":[0.149,0.149,7.017]},"t":28.822,"s":[103.083,103.083,100]},{"t":70,"s":[150.226,150.226,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-21.992],[83.668,0],[0,21.992],[-83.668,0]],"o":[[0,21.992],[-83.668,0],[0,-21.992],[83.668,0]],"v":[[151.495,0],[0.001,39.82],[-151.494,0],[0.001,-39.82]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.014981626997,0.706667133406,1,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.649],"y":[1.119]},"o":{"x":[0.302],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.407],"y":[0.645]},"t":12.352,"s":[8.324]},{"t":70,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[176.495,64.82]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":110,"st":-5,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"74","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[56.632,59.038,0]},"a":{"a":0,"k":[17.12,-53.725,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[24.99,-52.615],[21.365,-48.847],[21.365,-38.828],[17.456,-38.828],[17.456,-68.479],[21.365,-68.479],[21.365,-53.816],[34.542,-68.479],[39.267,-68.479],[27.598,-55.384],[40.183,-38.828],[35.499,-38.828]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.44,-38.828],[1.652,-38.828],[1.652,-63.938],[-5.943,-61.148],[-5.943,-64.569],[4.85,-68.622],[5.44,-68.622]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":226,"op":540,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":3,"nm":"NULL CONTROL","parent":77,"sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":0,"k":[12.738,12.988,0]},"a":{"a":0,"k":[60,60,0]}},"ao":0,"ip":225,"op":226,"st":45,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"73","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[51.844,58.858,0]},"a":{"a":0,"k":[410.082,413.971,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[422.576,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.758,1.684],[-2.946,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.576,-1.079],[0,-1.548],[-0.937,-0.991],[-1.874,0],[-1.039,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.756,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.982,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.232,-5.886],[-9.999,-5.886],[-7.362,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[401.895,413.971]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":149,"op":154,"st":-27,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"72","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[55.224,58.858,0]},"a":{"a":0,"k":[413.462,413.971,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.009,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.758,1.684],[-2.946,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.576,-1.079],[0,-1.548],[-0.937,-0.991],[-1.874,0],[-1.039,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.756,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.982,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.232,-5.886],[-9.999,-5.886],[-7.362,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[401.895,413.971]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":154,"op":155,"st":-26,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"71","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[54.786,59.062,0]},"a":{"a":0,"k":[413.024,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.018,0.909],[0,1.548],[3.462,0],[0.971,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.588,-1.479],[0,-2.634],[0.835,-1.208],[1.438,-0.597],[-0.89,-1.194],[0,-1.724],[1.737,-1.562],[2.783,0],[1.744,1.507],[0,2.472],[0,0],[-1.019,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.06,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.019,-0.909],[0,-3.476],[-1.63,0],[-0.971,0.931],[0,0],[0,-2.349],[1.718,-1.555],[2.796,0],[1.589,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.819,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.655,-3.238],[5.183,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.134,-7.046],[-6.558,-12.901],[-0.01,-15.233],[6.567,-13.013],[8.95,-6.842],[7.698,-3.095],[4.287,-0.387],[8.064,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.185,10.732],[5.631,6.639],[4.042,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.734,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.019,0.909],[0,1.548],[3.462,0],[0.97,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.589,-1.479],[0,-2.634],[0.835,-1.208],[1.439,-0.597],[-0.89,-1.194],[0,-1.724],[1.738,-1.562],[2.784,0],[1.744,1.507],[0,2.472],[0,0],[-1.018,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.059,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.018,-0.909],[0,-3.476],[-1.629,0],[-0.971,0.931],[0,0],[0,-2.349],[1.717,-1.555],[2.797,0],[1.588,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.82,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.656,-3.238],[5.184,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.133,-7.046],[-6.557,-12.901],[-0.01,-15.233],[6.568,-13.013],[8.951,-6.842],[7.698,-3.095],[4.287,-0.387],[8.065,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.186,10.732],[5.631,6.639],[4.043,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.314,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.314,414.174]},"a":{"a":0,"k":[401.314,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":155,"op":156,"st":-25,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"70","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[54.542,59.062,0]},"a":{"a":0,"k":[412.78,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.896,1.459],[1.941,0],[0.883,-1.452],[0.027,-3.014],[0,0],[-0.93,-1.527],[-1.887,0],[-0.903,1.438],[-0.041,3.095]],"o":[[0,-3.19],[-0.896,-1.46],[-1.929,0],[-0.883,1.453],[0,0],[0,3.204],[0.93,1.527],[1.86,0],[0.903,-1.439],[0,0]],"v":[[5.591,-2.973],[4.246,-9.948],[-0.01,-12.137],[-4.226,-9.958],[-5.59,-3.258],[-5.59,2.77],[-4.195,9.867],[0.03,12.158],[4.175,10],[5.591,3.198]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.507,-2.145],[3.204,0],[1.521,2.098],[0.054,4.168],[0,0],[-1.507,2.118],[-3.218,0],[-1.507,-2.043],[-0.04,-4.263]],"o":[[0,4.412],[-1.507,2.146],[-3.163,0],[-1.521,-2.098],[0,0],[0,-4.357],[1.507,-2.118],[3.19,0],[1.507,2.044],[0,0]],"v":[[9.357,2.179],[7.098,12.015],[0.03,15.233],[-6.995,12.086],[-9.357,2.688],[-9.357,-2.342],[-7.097,-12.056],[-0.01,-15.233],[7.036,-12.168],[9.357,-2.708]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.121,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.353,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.576,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.783,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.783,414.174]},"a":{"a":0,"k":[401.783,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":156,"op":157,"st":-24,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"69","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[54.817,59.062,0]},"a":{"a":0,"k":[413.055,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.009,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.353,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.576,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.783,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.783,414.174]},"a":{"a":0,"k":[401.783,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":157,"op":158,"st":-23,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"68","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[55.927,59.265,0]},"a":{"a":0,"k":[414.165,414.378,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.875,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.589,-1.785],[0,-3.041],[1.649,-1.759],[2.96,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.602,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.793,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.702,0],[1.589,1.786],[0,3.055],[-1.649,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.752,0],[0.998,-1.194],[0,-1.982],[-1.079,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.258,-0.244],[-6.751,-15.029],[8.441,-15.029],[8.441,-11.547],[-3.554,-11.547],[-4.45,-3.462],[0.499,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.072,15.029],[-6.487,12.851],[-9.317,6.822],[-5.753,6.822],[-3.941,10.661],[-0.072,11.954],[4.052,10.162],[5.55,5.214],[3.93,0.438],[-0.377,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[402.455,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[402.455,414.378]},"a":{"a":0,"k":[402.455,414.378]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":158,"op":159,"st":-22,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"67","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[56.059,59.255,0]},"a":{"a":0,"k":[414.297,414.368,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.352,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.577,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.203,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.629,0],[1.086,-0.774],[0.42,-1.168],[0,0],[-1.1,-1.494],[-1.643,0],[-0.971,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.697,0],[0.971,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.32,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.93,9.684],[0.183,11.923],[4.185,10.05],[5.641,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.765,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.58,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.056,-2.087],[9.368,4.959],[6.874,12.291],[0.183,15.04],[-6.72,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[402.058,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[402.058,414.368]},"a":{"a":0,"k":[402.058,414.368]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":159,"op":160,"st":-21,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"66","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[54.613,59.062,0]},"a":{"a":0,"k":[412.851,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.018,0.909],[0,1.548],[3.462,0],[0.971,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.588,-1.479],[0,-2.634],[0.835,-1.208],[1.438,-0.597],[-0.89,-1.194],[0,-1.724],[1.737,-1.562],[2.783,0],[1.744,1.507],[0,2.472],[0,0],[-1.019,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.06,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.019,-0.909],[0,-3.476],[-1.63,0],[-0.971,0.931],[0,0],[0,-2.349],[1.718,-1.555],[2.796,0],[1.589,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.819,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.655,-3.238],[5.183,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.134,-7.046],[-6.558,-12.901],[-0.01,-15.233],[6.567,-13.013],[8.95,-6.842],[7.698,-3.095],[4.287,-0.387],[8.064,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.185,10.732],[5.631,6.639],[4.042,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.734,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.029,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.59,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.59,414.174]},"a":{"a":0,"k":[401.59,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":160,"op":161,"st":-20,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"65","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[54.97,59.062,0]},"a":{"a":0,"k":[413.208,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.018,0.909],[0,1.548],[3.462,0],[0.971,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.588,-1.479],[0,-2.634],[0.835,-1.208],[1.438,-0.597],[-0.89,-1.194],[0,-1.724],[1.737,-1.562],[2.783,0],[1.744,1.507],[0,2.472],[0,0],[-1.019,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.06,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.019,-0.909],[0,-3.476],[-1.63,0],[-0.971,0.931],[0,0],[0,-2.349],[1.718,-1.555],[2.796,0],[1.589,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.819,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.655,-3.238],[5.183,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.134,-7.046],[-6.558,-12.901],[-0.01,-15.233],[6.567,-13.013],[8.95,-6.842],[7.698,-3.095],[4.287,-0.387],[8.064,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.185,10.732],[5.631,6.639],[4.042,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.734,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.439,0],[0.917,-0.916],[0,-1.575],[-0.903,-0.93],[-1.507,0],[-0.903,0.931],[0,1.507],[0.938,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.902,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.025,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.052,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.005,-0.971]],"v":[[5.661,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.661,6.741],[-4.164,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.781,-1.153],[1.331,-0.652],[-0.903,-1.276],[0,-1.616],[1.73,-1.52],[2.824,0],[1.717,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.76,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.608,-1.466]],"o":[[0,1.48],[-0.78,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.851,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.609,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.115,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.323,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.712,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.712,414.174]},"a":{"a":0,"k":[401.712,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":161,"op":162,"st":-19,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"64","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[55.734,58.868,0]},"a":{"a":0,"k":[413.971,413.981,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.352,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.577,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.203,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":162,"op":163,"st":-18,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"63","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.8,59.062,0]},"a":{"a":0,"k":[426.038,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[449.294,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.896,1.459],[1.941,0],[0.883,-1.452],[0.027,-3.014],[0,0],[-0.93,-1.527],[-1.887,0],[-0.903,1.438],[-0.041,3.095]],"o":[[0,-3.19],[-0.896,-1.46],[-1.929,0],[-0.883,1.453],[0,0],[0,3.204],[0.93,1.527],[1.86,0],[0.903,-1.439],[0,0]],"v":[[5.591,-2.973],[4.246,-9.948],[-0.01,-12.137],[-4.226,-9.958],[-5.59,-3.258],[-5.59,2.77],[-4.195,9.867],[0.03,12.158],[4.175,10],[5.591,3.198]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.507,-2.145],[3.204,0],[1.521,2.098],[0.054,4.168],[0,0],[-1.507,2.118],[-3.218,0],[-1.507,-2.043],[-0.04,-4.263]],"o":[[0,4.412],[-1.507,2.146],[-3.163,0],[-1.521,-2.098],[0,0],[0,-4.357],[1.507,-2.118],[3.19,0],[1.507,2.044],[0,0]],"v":[[9.357,2.179],[7.098,12.015],[0.03,15.233],[-6.995,12.086],[-9.357,2.688],[-9.357,-2.342],[-7.097,-12.056],[-0.01,-15.233],[7.036,-12.168],[9.357,-2.708]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.121,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.102,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[399.156,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[399.156,414.103]},"a":{"a":0,"k":[399.156,414.103]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":163,"op":164,"st":-17,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"62","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.627,59.194,0]},"a":{"a":0,"k":[425.865,414.307,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.63,0],[1.086,-0.774],[0.421,-1.168],[0,0],[-1.1,-1.494],[-1.644,0],[-0.972,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.696,0],[0.97,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.319,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.931,9.684],[0.184,11.923],[4.186,10.05],[5.642,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.766,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.579,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.057,-2.087],[9.368,4.959],[6.873,12.291],[0.184,15.04],[-6.721,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.897,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[422.576,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.102,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[399.156,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[399.156,414.103]},"a":{"a":0,"k":[399.156,414.103]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":164,"op":165,"st":-16,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"61","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.484,59.062,0]},"a":{"a":0,"k":[425.722,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.438,0],[0.916,-0.916],[0,-1.575],[-0.903,-0.93],[-1.508,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.024,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.053,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.004,-0.971]],"v":[[5.662,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.662,6.741],[-4.165,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.78,-1.153],[1.33,-0.652],[-0.903,-1.276],[0,-1.616],[1.731,-1.52],[2.823,0],[1.718,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.761,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.781,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.852,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.608,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.116,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.324,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.551,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.759,1.684],[-2.945,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.577,-1.079],[0,-1.548],[-0.938,-0.991],[-1.873,0],[-1.038,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.757,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.981,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.231,-5.886],[-9.999,-5.886],[-7.361,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.314,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.102,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[399.156,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[399.156,414.103]},"a":{"a":0,"k":[399.156,414.103]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":165,"op":166,"st":-15,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"60","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[64.338,58.99,0]},"a":{"a":0,"k":[422.576,414.103,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[445.996,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.352,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.577,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.203,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.102,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[399.156,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[399.156,414.103]},"a":{"a":0,"k":[399.156,414.103]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":166,"op":167,"st":-14,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"59","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[68.156,59.194,0]},"a":{"a":0,"k":[426.394,414.307,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.352,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.577,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.623,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.875,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.102,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[399.156,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[399.156,414.103]},"a":{"a":0,"k":[399.156,414.103]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":167,"op":168,"st":-13,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"58","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.718,59.194,0]},"a":{"a":0,"k":[425.956,414.307,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.429,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.63,0],[1.086,-0.774],[0.421,-1.168],[0,0],[-1.1,-1.494],[-1.644,0],[-0.972,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.696,0],[0.97,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.319,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.931,9.684],[0.184,11.923],[4.186,10.05],[5.642,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.766,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.579,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.057,-2.087],[9.368,4.959],[6.873,12.291],[0.184,15.04],[-6.721,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.478,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.102,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[399.156,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[399.156,414.103]},"a":{"a":0,"k":[399.156,414.103]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":168,"op":169,"st":-12,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"57","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[64.684,59.498,0]},"a":{"a":0,"k":[419.082,416.051,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[442.501,415.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.438,0],[0.916,-0.916],[0,-1.575],[-0.903,-0.93],[-1.508,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.37],[0,-1.975],[3.615,-3.37],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.024,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.053,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.004,-0.971]],"v":[[5.662,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.668],[-5.662,6.741],[-4.165,10.713],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.78,-1.153],[1.33,-0.652],[-0.903,-1.276],[0,-1.616],[1.731,-1.52],[2.823,0],[1.718,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.761,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.781,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.852,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.608,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.116,2.485],[-4.48,-0.448],[-7.596,-3.156],[-8.737,-7.087],[-6.333,-13.033],[0,-15.233],[6.324,-13.033]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[421.637,416.051]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[395.662,415.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[395.662,415.98]},"a":{"a":0,"k":[395.662,415.98]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":169,"op":170,"st":-11,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"56","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[68.115,60.037,0]},"a":{"a":0,"k":[425.865,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.63,0],[1.086,-0.774],[0.421,-1.168],[0,0],[-1.1,-1.494],[-1.644,0],[-0.972,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.696,0],[0.97,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.319,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.931,9.684],[0.184,11.923],[4.186,10.05],[5.642,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.766,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.579,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.057,-2.087],[9.368,4.959],[6.873,12.291],[0.184,15.04],[-6.721,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.897,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.582],[-0.122,-11.904],[-4.113,-10],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.842],[-4.358,11.842],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.785,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.102,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[399.156,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[399.156,414.103]},"a":{"a":0,"k":[399.156,414.103]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":170,"op":171,"st":-10,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"55","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[63.554,58.858,0]},"a":{"a":0,"k":[421.792,413.971,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[445.996,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[422.576,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.758,1.684],[-2.946,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.576,-1.079],[0,-1.548],[-0.937,-0.991],[-1.874,0],[-1.039,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.756,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.982,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.232,-5.886],[-9.999,-5.886],[-7.362,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[401.895,413.971]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":171,"op":172,"st":-9,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"54","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.843,59.062,0]},"a":{"a":0,"k":[425.081,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.63,0],[1.086,-0.774],[0.421,-1.168],[0,0],[-1.1,-1.494],[-1.644,0],[-0.972,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.696,0],[0.97,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.319,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.931,9.684],[0.184,11.923],[4.186,10.05],[5.642,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.766,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.579,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.057,-2.087],[9.368,4.959],[6.873,12.291],[0.184,15.04],[-6.721,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.897,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.759,1.684],[-2.945,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.577,-1.079],[0,-1.548],[-0.938,-0.991],[-1.873,0],[-1.038,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.757,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.981,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.231,-5.886],[-9.999,-5.886],[-7.361,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.314,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.758,1.684],[-2.946,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.576,-1.079],[0,-1.548],[-0.937,-0.991],[-1.874,0],[-1.039,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.756,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.982,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.232,-5.886],[-9.999,-5.886],[-7.362,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[401.895,413.971]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":172,"op":173,"st":-8,"bm":0},{"ddd":0,"ind":23,"ty":4,"nm":"53","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.077,58.858,0]},"a":{"a":0,"k":[425.315,413.971,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.759,1.684],[-2.945,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.577,-1.079],[0,-1.548],[-0.938,-0.991],[-1.873,0],[-1.038,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.757,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.981,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.231,-5.886],[-9.999,-5.886],[-7.361,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.734,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.352,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.577,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.203,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.758,1.684],[-2.946,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.576,-1.079],[0,-1.548],[-0.937,-0.991],[-1.874,0],[-1.039,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.756,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.982,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.232,-5.886],[-9.999,-5.886],[-7.362,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[401.895,413.971]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":173,"op":174,"st":-7,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"52","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.7,59.062,0]},"a":{"a":0,"k":[424.938,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.438,0],[0.916,-0.916],[0,-1.575],[-0.903,-0.93],[-1.508,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.024,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.053,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.004,-0.971]],"v":[[5.662,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.662,6.741],[-4.165,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.78,-1.153],[1.33,-0.652],[-0.903,-1.276],[0,-1.616],[1.731,-1.52],[2.823,0],[1.718,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.761,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.781,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.852,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.608,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.116,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.324,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.551,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.875,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.758,1.684],[-2.946,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.576,-1.079],[0,-1.548],[-0.937,-0.991],[-1.874,0],[-1.039,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.756,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.982,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.232,-5.886],[-9.999,-5.886],[-7.362,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[401.895,413.971]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":174,"op":175,"st":-6,"bm":0},{"ddd":0,"ind":25,"ty":4,"nm":"51","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.016,59.062,0]},"a":{"a":0,"k":[425.254,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[449.294,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.009,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.758,1.684],[-2.946,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.576,-1.079],[0,-1.548],[-0.937,-0.991],[-1.874,0],[-1.039,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.756,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.982,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.232,-5.886],[-9.999,-5.886],[-7.362,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[401.895,413.971]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":175,"op":176,"st":-5,"bm":0},{"ddd":0,"ind":26,"ty":4,"nm":"50","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.077,58.868,0]},"a":{"a":0,"k":[425.315,413.981,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.759,1.684],[-2.945,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.577,-1.079],[0,-1.548],[-0.938,-0.991],[-1.873,0],[-1.038,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.757,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.981,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.231,-5.886],[-9.999,-5.886],[-7.361,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.734,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.582],[-0.122,-11.904],[-4.113,-10],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.842],[-4.358,11.842],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.785,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.758,1.684],[-2.946,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.576,-1.079],[0,-1.548],[-0.937,-0.991],[-1.874,0],[-1.039,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.756,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.982,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.232,-5.886],[-9.999,-5.886],[-7.362,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.895,413.971]},"a":{"a":0,"k":[401.895,413.971]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":176,"op":177,"st":-4,"bm":0},{"ddd":0,"ind":27,"ty":4,"nm":"49","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.486,59.062,0]},"a":{"a":0,"k":[424.724,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.582],[-0.122,-11.904],[-4.113,-10],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.842],[-4.358,11.842],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.205,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.896,1.459],[1.941,0],[0.883,-1.452],[0.027,-3.014],[0,0],[-0.93,-1.527],[-1.887,0],[-0.903,1.438],[-0.041,3.095]],"o":[[0,-3.19],[-0.896,-1.46],[-1.929,0],[-0.883,1.453],[0,0],[0,3.204],[0.93,1.527],[1.86,0],[0.903,-1.439],[0,0]],"v":[[5.591,-2.973],[4.246,-9.948],[-0.01,-12.137],[-4.226,-9.958],[-5.59,-3.258],[-5.59,2.77],[-4.195,9.867],[0.03,12.158],[4.175,10],[5.591,3.198]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.507,-2.145],[3.204,0],[1.521,2.098],[0.054,4.168],[0,0],[-1.507,2.118],[-3.218,0],[-1.507,-2.043],[-0.04,-4.263]],"o":[[0,4.412],[-1.507,2.146],[-3.163,0],[-1.521,-2.098],[0,0],[0,-4.357],[1.507,-2.118],[3.19,0],[1.507,2.044],[0,0]],"v":[[9.357,2.179],[7.098,12.015],[0.03,15.233],[-6.995,12.086],[-9.357,2.688],[-9.357,-2.342],[-7.097,-12.056],[-0.01,-15.233],[7.036,-12.168],[9.357,-2.708]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.121,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.019,0.909],[0,1.548],[3.462,0],[0.97,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.589,-1.479],[0,-2.634],[0.835,-1.208],[1.439,-0.597],[-0.89,-1.194],[0,-1.724],[1.738,-1.562],[2.784,0],[1.744,1.507],[0,2.472],[0,0],[-1.018,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.059,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.018,-0.909],[0,-3.476],[-1.629,0],[-0.971,0.931],[0,0],[0,-2.349],[1.717,-1.555],[2.797,0],[1.588,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.82,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.656,-3.238],[5.184,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.133,-7.046],[-6.557,-12.901],[-0.01,-15.233],[6.568,-13.013],[8.951,-6.842],[7.698,-3.095],[4.287,-0.387],[8.065,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.186,10.732],[5.631,6.639],[4.043,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.314,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.314,414.174]},"a":{"a":0,"k":[401.314,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":177,"op":178,"st":-3,"bm":0},{"ddd":0,"ind":28,"ty":4,"nm":"48","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.944,59.062,0]},"a":{"a":0,"k":[425.182,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.429,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.759,1.684],[-2.945,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.577,-1.079],[0,-1.548],[-0.938,-0.991],[-1.873,0],[-1.038,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.757,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.981,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.231,-5.886],[-9.999,-5.886],[-7.361,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.314,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.019,0.909],[0,1.548],[3.462,0],[0.97,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.589,-1.479],[0,-2.634],[0.835,-1.208],[1.439,-0.597],[-0.89,-1.194],[0,-1.724],[1.738,-1.562],[2.784,0],[1.744,1.507],[0,2.472],[0,0],[-1.018,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.059,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.018,-0.909],[0,-3.476],[-1.629,0],[-0.971,0.931],[0,0],[0,-2.349],[1.717,-1.555],[2.797,0],[1.588,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.82,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.656,-3.238],[5.184,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.133,-7.046],[-6.557,-12.901],[-0.01,-15.233],[6.568,-13.013],[8.951,-6.842],[7.698,-3.095],[4.287,-0.387],[8.065,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.186,10.732],[5.631,6.639],[4.043,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.314,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.314,414.174]},"a":{"a":0,"k":[401.314,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":178,"op":179,"st":-2,"bm":0},{"ddd":0,"ind":29,"ty":4,"nm":"47","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.382,59.062,0]},"a":{"a":0,"k":[425.62,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.352,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.577,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.623,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.352,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.577,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.203,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.019,0.909],[0,1.548],[3.462,0],[0.97,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.589,-1.479],[0,-2.634],[0.835,-1.208],[1.439,-0.597],[-0.89,-1.194],[0,-1.724],[1.738,-1.562],[2.784,0],[1.744,1.507],[0,2.472],[0,0],[-1.018,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.059,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.018,-0.909],[0,-3.476],[-1.629,0],[-0.971,0.931],[0,0],[0,-2.349],[1.717,-1.555],[2.797,0],[1.588,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.82,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.656,-3.238],[5.184,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.133,-7.046],[-6.557,-12.901],[-0.01,-15.233],[6.568,-13.013],[8.951,-6.842],[7.698,-3.095],[4.287,-0.387],[8.065,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.186,10.732],[5.631,6.639],[4.043,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.314,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.314,414.174]},"a":{"a":0,"k":[401.314,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":179,"op":180,"st":-1,"bm":0},{"ddd":0,"ind":30,"ty":4,"nm":"46","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.087,59.062,0]},"a":{"a":0,"k":[425.325,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.759,1.684],[-2.945,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.577,-1.079],[0,-1.548],[-0.938,-0.991],[-1.873,0],[-1.038,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.757,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.981,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.231,-5.886],[-9.999,-5.886],[-7.361,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.734,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.63,0],[1.086,-0.774],[0.421,-1.168],[0,0],[-1.1,-1.494],[-1.644,0],[-0.972,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.696,0],[0.97,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.319,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.931,9.684],[0.184,11.923],[4.186,10.05],[5.642,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.766,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.579,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.057,-2.087],[9.368,4.959],[6.873,12.291],[0.184,15.04],[-6.721,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.478,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.019,0.909],[0,1.548],[3.462,0],[0.97,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.589,-1.479],[0,-2.634],[0.835,-1.208],[1.439,-0.597],[-0.89,-1.194],[0,-1.724],[1.738,-1.562],[2.784,0],[1.744,1.507],[0,2.472],[0,0],[-1.018,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.059,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.018,-0.909],[0,-3.476],[-1.629,0],[-0.971,0.931],[0,0],[0,-2.349],[1.717,-1.555],[2.797,0],[1.588,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.82,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.656,-3.238],[5.184,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.133,-7.046],[-6.557,-12.901],[-0.01,-15.233],[6.568,-13.013],[8.951,-6.842],[7.698,-3.095],[4.287,-0.387],[8.065,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.186,10.732],[5.631,6.639],[4.043,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.314,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.314,414.174]},"a":{"a":0,"k":[401.314,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":180,"op":181,"st":0,"bm":0},{"ddd":0,"ind":31,"ty":4,"nm":"45","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[63.564,59.062,0]},"a":{"a":0,"k":[421.802,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[445.996,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.438,0],[0.916,-0.916],[0,-1.575],[-0.903,-0.93],[-1.508,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.024,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.053,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.004,-0.971]],"v":[[5.662,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.662,6.741],[-4.165,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.78,-1.153],[1.33,-0.652],[-0.903,-1.276],[0,-1.616],[1.731,-1.52],[2.823,0],[1.718,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.761,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.781,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.852,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.608,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.116,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.324,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.131,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.019,0.909],[0,1.548],[3.462,0],[0.97,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.589,-1.479],[0,-2.634],[0.835,-1.208],[1.439,-0.597],[-0.89,-1.194],[0,-1.724],[1.738,-1.562],[2.784,0],[1.744,1.507],[0,2.472],[0,0],[-1.018,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.059,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.018,-0.909],[0,-3.476],[-1.629,0],[-0.971,0.931],[0,0],[0,-2.349],[1.717,-1.555],[2.797,0],[1.588,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.82,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.656,-3.238],[5.184,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.133,-7.046],[-6.557,-12.901],[-0.01,-15.233],[6.568,-13.013],[8.951,-6.842],[7.698,-3.095],[4.287,-0.387],[8.065,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.186,10.732],[5.631,6.639],[4.043,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.314,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.314,414.174]},"a":{"a":0,"k":[401.314,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":181,"op":182,"st":1,"bm":0},{"ddd":0,"ind":32,"ty":4,"nm":"44","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.486,59.062,0]},"a":{"a":0,"k":[424.724,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.582],[-0.122,-11.904],[-4.113,-10],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.842],[-4.358,11.842],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.205,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.582],[-0.122,-11.904],[-4.113,-10],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.842],[-4.358,11.842],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.785,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.019,0.909],[0,1.548],[3.462,0],[0.97,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.589,-1.479],[0,-2.634],[0.835,-1.208],[1.439,-0.597],[-0.89,-1.194],[0,-1.724],[1.738,-1.562],[2.784,0],[1.744,1.507],[0,2.472],[0,0],[-1.018,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.059,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.018,-0.909],[0,-3.476],[-1.629,0],[-0.971,0.931],[0,0],[0,-2.349],[1.717,-1.555],[2.797,0],[1.588,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.82,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.656,-3.238],[5.184,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.133,-7.046],[-6.557,-12.901],[-0.01,-15.233],[6.568,-13.013],[8.951,-6.842],[7.698,-3.095],[4.287,-0.387],[8.065,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.186,10.732],[5.631,6.639],[4.043,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.314,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.314,414.174]},"a":{"a":0,"k":[401.314,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":182,"op":183,"st":2,"bm":0},{"ddd":0,"ind":33,"ty":4,"nm":"43","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.293,59.062,0]},"a":{"a":0,"k":[424.531,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.438,0],[0.916,-0.916],[0,-1.575],[-0.903,-0.93],[-1.508,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.024,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.053,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.004,-0.971]],"v":[[5.662,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.662,6.741],[-4.165,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.78,-1.153],[1.33,-0.652],[-0.903,-1.276],[0,-1.616],[1.731,-1.52],[2.823,0],[1.718,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.761,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.781,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.852,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.608,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.116,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.324,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.551,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[422.576,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.353,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.576,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.783,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.783,414.174]},"a":{"a":0,"k":[401.783,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":183,"op":184,"st":3,"bm":0},{"ddd":0,"ind":34,"ty":4,"nm":"42","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.527,59.062,0]},"a":{"a":0,"k":[424.765,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.429,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.018,0.909],[0,1.548],[3.462,0],[0.971,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.588,-1.479],[0,-2.634],[0.835,-1.208],[1.438,-0.597],[-0.89,-1.194],[0,-1.724],[1.737,-1.562],[2.783,0],[1.744,1.507],[0,2.472],[0,0],[-1.019,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.06,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.019,-0.909],[0,-3.476],[-1.63,0],[-0.971,0.931],[0,0],[0,-2.349],[1.718,-1.555],[2.796,0],[1.589,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.819,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.655,-3.238],[5.183,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.134,-7.046],[-6.558,-12.901],[-0.01,-15.233],[6.567,-13.013],[8.95,-6.842],[7.698,-3.095],[4.287,-0.387],[8.064,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.185,10.732],[5.631,6.639],[4.042,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.734,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.353,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.576,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.783,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.783,414.174]},"a":{"a":0,"k":[401.783,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":184,"op":185,"st":4,"bm":0},{"ddd":0,"ind":35,"ty":4,"nm":"41","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.435,59.255,0]},"a":{"a":0,"k":[424.673,414.368,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.63,0],[1.086,-0.774],[0.421,-1.168],[0,0],[-1.1,-1.494],[-1.644,0],[-0.972,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.696,0],[0.97,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.319,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.931,9.684],[0.184,11.923],[4.186,10.05],[5.642,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.766,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.579,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.057,-2.087],[9.368,4.959],[6.873,12.291],[0.184,15.04],[-6.721,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.897,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.875,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.353,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.576,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.783,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.783,414.174]},"a":{"a":0,"k":[401.783,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":185,"op":186,"st":5,"bm":0},{"ddd":0,"ind":36,"ty":4,"nm":"40","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.614,59.392,0]},"a":{"a":0,"k":[421.352,416.255,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.03],[8.442,-15.03],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.03],[-6.486,12.851],[-9.317,6.823],[-5.752,6.823],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.53]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[445.8,416.255]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.707],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[421.515,416.051]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.352,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.576,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[398.289,416.051]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[398.289,416.051]},"a":{"a":0,"k":[398.289,416.051]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":186,"op":187,"st":6,"bm":0},{"ddd":0,"ind":37,"ty":4,"nm":"39","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.965,58.868,0]},"a":{"a":0,"k":[425.203,413.981,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.352,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.577,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.623,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.582],[-0.122,-11.904],[-4.113,-10],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.842],[-4.358,11.842],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.785,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.353,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.576,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.783,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.783,414.174]},"a":{"a":0,"k":[401.783,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":187,"op":188,"st":7,"bm":0},{"ddd":0,"ind":38,"ty":4,"nm":"38","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.999,59.071,0]},"a":{"a":0,"k":[422.737,416.183,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.352,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.577,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[445.128,416.051]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[419.082,415.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.589,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.602,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.702,0],[1.589,1.786],[0,3.055],[-1.649,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.998,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.258,-0.244],[-6.751,-15.03],[8.441,-15.03],[8.441,-11.547],[-3.554,-11.547],[-4.45,-3.462],[0.499,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.072,15.03],[-6.487,12.851],[-9.317,6.823],[-5.753,6.823],[-3.941,10.661],[-0.072,11.954],[4.052,10.162],[5.55,5.214],[3.93,0.438],[-0.377,-1.364],[-4.246,-0.285],[-5.244,0.53]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[398.961,416.255]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[398.961,416.255]},"a":{"a":0,"k":[398.961,416.255]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":188,"op":189,"st":8,"bm":0},{"ddd":0,"ind":39,"ty":4,"nm":"37","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.108,59.062,0]},"a":{"a":0,"k":[425.345,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.018,0.909],[0,1.548],[3.462,0],[0.971,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.588,-1.479],[0,-2.634],[0.835,-1.208],[1.438,-0.597],[-0.89,-1.194],[0,-1.724],[1.737,-1.562],[2.783,0],[1.744,1.507],[0,2.472],[0,0],[-1.019,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.06,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.019,-0.909],[0,-3.476],[-1.63,0],[-0.971,0.931],[0,0],[0,-2.349],[1.718,-1.555],[2.796,0],[1.589,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.819,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.655,-3.238],[5.183,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.134,-7.046],[-6.558,-12.901],[-0.01,-15.233],[6.567,-13.013],[8.95,-6.842],[7.698,-3.095],[4.287,-0.387],[8.064,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.185,10.732],[5.631,6.639],[4.042,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.154,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.018,0.909],[0,1.548],[3.462,0],[0.971,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.588,-1.479],[0,-2.634],[0.835,-1.208],[1.438,-0.597],[-0.89,-1.194],[0,-1.724],[1.737,-1.562],[2.783,0],[1.744,1.507],[0,2.472],[0,0],[-1.019,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.06,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.019,-0.909],[0,-3.476],[-1.63,0],[-0.971,0.931],[0,0],[0,-2.349],[1.718,-1.555],[2.796,0],[1.589,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.819,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.655,-3.238],[5.183,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.134,-7.046],[-6.558,-12.901],[-0.01,-15.233],[6.567,-13.013],[8.95,-6.842],[7.698,-3.095],[4.287,-0.387],[8.064,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.185,10.732],[5.631,6.639],[4.042,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.734,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.589,-1.785],[0,-3.041],[1.649,-1.759],[2.96,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.602,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.793,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.702,0],[1.589,1.786],[0,3.055],[-1.649,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.752,0],[0.998,-1.194],[0,-1.982],[-1.079,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.258,-0.244],[-6.751,-15.029],[8.441,-15.029],[8.441,-11.547],[-3.554,-11.547],[-4.45,-3.462],[0.499,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.072,15.029],[-6.487,12.851],[-9.317,6.822],[-5.753,6.822],[-3.941,10.661],[-0.072,11.954],[4.052,10.162],[5.55,5.214],[3.93,0.438],[-0.377,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[402.455,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[402.455,414.378]},"a":{"a":0,"k":[402.455,414.378]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":189,"op":190,"st":9,"bm":0},{"ddd":0,"ind":40,"ty":4,"nm":"36","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.698,59.062,0]},"a":{"a":0,"k":[425.936,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.759,1.684],[-2.945,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.577,-1.079],[0,-1.548],[-0.938,-0.991],[-1.873,0],[-1.038,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.757,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.981,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.231,-5.886],[-9.999,-5.886],[-7.361,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.734,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.875,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.589,-1.785],[0,-3.041],[1.649,-1.759],[2.96,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.602,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.793,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.702,0],[1.589,1.786],[0,3.055],[-1.649,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.752,0],[0.998,-1.194],[0,-1.982],[-1.079,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.258,-0.244],[-6.751,-15.029],[8.441,-15.029],[8.441,-11.547],[-3.554,-11.547],[-4.45,-3.462],[0.499,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.072,15.029],[-6.487,12.851],[-9.317,6.822],[-5.753,6.822],[-3.941,10.661],[-0.072,11.954],[4.052,10.162],[5.55,5.214],[3.93,0.438],[-0.377,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[402.455,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[402.455,414.378]},"a":{"a":0,"k":[402.455,414.378]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":190,"op":191,"st":10,"bm":0},{"ddd":0,"ind":41,"ty":4,"nm":"35","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[64.175,59.194,0]},"a":{"a":0,"k":[422.413,414.307,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[445.996,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.009,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.589,-1.785],[0,-3.041],[1.649,-1.759],[2.96,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.602,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.793,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.702,0],[1.589,1.786],[0,3.055],[-1.649,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.752,0],[0.998,-1.194],[0,-1.982],[-1.079,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.258,-0.244],[-6.751,-15.029],[8.441,-15.029],[8.441,-11.547],[-3.554,-11.547],[-4.45,-3.462],[0.499,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.072,15.029],[-6.487,12.851],[-9.317,6.822],[-5.753,6.822],[-3.941,10.661],[-0.072,11.954],[4.052,10.162],[5.55,5.214],[3.93,0.438],[-0.377,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[402.455,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[402.455,414.378]},"a":{"a":0,"k":[402.455,414.378]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":191,"op":192,"st":11,"bm":0},{"ddd":0,"ind":42,"ty":4,"nm":"34","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[64.175,59.062,0]},"a":{"a":0,"k":[422.413,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[445.996,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.582],[-0.122,-11.904],[-4.113,-10],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.842],[-4.358,11.842],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.785,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.589,-1.785],[0,-3.041],[1.649,-1.759],[2.96,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.602,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.793,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.702,0],[1.589,1.786],[0,3.055],[-1.649,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.752,0],[0.998,-1.194],[0,-1.982],[-1.079,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.258,-0.244],[-6.751,-15.029],[8.441,-15.029],[8.441,-11.547],[-3.554,-11.547],[-4.45,-3.462],[0.499,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.072,15.029],[-6.487,12.851],[-9.317,6.822],[-5.753,6.822],[-3.941,10.661],[-0.072,11.954],[4.052,10.162],[5.55,5.214],[3.93,0.438],[-0.377,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[402.455,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[402.455,414.378]},"a":{"a":0,"k":[402.455,414.378]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":192,"op":193,"st":12,"bm":0},{"ddd":0,"ind":43,"ty":4,"nm":"33","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.056,59.062,0]},"a":{"a":0,"k":[425.294,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.896,1.459],[1.941,0],[0.883,-1.452],[0.027,-3.014],[0,0],[-0.93,-1.527],[-1.887,0],[-0.903,1.438],[-0.041,3.095]],"o":[[0,-3.19],[-0.896,-1.46],[-1.929,0],[-0.883,1.453],[0,0],[0,3.204],[0.93,1.527],[1.86,0],[0.903,-1.439],[0,0]],"v":[[5.591,-2.973],[4.246,-9.948],[-0.01,-12.137],[-4.226,-9.958],[-5.59,-3.258],[-5.59,2.77],[-4.195,9.867],[0.03,12.158],[4.175,10],[5.591,3.198]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.507,-2.145],[3.204,0],[1.521,2.098],[0.054,4.168],[0,0],[-1.507,2.118],[-3.218,0],[-1.507,-2.043],[-0.04,-4.263]],"o":[[0,4.412],[-1.507,2.146],[-3.163,0],[-1.521,-2.098],[0,0],[0,-4.357],[1.507,-2.118],[3.19,0],[1.507,2.044],[0,0]],"v":[[9.357,2.179],[7.098,12.015],[0.03,15.233],[-6.995,12.086],[-9.357,2.688],[-9.357,-2.342],[-7.097,-12.056],[-0.01,-15.233],[7.036,-12.168],[9.357,-2.708]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.541,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[422.576,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.629,0],[1.086,-0.774],[0.42,-1.168],[0,0],[-1.1,-1.494],[-1.643,0],[-0.971,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.697,0],[0.971,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.32,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.93,9.684],[0.183,11.923],[4.185,10.05],[5.641,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.765,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.58,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.056,-2.087],[9.368,4.959],[6.874,12.291],[0.183,15.04],[-6.72,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[402.058,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[402.058,414.368]},"a":{"a":0,"k":[402.058,414.368]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":193,"op":194,"st":13,"bm":0},{"ddd":0,"ind":44,"ty":4,"nm":"32","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.873,59.062,0]},"a":{"a":0,"k":[425.111,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.582],[-0.122,-11.904],[-4.113,-10],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.842],[-4.358,11.842],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.205,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.759,1.684],[-2.945,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.577,-1.079],[0,-1.548],[-0.938,-0.991],[-1.873,0],[-1.038,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.757,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.981,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.231,-5.886],[-9.999,-5.886],[-7.361,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.314,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.629,0],[1.086,-0.774],[0.42,-1.168],[0,0],[-1.1,-1.494],[-1.643,0],[-0.971,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.697,0],[0.971,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.32,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.93,9.684],[0.183,11.923],[4.185,10.05],[5.641,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.765,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.58,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.056,-2.087],[9.368,4.959],[6.874,12.291],[0.183,15.04],[-6.72,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[402.058,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[402.058,414.368]},"a":{"a":0,"k":[402.058,414.368]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":194,"op":195,"st":14,"bm":0},{"ddd":0,"ind":45,"ty":4,"nm":"31","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.331,59.255,0]},"a":{"a":0,"k":[425.569,414.368,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.429,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.352,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.577,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.203,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.629,0],[1.086,-0.774],[0.42,-1.168],[0,0],[-1.1,-1.494],[-1.643,0],[-0.971,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.697,0],[0.971,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.32,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.93,9.684],[0.183,11.923],[4.185,10.05],[5.641,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.765,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.58,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.056,-2.087],[9.368,4.959],[6.874,12.291],[0.183,15.04],[-6.72,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[402.058,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[402.058,414.368]},"a":{"a":0,"k":[402.058,414.368]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":195,"op":196,"st":15,"bm":0},{"ddd":0,"ind":46,"ty":4,"nm":"30","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.24,59.255,0]},"a":{"a":0,"k":[425.478,414.368,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.63,0],[1.086,-0.774],[0.421,-1.168],[0,0],[-1.1,-1.494],[-1.644,0],[-0.972,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.696,0],[0.97,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.319,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.931,9.684],[0.184,11.923],[4.186,10.05],[5.642,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.766,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.579,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.057,-2.087],[9.368,4.959],[6.873,12.291],[0.184,15.04],[-6.721,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.897,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.63,0],[1.086,-0.774],[0.421,-1.168],[0,0],[-1.1,-1.494],[-1.644,0],[-0.972,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.696,0],[0.97,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.319,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.931,9.684],[0.184,11.923],[4.186,10.05],[5.642,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.766,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.579,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.057,-2.087],[9.368,4.959],[6.873,12.291],[0.184,15.04],[-6.721,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.478,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.629,0],[1.086,-0.774],[0.42,-1.168],[0,0],[-1.1,-1.494],[-1.643,0],[-0.971,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.697,0],[0.971,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.32,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.93,9.684],[0.183,11.923],[4.185,10.05],[5.641,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.765,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.58,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.056,-2.087],[9.368,4.959],[6.874,12.291],[0.183,15.04],[-6.72,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[402.058,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[402.058,414.368]},"a":{"a":0,"k":[402.058,414.368]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":196,"op":197,"st":16,"bm":0},{"ddd":0,"ind":47,"ty":4,"nm":"29","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.769,59.062,0]},"a":{"a":0,"k":[426.007,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.352,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.577,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.623,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.438,0],[0.916,-0.916],[0,-1.575],[-0.903,-0.93],[-1.508,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.024,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.053,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.004,-0.971]],"v":[[5.662,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.662,6.741],[-4.165,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.78,-1.153],[1.33,-0.652],[-0.903,-1.276],[0,-1.616],[1.731,-1.52],[2.823,0],[1.718,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.761,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.781,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.852,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.608,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.116,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.324,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.131,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.629,0],[1.086,-0.774],[0.42,-1.168],[0,0],[-1.1,-1.494],[-1.643,0],[-0.971,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.697,0],[0.971,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.32,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.93,9.684],[0.183,11.923],[4.185,10.05],[5.641,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.765,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.58,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.056,-2.087],[9.368,4.959],[6.874,12.291],[0.183,15.04],[-6.72,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[402.058,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[402.058,414.368]},"a":{"a":0,"k":[402.058,414.368]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":197,"op":198,"st":17,"bm":0},{"ddd":0,"ind":48,"ty":4,"nm":"28","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.323,59.062,0]},"a":{"a":0,"k":[424.561,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.018,0.909],[0,1.548],[3.462,0],[0.971,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.588,-1.479],[0,-2.634],[0.835,-1.208],[1.438,-0.597],[-0.89,-1.194],[0,-1.724],[1.737,-1.562],[2.783,0],[1.744,1.507],[0,2.472],[0,0],[-1.019,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.06,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.019,-0.909],[0,-3.476],[-1.63,0],[-0.971,0.931],[0,0],[0,-2.349],[1.718,-1.555],[2.796,0],[1.589,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.819,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.655,-3.238],[5.183,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.134,-7.046],[-6.558,-12.901],[-0.01,-15.233],[6.567,-13.013],[8.95,-6.842],[7.698,-3.095],[4.287,-0.387],[8.064,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.185,10.732],[5.631,6.639],[4.042,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.154,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.896,1.459],[1.941,0],[0.883,-1.452],[0.027,-3.014],[0,0],[-0.93,-1.527],[-1.887,0],[-0.903,1.438],[-0.041,3.095]],"o":[[0,-3.19],[-0.896,-1.46],[-1.929,0],[-0.883,1.453],[0,0],[0,3.204],[0.93,1.527],[1.86,0],[0.903,-1.439],[0,0]],"v":[[5.591,-2.973],[4.246,-9.948],[-0.01,-12.137],[-4.226,-9.958],[-5.59,-3.258],[-5.59,2.77],[-4.195,9.867],[0.03,12.158],[4.175,10],[5.591,3.198]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.507,-2.145],[3.204,0],[1.521,2.098],[0.054,4.168],[0,0],[-1.507,2.118],[-3.218,0],[-1.507,-2.043],[-0.04,-4.263]],"o":[[0,4.412],[-1.507,2.146],[-3.163,0],[-1.521,-2.098],[0,0],[0,-4.357],[1.507,-2.118],[3.19,0],[1.507,2.044],[0,0]],"v":[[9.357,2.179],[7.098,12.015],[0.03,15.233],[-6.995,12.086],[-9.357,2.688],[-9.357,-2.342],[-7.097,-12.056],[-0.01,-15.233],[7.036,-12.168],[9.357,-2.708]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.121,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.029,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.59,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.59,414.174]},"a":{"a":0,"k":[401.59,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":198,"op":199,"st":18,"bm":0},{"ddd":0,"ind":49,"ty":4,"nm":"27","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[63.391,58.858,0]},"a":{"a":0,"k":[421.629,413.971,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[445.996,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.759,1.684],[-2.945,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.577,-1.079],[0,-1.548],[-0.938,-0.991],[-1.873,0],[-1.038,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.757,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.981,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.231,-5.886],[-9.999,-5.886],[-7.361,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.314,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.029,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.59,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.59,414.174]},"a":{"a":0,"k":[401.59,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":199,"op":200,"st":19,"bm":0},{"ddd":0,"ind":50,"ty":4,"nm":"26","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.537,59.062,0]},"a":{"a":0,"k":[424.775,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.438,0],[0.916,-0.916],[0,-1.575],[-0.903,-0.93],[-1.508,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.024,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.053,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.004,-0.971]],"v":[[5.662,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.662,6.741],[-4.165,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.78,-1.153],[1.33,-0.652],[-0.903,-1.276],[0,-1.616],[1.731,-1.52],[2.823,0],[1.718,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.761,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.781,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.852,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.608,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.116,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.324,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.551,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.018,0.909],[0,1.548],[3.462,0],[0.971,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.588,-1.479],[0,-2.634],[0.835,-1.208],[1.438,-0.597],[-0.89,-1.194],[0,-1.724],[1.737,-1.562],[2.783,0],[1.744,1.507],[0,2.472],[0,0],[-1.019,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.06,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.019,-0.909],[0,-3.476],[-1.63,0],[-0.971,0.931],[0,0],[0,-2.349],[1.718,-1.555],[2.796,0],[1.589,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.819,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.655,-3.238],[5.183,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.134,-7.046],[-6.558,-12.901],[-0.01,-15.233],[6.567,-13.013],[8.95,-6.842],[7.698,-3.095],[4.287,-0.387],[8.064,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.185,10.732],[5.631,6.639],[4.042,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.734,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.029,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.59,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.59,414.174]},"a":{"a":0,"k":[401.59,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":200,"op":201,"st":20,"bm":0},{"ddd":0,"ind":51,"ty":4,"nm":"25","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.853,59.265,0]},"a":{"a":0,"k":[425.091,414.378,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[449.294,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.875,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.029,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.59,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.59,414.174]},"a":{"a":0,"k":[401.59,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":201,"op":202,"st":21,"bm":0},{"ddd":0,"ind":52,"ty":4,"nm":"24","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.914,58.858,0]},"a":{"a":0,"k":[425.152,413.971,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.759,1.684],[-2.945,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.577,-1.079],[0,-1.548],[-0.938,-0.991],[-1.873,0],[-1.038,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.757,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.981,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.231,-5.886],[-9.999,-5.886],[-7.361,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.734,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.009,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.029,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.59,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.59,414.174]},"a":{"a":0,"k":[401.59,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":202,"op":203,"st":22,"bm":0},{"ddd":0,"ind":53,"ty":4,"nm":"23","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.313,59.062,0]},"a":{"a":0,"k":[424.551,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.582],[-0.122,-11.904],[-4.113,-10],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.842],[-4.358,11.842],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.205,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.438,0],[0.916,-0.916],[0,-1.575],[-0.903,-0.93],[-1.508,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.024,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.053,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.004,-0.971]],"v":[[5.662,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.662,6.741],[-4.165,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.78,-1.153],[1.33,-0.652],[-0.903,-1.276],[0,-1.616],[1.731,-1.52],[2.823,0],[1.718,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.761,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.781,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.852,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.608,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.116,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.324,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.131,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.029,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.59,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.59,414.174]},"a":{"a":0,"k":[401.59,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":203,"op":204,"st":23,"bm":0},{"ddd":0,"ind":54,"ty":4,"nm":"22","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.209,59.062,0]},"a":{"a":0,"k":[425.447,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[449.294,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.896,1.459],[1.941,0],[0.883,-1.452],[0.027,-3.014],[0,0],[-0.93,-1.527],[-1.887,0],[-0.903,1.438],[-0.041,3.095]],"o":[[0,-3.19],[-0.896,-1.46],[-1.929,0],[-0.883,1.453],[0,0],[0,3.204],[0.93,1.527],[1.86,0],[0.903,-1.439],[0,0]],"v":[[5.591,-2.973],[4.246,-9.948],[-0.01,-12.137],[-4.226,-9.958],[-5.59,-3.258],[-5.59,2.77],[-4.195,9.867],[0.03,12.158],[4.175,10],[5.591,3.198]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.507,-2.145],[3.204,0],[1.521,2.098],[0.054,4.168],[0,0],[-1.507,2.118],[-3.218,0],[-1.507,-2.043],[-0.04,-4.263]],"o":[[0,4.412],[-1.507,2.146],[-3.163,0],[-1.521,-2.098],[0,0],[0,-4.357],[1.507,-2.118],[3.19,0],[1.507,2.044],[0,0]],"v":[[9.357,2.179],[7.098,12.015],[0.03,15.233],[-6.995,12.086],[-9.357,2.688],[-9.357,-2.342],[-7.097,-12.056],[-0.01,-15.233],[7.036,-12.168],[9.357,-2.708]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.121,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.439,0],[0.917,-0.916],[0,-1.575],[-0.903,-0.93],[-1.507,0],[-0.903,0.931],[0,1.507],[0.938,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.902,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.025,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.052,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.005,-0.971]],"v":[[5.661,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.661,6.741],[-4.164,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.781,-1.153],[1.331,-0.652],[-0.903,-1.276],[0,-1.616],[1.73,-1.52],[2.824,0],[1.717,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.76,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.608,-1.466]],"o":[[0,1.48],[-0.78,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.851,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.609,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.115,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.323,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.712,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.712,414.174]},"a":{"a":0,"k":[401.712,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":204,"op":205,"st":24,"bm":0},{"ddd":0,"ind":55,"ty":4,"nm":"21","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[63.753,59.188,0]},"a":{"a":0,"k":[418.491,416.051,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[442.501,415.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.759,1.684],[-2.945,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.577,-1.079],[0,-1.548],[-0.938,-0.991],[-1.873,0],[-1.038,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.757,0],[1.602,1.447],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.03],[-9.429,15.03],[-9.429,12.321],[0.835,0.916],[3.981,-3.289],[4.847,-6.638],[3.442,-10.447],[-0.306,-11.933],[-4.674,-10.335],[-6.231,-5.885],[-9.999,-5.885],[-7.361,-12.504],[-0.306,-15.03],[6.232,-12.861],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[421.82,415.847]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.439,0],[0.917,-0.916],[0,-1.575],[-0.903,-0.93],[-1.507,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.37],[0,-1.975],[3.615,-3.37],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.025,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.052,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.005,-0.971]],"v":[[5.661,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.668],[-5.661,6.741],[-4.164,10.713],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.781,-1.153],[1.331,-0.652],[-0.903,-1.276],[0,-1.616],[1.73,-1.52],[2.824,0],[1.717,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.76,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.78,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.851,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.609,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.115,2.485],[-4.48,-0.448],[-7.596,-3.156],[-8.737,-7.087],[-6.333,-13.033],[0,-15.233],[6.323,-13.033]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[398.218,416.051]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[398.218,416.051]},"a":{"a":0,"k":[398.218,416.051]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":205,"op":206,"st":25,"bm":0},{"ddd":0,"ind":56,"ty":4,"nm":"20","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.042,58.938,0]},"a":{"a":0,"k":[421.78,416.051,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.63,0],[1.086,-0.774],[0.421,-1.168],[0,0],[-1.1,-1.494],[-1.644,0],[-0.972,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.696,0],[0.97,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.319,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.931,9.684],[0.184,11.924],[4.186,10.051],[5.642,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.766,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.579,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.057,-2.087],[9.368,4.96],[6.873,12.291],[0.184,15.04],[-6.721,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[445.403,416.244]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.018,0.909],[0,1.548],[3.462,0],[0.971,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.588,-1.48],[0,-2.634],[0.835,-1.208],[1.438,-0.597],[-0.89,-1.194],[0,-1.724],[1.737,-1.562],[2.783,0],[1.744,1.507],[0,2.472],[0,0],[-1.019,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.06,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.019,-0.909],[0,-3.476],[-1.63,0],[-0.971,0.931],[0,0],[0,-2.349],[1.718,-1.555],[2.796,0],[1.589,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.819,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.832],[-0.54,-1.832],[3.655,-3.238],[5.183,-6.924],[-0.01,-12.137],[-3.91,-10.742],[-5.366,-7.046],[-9.134,-7.046],[-6.558,-12.901],[-0.01,-15.233],[6.567,-13.013],[8.95,-6.842],[7.698,-3.095],[4.287,-0.387],[8.064,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.006],[-5.61,7.006],[-4.083,10.753],[0.01,12.158],[4.185,10.732],[5.631,6.639],[4.042,2.668],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[421.24,416.051]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.439,0],[0.917,-0.916],[0,-1.575],[-0.903,-0.93],[-1.507,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.37],[0,-1.975],[3.615,-3.37],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.025,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.052,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.005,-0.971]],"v":[[5.661,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.668],[-5.661,6.741],[-4.164,10.713],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.781,-1.153],[1.331,-0.652],[-0.903,-1.276],[0,-1.616],[1.73,-1.52],[2.824,0],[1.717,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.76,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.78,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.851,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.609,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.115,2.485],[-4.48,-0.448],[-7.596,-3.156],[-8.737,-7.087],[-6.333,-13.033],[0,-15.233],[6.323,-13.033]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[398.218,416.051]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[398.218,416.051]},"a":{"a":0,"k":[398.218,416.051]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":206,"op":207,"st":26,"bm":0},{"ddd":0,"ind":57,"ty":4,"nm":"19","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.853,59.062,0]},"a":{"a":0,"k":[425.091,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.896,1.459],[1.941,0],[0.883,-1.452],[0.027,-3.014],[0,0],[-0.93,-1.527],[-1.887,0],[-0.903,1.438],[-0.041,3.095]],"o":[[0,-3.19],[-0.896,-1.46],[-1.929,0],[-0.883,1.453],[0,0],[0,3.204],[0.93,1.527],[1.86,0],[0.903,-1.439],[0,0]],"v":[[5.591,-2.973],[4.246,-9.948],[-0.01,-12.137],[-4.226,-9.958],[-5.59,-3.258],[-5.59,2.77],[-4.195,9.867],[0.03,12.158],[4.175,10],[5.591,3.198]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.507,-2.145],[3.204,0],[1.521,2.098],[0.054,4.168],[0,0],[-1.507,2.118],[-3.218,0],[-1.507,-2.043],[-0.04,-4.263]],"o":[[0,4.412],[-1.507,2.146],[-3.163,0],[-1.521,-2.098],[0,0],[0,-4.357],[1.507,-2.118],[3.19,0],[1.507,2.044],[0,0]],"v":[[9.357,2.179],[7.098,12.015],[0.03,15.233],[-6.995,12.086],[-9.357,2.688],[-9.357,-2.342],[-7.097,-12.056],[-0.01,-15.233],[7.036,-12.168],[9.357,-2.708]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.541,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.875,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.439,0],[0.917,-0.916],[0,-1.575],[-0.903,-0.93],[-1.507,0],[-0.903,0.931],[0,1.507],[0.938,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.902,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.025,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.052,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.005,-0.971]],"v":[[5.661,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.661,6.741],[-4.164,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.781,-1.153],[1.331,-0.652],[-0.903,-1.276],[0,-1.616],[1.73,-1.52],[2.824,0],[1.717,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.76,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.608,-1.466]],"o":[[0,1.48],[-0.78,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.851,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.609,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.115,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.323,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.712,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.712,414.174]},"a":{"a":0,"k":[401.712,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":207,"op":208,"st":27,"bm":0},{"ddd":0,"ind":58,"ty":4,"nm":"18","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.571,58.938,0]},"a":{"a":0,"k":[422.309,416.051,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.352,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.577,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[445.128,416.051]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.63,0],[1.086,-0.774],[0.421,-1.168],[0,0],[-1.1,-1.494],[-1.644,0],[-0.972,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.696,0],[0.97,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.319,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.931,9.684],[0.184,11.924],[4.186,10.051],[5.642,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.766,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.579,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.057,-2.087],[9.368,4.96],[6.873,12.291],[0.184,15.04],[-6.721,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[421.983,416.244]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.439,0],[0.917,-0.916],[0,-1.575],[-0.903,-0.93],[-1.507,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.37],[0,-1.975],[3.615,-3.37],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.025,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.052,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.005,-0.971]],"v":[[5.661,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.668],[-5.661,6.741],[-4.164,10.713],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.781,-1.153],[1.331,-0.652],[-0.903,-1.276],[0,-1.616],[1.73,-1.52],[2.824,0],[1.717,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.76,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.78,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.851,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.609,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.115,2.485],[-4.48,-0.448],[-7.596,-3.156],[-8.737,-7.087],[-6.333,-13.033],[0,-15.233],[6.323,-13.033]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[398.218,416.051]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[398.218,416.051]},"a":{"a":0,"k":[398.218,416.051]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":208,"op":209,"st":28,"bm":0},{"ddd":0,"ind":59,"ty":4,"nm":"17","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.894,59.062,0]},"a":{"a":0,"k":[425.132,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.438,0],[0.916,-0.916],[0,-1.575],[-0.903,-0.93],[-1.508,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.024,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.053,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.004,-0.971]],"v":[[5.662,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.662,6.741],[-4.165,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.78,-1.153],[1.33,-0.652],[-0.903,-1.276],[0,-1.616],[1.731,-1.52],[2.823,0],[1.718,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.761,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.781,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.852,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.608,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.116,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.324,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.551,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.009,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.439,0],[0.917,-0.916],[0,-1.575],[-0.903,-0.93],[-1.507,0],[-0.903,0.931],[0,1.507],[0.938,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.902,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.025,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.052,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.005,-0.971]],"v":[[5.661,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.661,6.741],[-4.164,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.781,-1.153],[1.331,-0.652],[-0.903,-1.276],[0,-1.616],[1.73,-1.52],[2.824,0],[1.717,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.76,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.608,-1.466]],"o":[[0,1.48],[-0.78,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.851,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.609,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.115,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.323,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.712,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.712,414.174]},"a":{"a":0,"k":[401.712,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":209,"op":210,"st":29,"bm":0},{"ddd":0,"ind":60,"ty":4,"nm":"16","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[63.747,59.062,0]},"a":{"a":0,"k":[421.985,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[445.996,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.582],[-0.122,-11.904],[-4.113,-10],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.842],[-4.358,11.842],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.785,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.439,0],[0.917,-0.916],[0,-1.575],[-0.903,-0.93],[-1.507,0],[-0.903,0.931],[0,1.507],[0.938,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.902,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.025,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.052,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.005,-0.971]],"v":[[5.661,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.661,6.741],[-4.164,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.781,-1.153],[1.331,-0.652],[-0.903,-1.276],[0,-1.616],[1.73,-1.52],[2.824,0],[1.717,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.76,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.608,-1.466]],"o":[[0,1.48],[-0.78,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.851,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.609,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.115,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.323,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.712,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.712,414.174]},"a":{"a":0,"k":[401.712,414.174]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":210,"op":211,"st":30,"bm":0},{"ddd":0,"ind":61,"ty":4,"nm":"15","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.558,59.062,0]},"a":{"a":0,"k":[424.796,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.018,0.909],[0,1.548],[3.462,0],[0.971,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.588,-1.479],[0,-2.634],[0.835,-1.208],[1.438,-0.597],[-0.89,-1.194],[0,-1.724],[1.737,-1.562],[2.783,0],[1.744,1.507],[0,2.472],[0,0],[-1.019,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.06,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.019,-0.909],[0,-3.476],[-1.63,0],[-0.971,0.931],[0,0],[0,-2.349],[1.718,-1.555],[2.796,0],[1.589,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.819,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.655,-3.238],[5.183,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.134,-7.046],[-6.558,-12.901],[-0.01,-15.233],[6.567,-13.013],[8.95,-6.842],[7.698,-3.095],[4.287,-0.387],[8.064,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.185,10.732],[5.631,6.639],[4.042,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.154,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.896,1.459],[1.941,0],[0.883,-1.452],[0.027,-3.014],[0,0],[-0.93,-1.527],[-1.887,0],[-0.903,1.438],[-0.041,3.095]],"o":[[0,-3.19],[-0.896,-1.46],[-1.929,0],[-0.883,1.453],[0,0],[0,3.204],[0.93,1.527],[1.86,0],[0.903,-1.439],[0,0]],"v":[[5.591,-2.973],[4.246,-9.948],[-0.01,-12.137],[-4.226,-9.958],[-5.59,-3.258],[-5.59,2.77],[-4.195,9.867],[0.03,12.158],[4.175,10],[5.591,3.198]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.507,-2.145],[3.204,0],[1.521,2.098],[0.054,4.168],[0,0],[-1.507,2.118],[-3.218,0],[-1.507,-2.043],[-0.04,-4.263]],"o":[[0,4.412],[-1.507,2.146],[-3.163,0],[-1.521,-2.098],[0,0],[0,-4.357],[1.507,-2.118],[3.19,0],[1.507,2.044],[0,0]],"v":[[9.357,2.179],[7.098,12.015],[0.03,15.233],[-6.995,12.086],[-9.357,2.688],[-9.357,-2.342],[-7.097,-12.056],[-0.01,-15.233],[7.036,-12.168],[9.357,-2.708]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.121,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":211,"op":212,"st":31,"bm":0},{"ddd":0,"ind":62,"ty":4,"nm":"14","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.087,59.062,0]},"a":{"a":0,"k":[425.325,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[449.294,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.692,14.897],[1.904,14.897],[1.904,-10.213],[-5.692,-7.423],[-5.692,-10.844],[5.101,-14.897],[5.692,-14.897]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[422.576,414.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":212,"op":213,"st":32,"bm":0},{"ddd":0,"ind":63,"ty":4,"nm":"13","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.914,59.062,0]},"a":{"a":0,"k":[425.152,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.63,0],[1.086,-0.774],[0.421,-1.168],[0,0],[-1.1,-1.494],[-1.644,0],[-0.972,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.696,0],[0.97,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.319,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.931,9.684],[0.184,11.923],[4.186,10.05],[5.642,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.766,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.579,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.057,-2.087],[9.368,4.959],[6.873,12.291],[0.184,15.04],[-6.721,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.897,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.759,1.684],[-2.945,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.577,-1.079],[0,-1.548],[-0.938,-0.991],[-1.873,0],[-1.038,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.757,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.981,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.231,-5.886],[-9.999,-5.886],[-7.361,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.314,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":213,"op":214,"st":33,"bm":0},{"ddd":0,"ind":64,"ty":4,"nm":"12","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.914,59.062,0]},"a":{"a":0,"k":[425.152,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.63,0],[1.086,-0.774],[0.421,-1.168],[0,0],[-1.1,-1.494],[-1.644,0],[-0.972,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.696,0],[0.97,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.319,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.931,9.684],[0.184,11.923],[4.186,10.05],[5.642,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.766,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.579,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.057,-2.087],[9.368,4.959],[6.873,12.291],[0.184,15.04],[-6.721,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.897,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.018,0.909],[0,1.548],[3.462,0],[0.971,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.588,-1.479],[0,-2.634],[0.835,-1.208],[1.438,-0.597],[-0.89,-1.194],[0,-1.724],[1.737,-1.562],[2.783,0],[1.744,1.507],[0,2.472],[0,0],[-1.019,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.06,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.019,-0.909],[0,-3.476],[-1.63,0],[-0.971,0.931],[0,0],[0,-2.349],[1.718,-1.555],[2.796,0],[1.589,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.819,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.655,-3.238],[5.183,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.134,-7.046],[-6.558,-12.901],[-0.01,-15.233],[6.567,-13.013],[8.95,-6.842],[7.698,-3.095],[4.287,-0.387],[8.064,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.185,10.732],[5.631,6.639],[4.042,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.734,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":214,"op":215,"st":34,"bm":0},{"ddd":0,"ind":65,"ty":4,"nm":"11","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.914,59.062,0]},"a":{"a":0,"k":[425.152,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.63,0],[1.086,-0.774],[0.421,-1.168],[0,0],[-1.1,-1.494],[-1.644,0],[-0.972,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.696,0],[0.97,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.319,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.931,9.684],[0.184,11.923],[4.186,10.05],[5.642,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.766,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.579,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.057,-2.087],[9.368,4.959],[6.873,12.291],[0.184,15.04],[-6.721,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.897,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.425,4.868],[2.8,4.868],[2.8,-9.673],[2.352,-8.859]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.588,4.868],[10.702,4.868],[10.702,7.942],[6.588,7.942],[6.588,14.826],[2.8,14.826],[2.8,7.942],[-10.702,7.942],[-10.702,5.722],[2.577,-14.826],[6.588,-14.826]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.203,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":215,"op":216,"st":35,"bm":0},{"ddd":0,"ind":66,"ty":4,"nm":"10","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.087,59.062,0]},"a":{"a":0,"k":[425.325,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[449.294,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.875,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":216,"op":217,"st":36,"bm":0},{"ddd":0,"ind":67,"ty":4,"nm":"9K 9","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.558,59.062,0]},"a":{"a":0,"k":[424.796,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.018,0.909],[0,1.548],[3.462,0],[0.971,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.588,-1.479],[0,-2.634],[0.835,-1.208],[1.438,-0.597],[-0.89,-1.194],[0,-1.724],[1.737,-1.562],[2.783,0],[1.744,1.507],[0,2.472],[0,0],[-1.019,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.06,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.019,-0.909],[0,-3.476],[-1.63,0],[-0.971,0.931],[0,0],[0,-2.349],[1.718,-1.555],[2.796,0],[1.589,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.819,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.655,-3.238],[5.183,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.134,-7.046],[-6.558,-12.901],[-0.01,-15.233],[6.567,-13.013],[8.95,-6.842],[7.698,-3.095],[4.287,-0.387],[8.064,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.185,10.732],[5.631,6.639],[4.042,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.154,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.63,0],[1.086,-0.774],[0.421,-1.168],[0,0],[-1.1,-1.494],[-1.644,0],[-0.972,1.249],[0,2.023],[0.984,1.256]],"o":[[-1.29,0],[-1.086,0.773],[0,0],[0,2.443],[1.1,1.493],[1.696,0],[0.97,-1.249],[0,-2.036],[-0.984,-1.256]],"v":[[0.244,-1.68],[-3.319,-0.519],[-5.58,2.393],[-5.58,3.778],[-3.931,9.684],[0.184,11.923],[4.186,10.05],[5.642,5.142],[4.165,0.204]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.738,-1.684],[0.271,-3.055],[-2.702,0],[-1.541,-1.819],[0,-2.879],[1.663,-1.833],[2.797,0],[1.766,2.179],[0,3.435],[0,0],[-2.329,2.885],[-4.603,0.068]],"o":[[0,0],[0,0],[-2.933,0.055],[-1.738,1.684],[1.561,-1.792],[2.579,0],[1.541,1.819],[0,3.055],[-1.663,1.833],[-2.838,0],[-1.765,-2.179],[0,0],[0,-5.457],[2.328,-2.885],[0,0]],"v":[[5.193,-15.04],[5.193,-11.842],[4.501,-11.842],[-2.505,-9.235],[-5.519,-2.128],[0.876,-4.816],[7.057,-2.087],[9.368,4.959],[6.873,12.291],[0.184,15.04],[-6.721,11.771],[-9.368,3.35],[-9.368,1.904],[-5.875,-10.61],[4.521,-15.04]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.478,414.368]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":217,"op":218,"st":37,"bm":0},{"ddd":0,"ind":68,"ty":4,"nm":"9K 8","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.731,59.062,0]},"a":{"a":0,"k":[424.969,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.896,1.459],[1.941,0],[0.883,-1.452],[0.027,-3.014],[0,0],[-0.93,-1.527],[-1.887,0],[-0.903,1.438],[-0.041,3.095]],"o":[[0,-3.19],[-0.896,-1.46],[-1.929,0],[-0.883,1.453],[0,0],[0,3.204],[0.93,1.527],[1.86,0],[0.903,-1.439],[0,0]],"v":[[5.591,-2.973],[4.246,-9.948],[-0.01,-12.137],[-4.226,-9.958],[-5.59,-3.258],[-5.59,2.77],[-4.195,9.867],[0.03,12.158],[4.175,10],[5.591,3.198]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.507,-2.145],[3.204,0],[1.521,2.098],[0.054,4.168],[0,0],[-1.507,2.118],[-3.218,0],[-1.507,-2.043],[-0.04,-4.263]],"o":[[0,4.412],[-1.507,2.146],[-3.163,0],[-1.521,-2.098],[0,0],[0,-4.357],[1.507,-2.118],[3.19,0],[1.507,2.044],[0,0]],"v":[[9.357,2.179],[7.098,12.015],[0.03,15.233],[-6.995,12.086],[-9.357,2.688],[-9.357,-2.342],[-7.097,-12.056],[-0.01,-15.233],[7.036,-12.168],[9.357,-2.708]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.541,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.009,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":218,"op":219,"st":38,"bm":0},{"ddd":0,"ind":69,"ty":4,"nm":"9K 7","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.005,58.868,0]},"a":{"a":0,"k":[425.243,413.981,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.429,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.009,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":219,"op":220,"st":39,"bm":0},{"ddd":0,"ind":70,"ty":4,"nm":"9K 6","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.558,59.062,0]},"a":{"a":0,"k":[424.796,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.018,0.909],[0,1.548],[3.462,0],[0.971,-0.93],[0,-1.534],[0,0],[-1.718,1.555],[-2.647,0],[-1.588,-1.479],[0,-2.634],[0.835,-1.208],[1.438,-0.597],[-0.89,-1.194],[0,-1.724],[1.737,-1.562],[2.783,0],[1.744,1.507],[0,2.472],[0,0],[-1.019,-0.937],[-1.71,0],[-0.964,0.951],[0,1.778],[1.06,0.924],[1.996,0.027],[0,0]],"o":[[0,0],[1.778,-0.027],[1.019,-0.909],[0,-3.476],[-1.63,0],[-0.971,0.931],[0,0],[0,-2.349],[1.718,-1.555],[2.796,0],[1.589,1.48],[0,1.29],[-0.835,1.208],[1.629,0.517],[0.889,1.194],[0,2.661],[-1.738,1.562],[-2.783,0],[-1.745,-1.507],[0,0],[0,1.562],[1.018,0.938],[1.819,0],[0.964,-0.95],[0,-1.725],[-1.059,-0.923],[0,0],[0,0]],"v":[[-3.37,-1.833],[-0.54,-1.833],[3.655,-3.238],[5.183,-6.924],[-0.01,-12.137],[-3.91,-10.743],[-5.366,-7.046],[-9.134,-7.046],[-6.558,-12.901],[-0.01,-15.233],[6.567,-13.013],[8.95,-6.842],[7.698,-3.095],[4.287,-0.387],[8.064,2.179],[9.398,6.557],[6.792,12.891],[0.01,15.233],[-6.781,12.972],[-9.398,7.005],[-5.61,7.005],[-4.083,10.752],[0.01,12.158],[4.185,10.732],[5.631,6.639],[4.042,2.667],[-0.54,1.243],[-3.37,1.243]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.154,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.438,0],[0.916,-0.916],[0,-1.575],[-0.903,-0.93],[-1.508,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.024,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.053,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.004,-0.971]],"v":[[5.662,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.662,6.741],[-4.165,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.78,-1.153],[1.33,-0.652],[-0.903,-1.276],[0,-1.616],[1.731,-1.52],[2.823,0],[1.718,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.761,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.781,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.852,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.608,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.116,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.324,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.131,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":220,"op":221,"st":40,"bm":0},{"ddd":0,"ind":71,"ty":4,"nm":"9K 5","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.772,59.062,0]},"a":{"a":0,"k":[425.01,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.438,0],[0.916,-0.916],[0,-1.575],[-0.903,-0.93],[-1.508,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.024,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.053,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.004,-0.971]],"v":[[5.662,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.662,6.741],[-4.165,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.78,-1.153],[1.33,-0.652],[-0.903,-1.276],[0,-1.616],[1.731,-1.52],[2.823,0],[1.718,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.761,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.781,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.852,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.608,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.116,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.324,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.551,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.438,0],[0.916,-0.916],[0,-1.575],[-0.903,-0.93],[-1.508,0],[-0.903,0.931],[0,1.507],[0.937,0.95]],"o":[[-1.48,0],[-0.916,0.917],[0,1.507],[0.902,0.931],[1.507,0],[0.903,-0.93],[0,-1.507],[-0.937,-0.95]],"v":[[0,-12.137],[-3.594,-10.763],[-4.969,-7.026],[-3.615,-3.371],[0,-1.975],[3.615,-3.371],[4.969,-7.026],[3.564,-10.711]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.67],[1.052,1.046],[1.697,0],[1.024,-1.031],[0,-1.684],[-0.998,-0.964],[-1.779,0],[-1.005,0.971]],"o":[[0,-1.656],[-1.053,-1.045],[-1.697,0],[-1.025,1.032],[0,1.684],[0.998,0.964],[1.765,0],[1.004,-0.971]],"v":[[5.662,6.741],[4.083,2.688],[-0.041,1.12],[-4.124,2.667],[-5.662,6.741],[-4.165,10.712],[0,12.158],[4.155,10.702]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.497],[0.78,-1.153],[1.33,-0.652],[-0.903,-1.276],[0,-1.616],[1.731,-1.52],[2.823,0],[1.718,1.527],[0,2.552],[-0.875,1.29],[-1.548,0.665],[0.761,1.154],[0,1.467],[-1.602,1.467],[-2.621,0],[-1.609,-1.466]],"o":[[0,1.48],[-0.781,1.154],[1.548,0.665],[0.902,1.276],[0,2.565],[-1.731,1.521],[-2.852,0],[-1.718,-1.527],[0,-1.603],[0.876,-1.29],[-1.317,-0.652],[-0.761,-1.153],[0,-2.497],[1.602,-1.466],[2.606,0],[1.608,1.467]],"v":[[8.737,-7.087],[7.566,-3.136],[4.399,-0.427],[8.075,2.485],[9.429,6.823],[6.833,12.952],[0,15.233],[-6.853,12.942],[-9.429,6.823],[-8.116,2.485],[-4.48,-0.448],[-7.596,-3.157],[-8.737,-7.087],[-6.333,-13.034],[0,-15.233],[6.324,-13.034]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[425.131,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":221,"op":222,"st":41,"bm":0},{"ddd":0,"ind":72,"ty":4,"nm":"9K 4","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.148,58.868,0]},"a":{"a":0,"k":[425.386,413.981,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.577,1.079],[0,1.154],[0.937,0.991],[1.562,0],[1.039,-1.065],[0,-1.9],[0,0],[-1.759,1.684],[-2.945,0],[-1.603,-1.446],[0,-2.403],[3.72,-4.032],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.521,-1.724],[0.577,-1.079],[0,-1.548],[-0.938,-0.991],[-1.873,0],[-1.038,1.065],[0,0],[0,-2.729],[1.758,-1.684],[2.757,0],[1.602,1.446],[0,2.919],[0,0],[0,0],[0,0]],"v":[[9.999,15.029],[-9.429,15.029],[-9.429,12.32],[0.835,0.916],[3.981,-3.289],[4.847,-6.639],[3.442,-10.447],[-0.306,-11.934],[-4.674,-10.335],[-6.231,-5.886],[-9.999,-5.886],[-7.361,-12.504],[-0.306,-15.029],[6.232,-12.86],[8.635,-7.087],[3.055,3.34],[-4.888,11.954],[9.999,11.954]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.734,413.971]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.582],[-0.122,-11.904],[-4.113,-10],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.842],[-4.358,11.842],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.785,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":222,"op":223,"st":42,"bm":0},{"ddd":0,"ind":73,"ty":4,"nm":"9K 3","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.087,59.062,0]},"a":{"a":0,"k":[425.325,414.174,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.847,0],[-1.588,-1.785],[0,-3.041],[1.649,-1.759],[2.959,0],[1.656,1.453],[0.23,2.566],[0,0],[-0.978,-0.862],[-1.603,0],[-0.998,1.195],[0,2.104],[1.079,1.202],[1.792,0],[0.937,-0.72],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.453,-0.855],[2.701,0],[1.589,1.786],[0,3.055],[-1.65,1.758],[-2.621,0],[-1.656,-1.453],[0,0],[0.23,1.697],[0.978,0.862],[1.751,0],[0.997,-1.194],[0,-1.982],[-1.08,-1.201],[-1.643,0],[0,0],[0,0]],"v":[[-8.257,-0.244],[-6.75,-15.029],[8.442,-15.029],[8.442,-11.547],[-3.553,-11.547],[-4.45,-3.462],[0.5,-4.745],[6.934,-2.067],[9.317,5.173],[6.843,12.393],[-0.071,15.029],[-6.486,12.851],[-9.317,6.822],[-5.752,6.822],[-3.94,10.661],[-0.071,11.954],[4.053,10.162],[5.549,5.214],[3.931,0.438],[-0.376,-1.364],[-4.246,-0.285],[-5.244,0.529]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[449.294,414.378]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.582],[-0.122,-11.904],[-4.113,-10],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.842],[-4.358,11.842],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.785,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":223,"op":224,"st":43,"bm":0},{"ddd":0,"ind":74,"ty":4,"nm":"9K 2","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[67.005,58.868,0]},"a":{"a":0,"k":[425.243,413.981,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[10.02,-12.708],[-2.26,14.826],[-6.211,14.826],[6.028,-11.73],[-10.02,-11.73],[-10.02,-14.826],[10.02,-14.826]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[448.429,414.174]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.582],[-0.122,-11.904],[-4.113,-10],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.842],[-4.358,11.842],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[424.785,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.065,-0.773],[0,0],[0,-2.471],[-1.072,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.582],[-0.123,-11.904],[-4.114,-10],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.192],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.094,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.28,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.838],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.842],[-4.359,11.842],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[401.366,413.981]},"a":{"a":0,"k":[401.366,413.981]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":224,"op":225,"st":44,"bm":0},{"ddd":0,"ind":75,"ty":4,"nm":"9K","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[66.553,58.745,0]},"a":{"a":0,"k":[421.291,415.858,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.581],[-0.122,-11.904],[-4.113,-9.999],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.193],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.839],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.843],[-4.358,11.843],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[444.711,415.858]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.065,0.773],[-0.488,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.972,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.228,0.825],[5.56,-2.046],[5.56,-3.554],[3.951,-9.581],[-0.122,-11.904],[-4.113,-9.999],[-5.621,-4.979],[-4.164,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.093,-0.569],[1.304,0],[1.27,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.193],[0,-3.788],[0,0],[2.28,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.787,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.839],[-8.288,0.285],[-9.327,-4.776],[-8.197,-10.131],[-4.989,-13.777],[-0.143,-15.04],[6.792,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.419,15.04],[-5.152,15.04],[-5.152,11.843],[-4.358,11.843],[2.811,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[421.291,415.858]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.629,0],[-1.066,0.773],[-0.489,1.14],[0,0],[1.072,1.548],[1.643,0],[1.004,-1.269],[0,-2.077],[-0.971,-1.31]],"o":[[1.263,0],[1.066,-0.773],[0,0],[0,-2.471],[-1.073,-1.548],[-1.656,0],[-1.005,1.27],[0,2.022],[0.97,1.311]],"v":[[-0.265,1.986],[3.227,0.825],[5.56,-2.046],[5.56,-3.554],[3.95,-9.581],[-0.123,-11.904],[-4.114,-9.999],[-5.621,-4.979],[-4.165,0.02]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,3.387],[1.092,-0.569],[1.304,0],[1.269,0.843],[0.692,1.527],[0,1.847],[-0.753,1.588],[-1.385,0.842],[-1.847,0],[-1.69,-2.193],[0,-3.788],[0,0],[2.281,-2.654],[4.603,-0.068],[0,0],[0,0],[0,0],[-1.67,1.565]],"o":[[-0.788,0.937],[-1.093,0.57],[-1.71,0],[-1.27,-0.842],[-0.692,-1.527],[0,-1.981],[0.754,-1.589],[1.385,-0.842],[2.933,0],[1.69,2.192],[0,0],[0,5.771],[-2.281,2.654],[0,0],[0,0],[0,0],[3.109,-0.055],[1.67,-1.564]],"v":[[5.539,1.986],[2.719,4.246],[-0.876,5.101],[-5.346,3.839],[-8.289,0.285],[-9.327,-4.776],[-8.198,-10.131],[-4.99,-13.777],[-0.143,-15.04],[6.791,-11.75],[9.327,-2.78],[9.327,-1.68],[5.906,10.957],[-4.42,15.04],[-5.153,15.04],[-5.153,11.843],[-4.359,11.843],[2.81,9.414]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.57647061348,0.690196096897,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[397.872,415.858]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[397.872,415.858]},"a":{"a":0,"k":[397.872,415.858]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":225,"op":226,"st":45,"bm":0},{"ddd":0,"ind":76,"ty":3,"nm":"NULL CONTROL","sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":0,"k":[263,-34,0]},"a":{"a":0,"k":[60,60,0]},"s":{"a":0,"k":[63.6,63.6,100]}},"ao":0,"ip":-1,"op":540,"st":0,"bm":0},{"ddd":0,"ind":77,"ty":4,"nm":"zoom2","parent":76,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.16,"y":1},"o":{"x":0.333,"y":0},"t":150,"s":[142,472,0],"to":[20.333,7,0],"ti":[-20.333,-7,0]},{"t":165,"s":[264,514,0]}]},"s":{"a":1,"k":[{"i":{"x":[0.17,0.17,0.17],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":150,"s":[0,0,100]},{"i":{"x":[0.17,0.17,0.17],"y":[1,1,1]},"o":{"x":[0.83,0.83,0.83],"y":[0,0,0]},"t":165,"s":[105,105,100]},{"t":175,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.622,0],[0,-3.541],[-3.622,0],[0,3.541]],"o":[[-3.622,0],[0,3.541],[3.622,0],[0,-3.541]],"v":[[-52.5,6.1],[-59.045,12.5],[-52.5,18.9],[-45.955,12.5]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[6.022,0],[0,5.888],[-6.022,0],[0,-5.888]],"o":[[-6.022,0],[0,-5.888],[6.022,0],[0,5.888]],"v":[[-52.5,23.167],[-63.409,12.5],[-52.5,1.833],[-41.591,12.5]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[10.909,0],[3.775,-9.365],[-10.909,0],[-3.775,9.365]],"o":[[-10.909,0],[3.775,9.365],[10.909,0],[-3.775,-9.365]],"v":[[-52.5,-3.5],[-76.5,12.5],[-52.5,28.5],[-28.5,12.5]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.603921592236,0.72549021244,0.811764717102,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":79.906},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[28.565,22.055],[0,0],[27.062,0],[0,0],[-41.881,0],[0,66.444]],"o":[[0,0],[0,27.062],[0,0],[21.603,32.519],[66.444,0],[0,-38.797]],"v":[[73.5,-97.418],[73.5,15.5],[24.5,64.5],[-100.437,64.5],[0,118.5],[120.5,-2]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.690196096897,0.835294127464,0.960784316063,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group-6","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group-7","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"S8-Copy-5","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Page-1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[69.752,0],[0,-69.752],[-69.752,0],[0,69.752]],"o":[[-69.752,0],[0,69.752],[69.752,0],[0,-69.752]],"v":[[0,-128.5],[-126.5,-2],[0,124.5],[126.5,-2]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":540,"st":0,"bm":0},{"ddd":0,"ind":78,"ty":4,"nm":"102","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-75.196,23.23,0]},"a":{"a":0,"k":[332.304,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.666,1.085],[1.443,0],[0.656,-1.079],[0.02,-2.24],[0,0],[-0.691,-1.136],[-1.403,0],[-0.671,1.07],[-0.03,2.301]],"o":[[0,-2.371],[-0.666,-1.084],[-1.433,0],[-0.656,1.08],[0,0],[0,2.382],[0.691,1.135],[1.382,0],[0.671,-1.069],[0,0]],"v":[[4.155,-2.21],[3.156,-7.395],[-0.008,-9.021],[-3.141,-7.402],[-4.155,-2.422],[-4.155,2.059],[-3.118,7.334],[0.023,9.037],[3.103,7.432],[4.155,2.377]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.12,-1.595],[2.381,0],[1.13,1.56],[0.04,3.098],[0,0],[-1.12,1.574],[-2.392,0],[-1.12,-1.519],[-0.03,-3.168]],"o":[[0,3.28],[-1.12,1.595],[-2.352,0],[-1.13,-1.559],[0,0],[0,-3.24],[1.12,-1.574],[2.371,0],[1.12,1.519],[0,0]],"v":[[6.955,1.619],[5.275,8.931],[0.023,11.322],[-5.199,8.983],[-6.955,1.998],[-6.955,-1.74],[-5.275,-8.961],[-0.008,-11.322],[5.23,-9.044],[6.955,-2.014]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[332.304,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":23,"op":72,"st":-55,"bm":0},{"ddd":0,"ind":79,"ty":4,"nm":"101","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-77.088,23.178,0]},"a":{"a":0,"k":[330.412,425.928,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[330.412,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":72,"op":73,"st":-54,"bm":0},{"ddd":0,"ind":80,"ty":4,"nm":"100","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-75.052,23.079,0]},"a":{"a":0,"k":[332.448,425.829,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.696,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.307,1.251],[-2.19,0],[-1.191,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.696,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.558,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[332.448,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":73,"op":76,"st":-53,"bm":0},{"ddd":0,"ind":81,"ty":4,"nm":"99","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-75.484,23.23,0]},"a":{"a":0,"k":[332.016,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.757,0.676],[0,1.15],[2.573,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.968,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.292,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.757,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.483,0.02],[0,0]],"o":[[0,0],[1.322,-0.021],[0.757,-0.677],[0,-2.583],[-1.211,0],[-0.721,0.691],[0,0],[0,-1.746],[1.277,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.069,0],[-1.297,-1.121],[0,0],[0,1.16],[0.757,0.696],[1.352,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.717,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.906,-7.984],[-3.989,-5.237],[-6.789,-5.237],[-4.874,-9.589],[-0.008,-11.322],[4.882,-9.672],[6.653,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.008,11.322],[-5.04,9.643],[-6.986,5.207],[-4.17,5.207],[-3.035,7.992],[0.008,9.037],[3.111,7.977],[4.185,4.935],[3.005,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[332.016,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":76,"op":78,"st":-52,"bm":0},{"ddd":0,"ind":82,"ty":4,"nm":"98","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-75.135,23.23,0]},"a":{"a":0,"k":[332.365,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.897,3.617],[7.954,3.617],[7.954,5.903],[4.897,5.903],[4.897,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.897,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[332.365,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":78,"op":80,"st":-51,"bm":0},{"ddd":0,"ind":83,"ty":4,"nm":"97","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-74.636,23.382,0]},"a":{"a":0,"k":[332.864,426.132,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.373,0],[-1.181,-1.327],[0,-2.261],[1.227,-1.307],[2.2,0],[1.231,1.079],[0.171,1.906],[0,0],[-0.727,-0.641],[-1.191,0],[-0.742,0.888],[0,1.564],[0.802,0.894],[1.332,0],[0.696,-0.535],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.08,-0.636],[2.008,0],[1.181,1.327],[0,2.271],[-1.226,1.307],[-1.948,0],[-1.231,-1.08],[0,0],[0.171,1.261],[0.727,0.642],[1.302,0],[0.741,-0.889],[0,-1.474],[-0.803,-0.893],[-1.221,0],[0,0],[0,0]],"v":[[-6.138,-0.182],[-5.018,-11.171],[6.274,-11.171],[6.274,-8.583],[-2.641,-8.583],[-3.307,-2.573],[0.371,-3.526],[5.154,-1.536],[6.925,3.845],[5.086,9.211],[-0.053,11.171],[-4.821,9.552],[-6.925,5.071],[-4.276,5.071],[-2.929,7.924],[-0.053,8.886],[3.012,7.554],[4.125,3.875],[2.922,0.325],[-0.28,-1.015],[-3.156,-0.212],[-3.898,0.394]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[332.864,426.132]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":80,"op":81,"st":-50,"bm":0},{"ddd":0,"ind":84,"ty":4,"nm":"96","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-74.931,23.374,0]},"a":{"a":0,"k":[332.569,426.124,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.211,0],[0.807,-0.575],[0.312,-0.867],[0,0],[-0.817,-1.11],[-1.221,0],[-0.721,0.929],[0,1.504],[0.731,0.934]],"o":[[-0.959,0],[-0.808,0.575],[0,0],[0,1.816],[0.817,1.109],[1.261,0],[0.722,-0.928],[0,-1.514],[-0.732,-0.933]],"v":[[0.182,-1.249],[-2.467,-0.386],[-4.147,1.778],[-4.147,2.808],[-2.921,7.198],[0.136,8.862],[3.11,7.47],[4.193,3.822],[3.096,0.151]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.292,-1.251],[0.202,-2.271],[-2.008,0],[-1.146,-1.352],[0,-2.14],[1.236,-1.363],[2.079,0],[1.312,1.62],[0,2.553],[0,0],[-1.73,2.145],[-3.421,0.051]],"o":[[0,0],[0,0],[-2.18,0.04],[-1.292,1.251],[1.16,-1.332],[1.917,0],[1.145,1.353],[0,2.27],[-1.236,1.361],[-2.109,0],[-1.312,-1.619],[0,0],[0,-4.057],[1.731,-2.145],[0,0]],"v":[[3.86,-11.179],[3.86,-8.802],[3.345,-8.802],[-1.862,-6.864],[-4.102,-1.581],[0.651,-3.579],[5.245,-1.552],[6.963,3.687],[5.108,9.136],[0.136,11.179],[-4.995,8.749],[-6.963,2.49],[-6.963,1.415],[-4.367,-7.886],[3.36,-11.179]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[332.569,426.124]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":81,"op":83,"st":-49,"bm":0},{"ddd":0,"ind":85,"ty":4,"nm":"95","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-75.279,23.23,0]},"a":{"a":0,"k":[332.221,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7.447,-9.445],[-1.68,11.02],[-4.617,11.02],[4.48,-8.719],[-7.447,-8.719],[-7.447,-11.02],[7.447,-11.02]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[332.221,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":83,"op":84,"st":-48,"bm":0},{"ddd":0,"ind":86,"ty":4,"nm":"94","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-75.188,23.23,0]},"a":{"a":0,"k":[332.312,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.069,0],[0.681,-0.681],[0,-1.17],[-0.671,-0.691],[-1.12,0],[-0.671,0.691],[0,1.121],[0.696,0.706]],"o":[[-1.1,0],[-0.682,0.682],[0,1.121],[0.671,0.691],[1.12,0],[0.671,-0.691],[0,-1.119],[-0.696,-0.706]],"v":[[0,-9.021],[-2.671,-8],[-3.693,-5.223],[-2.687,-2.505],[0,-1.469],[2.687,-2.505],[3.693,-5.223],[2.649,-7.962]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.242],[0.782,0.777],[1.261,0],[0.762,-0.767],[0,-1.251],[-0.742,-0.717],[-1.322,0],[-0.747,0.722]],"o":[[0,-1.23],[-0.782,-0.777],[-1.262,0],[-0.762,0.768],[0,1.252],[0.741,0.717],[1.312,0],[0.747,-0.721]],"v":[[4.208,5.01],[3.035,1.998],[-0.03,0.832],[-3.065,1.982],[-4.208,5.01],[-3.095,7.962],[0,9.037],[3.088,7.954]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.856],[0.58,-0.857],[0.989,-0.484],[-0.671,-0.948],[0,-1.2],[1.286,-1.13],[2.099,0],[1.276,1.136],[0,1.897],[-0.651,0.959],[-1.15,0.494],[0.565,0.857],[0,1.09],[-1.191,1.09],[-1.948,0],[-1.195,-1.09]],"o":[[0,1.1],[-0.581,0.857],[1.15,0.495],[0.671,0.948],[0,1.908],[-1.287,1.13],[-2.119,0],[-1.277,-1.135],[0,-1.19],[0.65,-0.959],[-0.979,-0.484],[-0.565,-0.858],[0,-1.856],[1.19,-1.09],[1.938,0],[1.196,1.09]],"v":[[6.494,-5.268],[5.624,-2.331],[3.27,-0.318],[6.001,1.847],[7.008,5.07],[5.079,9.627],[0,11.322],[-5.093,9.619],[-7.008,5.07],[-6.032,1.847],[-3.33,-0.333],[-5.646,-2.346],[-6.494,-5.268],[-4.708,-9.688],[0,-11.322],[4.7,-9.688]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[332.312,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":84,"op":85,"st":-47,"bm":0},{"ddd":0,"ind":87,"ty":4,"nm":"93","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-75.446,23.087,0]},"a":{"a":0,"k":[332.054,425.837,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.211,0],[-0.792,0.576],[-0.363,0.848],[0,0],[0.797,1.15],[1.221,0],[0.747,-0.943],[0,-1.544],[-0.721,-0.974]],"o":[[0.938,0],[0.792,-0.574],[0,0],[0,-1.837],[-0.797,-1.15],[-1.231,0],[-0.747,0.944],[0,1.504],[0.722,0.975]],"v":[[-0.197,1.476],[2.399,0.612],[4.132,-1.521],[4.132,-2.642],[2.937,-7.122],[-0.091,-8.848],[-3.058,-7.433],[-4.178,-3.701],[-3.096,0.015]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.111,2.518],[0.812,-0.424],[0.969,0],[0.944,0.626],[0.515,1.135],[0,1.372],[-0.56,1.18],[-1.029,0.626],[-1.373,0],[-1.256,-1.629],[0,-2.815],[0,0],[1.695,-1.973],[3.421,-0.051],[0,0],[0,0],[0,0],[-1.241,1.163]],"o":[[-0.585,0.696],[-0.812,0.424],[-1.271,0],[-0.943,-0.625],[-0.515,-1.136],[0,-1.474],[0.561,-1.182],[1.029,-0.626],[2.18,0],[1.257,1.63],[0,0],[0,4.289],[-1.695,1.973],[0,0],[0,0],[0,0],[2.311,-0.04],[1.241,-1.163]],"v":[[4.117,1.476],[2.021,3.155],[-0.651,3.792],[-3.974,2.853],[-6.161,0.212],[-6.933,-3.55],[-6.093,-7.53],[-3.708,-10.24],[-0.106,-11.179],[5.048,-8.734],[6.933,-2.066],[6.933,-1.249],[4.39,8.144],[-3.285,11.179],[-3.83,11.179],[-3.83,8.802],[-3.239,8.802],[2.089,6.997]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[332.054,425.837]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":85,"op":87,"st":-46,"bm":0},{"ddd":0,"ind":88,"ty":4,"nm":"92","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.483,23.23,0]},"a":{"a":0,"k":[324.017,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.666,1.085],[1.443,0],[0.656,-1.079],[0.02,-2.24],[0,0],[-0.691,-1.136],[-1.403,0],[-0.671,1.07],[-0.03,2.301]],"o":[[0,-2.371],[-0.666,-1.084],[-1.433,0],[-0.656,1.08],[0,0],[0,2.382],[0.691,1.135],[1.382,0],[0.671,-1.069],[0,0]],"v":[[4.155,-2.21],[3.156,-7.395],[-0.008,-9.021],[-3.141,-7.402],[-4.155,-2.422],[-4.155,2.059],[-3.118,7.334],[0.023,9.037],[3.103,7.432],[4.155,2.377]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.12,-1.595],[2.381,0],[1.13,1.56],[0.04,3.098],[0,0],[-1.12,1.574],[-2.392,0],[-1.12,-1.519],[-0.03,-3.168]],"o":[[0,3.28],[-1.12,1.595],[-2.352,0],[-1.13,-1.559],[0,0],[0,-3.24],[1.12,-1.574],[2.371,0],[1.12,1.519],[0,0]],"v":[[6.955,1.619],[5.275,8.931],[0.023,11.322],[-5.199,8.983],[-6.955,1.998],[-6.955,-1.74],[-5.275,-8.961],[-0.008,-11.322],[5.23,-9.044],[6.955,-2.014]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.304,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[313.005,425.928]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":87,"op":88,"st":-45,"bm":0},{"ddd":0,"ind":89,"ty":4,"nm":"91","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-85.792,23.178,0]},"a":{"a":0,"k":[321.708,425.928,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[330.412,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[313.005,425.928]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":88,"op":89,"st":-44,"bm":0},{"ddd":0,"ind":90,"ty":4,"nm":"90","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.173,23.079,0]},"a":{"a":0,"k":[324.327,425.829,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.696,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.307,1.251],[-2.19,0],[-1.191,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.696,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.558,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.448,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[313.005,425.928]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":89,"op":90,"st":-43,"bm":0},{"ddd":0,"ind":91,"ty":4,"nm":"89","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.612,23.23,0]},"a":{"a":0,"k":[323.888,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.757,0.676],[0,1.15],[2.573,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.968,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.292,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.757,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.483,0.02],[0,0]],"o":[[0,0],[1.322,-0.021],[0.757,-0.677],[0,-2.583],[-1.211,0],[-0.721,0.691],[0,0],[0,-1.746],[1.277,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.069,0],[-1.297,-1.121],[0,0],[0,1.16],[0.757,0.696],[1.352,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.717,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.906,-7.984],[-3.989,-5.237],[-6.789,-5.237],[-4.874,-9.589],[-0.008,-11.322],[4.882,-9.672],[6.653,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.008,11.322],[-5.04,9.643],[-6.986,5.207],[-4.17,5.207],[-3.035,7.992],[0.008,9.037],[3.111,7.977],[4.185,4.935],[3.005,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.016,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[313.005,425.928]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":90,"op":91,"st":-42,"bm":0},{"ddd":0,"ind":92,"ty":4,"nm":"88","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-82.954,23.178,0]},"a":{"a":0,"k":[324.546,425.928,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.897,3.617],[7.954,3.617],[7.954,5.903],[4.897,5.903],[4.897,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.897,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.365,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[313.005,425.928]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":91,"op":92,"st":-41,"bm":0},{"ddd":0,"ind":93,"ty":4,"nm":"87","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.219,23.329,0]},"a":{"a":0,"k":[324.281,426.079,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.373,0],[-1.181,-1.327],[0,-2.261],[1.227,-1.307],[2.2,0],[1.231,1.079],[0.171,1.906],[0,0],[-0.727,-0.641],[-1.191,0],[-0.742,0.888],[0,1.564],[0.802,0.894],[1.332,0],[0.696,-0.535],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.08,-0.636],[2.008,0],[1.181,1.327],[0,2.271],[-1.226,1.307],[-1.948,0],[-1.231,-1.08],[0,0],[0.171,1.261],[0.727,0.642],[1.302,0],[0.741,-0.889],[0,-1.474],[-0.803,-0.893],[-1.221,0],[0,0],[0,0]],"v":[[-6.138,-0.182],[-5.018,-11.171],[6.274,-11.171],[6.274,-8.583],[-2.641,-8.583],[-3.307,-2.573],[0.371,-3.526],[5.154,-1.536],[6.925,3.845],[5.086,9.211],[-0.053,11.171],[-4.821,9.552],[-6.925,5.071],[-4.276,5.071],[-2.929,7.924],[-0.053,8.886],[3.012,7.554],[4.125,3.875],[2.922,0.325],[-0.28,-1.015],[-3.156,-0.212],[-3.898,0.394]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.864,426.132]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[313.005,425.928]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":92,"op":93,"st":-40,"bm":0},{"ddd":0,"ind":94,"ty":4,"nm":"86","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.347,23.329,0]},"a":{"a":0,"k":[324.153,426.079,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.211,0],[0.807,-0.575],[0.312,-0.867],[0,0],[-0.817,-1.11],[-1.221,0],[-0.721,0.929],[0,1.504],[0.731,0.934]],"o":[[-0.959,0],[-0.808,0.575],[0,0],[0,1.816],[0.817,1.109],[1.261,0],[0.722,-0.928],[0,-1.514],[-0.732,-0.933]],"v":[[0.182,-1.249],[-2.467,-0.386],[-4.147,1.778],[-4.147,2.808],[-2.921,7.198],[0.136,8.862],[3.11,7.47],[4.193,3.822],[3.096,0.151]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.292,-1.251],[0.202,-2.271],[-2.008,0],[-1.146,-1.352],[0,-2.14],[1.236,-1.363],[2.079,0],[1.312,1.62],[0,2.553],[0,0],[-1.73,2.145],[-3.421,0.051]],"o":[[0,0],[0,0],[-2.18,0.04],[-1.292,1.251],[1.16,-1.332],[1.917,0],[1.145,1.353],[0,2.27],[-1.236,1.361],[-2.109,0],[-1.312,-1.619],[0,0],[0,-4.057],[1.731,-2.145],[0,0]],"v":[[3.86,-11.179],[3.86,-8.802],[3.345,-8.802],[-1.862,-6.864],[-4.102,-1.581],[0.651,-3.579],[5.245,-1.552],[6.963,3.687],[5.108,9.136],[0.136,11.179],[-4.995,8.749],[-6.963,2.49],[-6.963,1.415],[-4.367,-7.886],[3.36,-11.179]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.569,426.124]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[313.005,425.928]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":93,"op":94,"st":-39,"bm":0},{"ddd":0,"ind":95,"ty":4,"nm":"85","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.279,23.178,0]},"a":{"a":0,"k":[324.221,425.928,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7.447,-9.445],[-1.68,11.02],[-4.617,11.02],[4.48,-8.719],[-7.447,-8.719],[-7.447,-11.02],[7.447,-11.02]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.221,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[313.005,425.928]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":94,"op":95,"st":-38,"bm":0},{"ddd":0,"ind":96,"ty":4,"nm":"84","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.453,23.23,0]},"a":{"a":0,"k":[324.047,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.069,0],[0.681,-0.681],[0,-1.17],[-0.671,-0.691],[-1.12,0],[-0.671,0.691],[0,1.121],[0.696,0.706]],"o":[[-1.1,0],[-0.682,0.682],[0,1.121],[0.671,0.691],[1.12,0],[0.671,-0.691],[0,-1.119],[-0.696,-0.706]],"v":[[0,-9.021],[-2.671,-8],[-3.693,-5.223],[-2.687,-2.505],[0,-1.469],[2.687,-2.505],[3.693,-5.223],[2.649,-7.962]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.242],[0.782,0.777],[1.261,0],[0.762,-0.767],[0,-1.251],[-0.742,-0.717],[-1.322,0],[-0.747,0.722]],"o":[[0,-1.23],[-0.782,-0.777],[-1.262,0],[-0.762,0.768],[0,1.252],[0.741,0.717],[1.312,0],[0.747,-0.721]],"v":[[4.208,5.01],[3.035,1.998],[-0.03,0.832],[-3.065,1.982],[-4.208,5.01],[-3.095,7.962],[0,9.037],[3.088,7.954]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.856],[0.58,-0.857],[0.989,-0.484],[-0.671,-0.948],[0,-1.2],[1.286,-1.13],[2.099,0],[1.276,1.136],[0,1.897],[-0.651,0.959],[-1.15,0.494],[0.565,0.857],[0,1.09],[-1.191,1.09],[-1.948,0],[-1.195,-1.09]],"o":[[0,1.1],[-0.581,0.857],[1.15,0.495],[0.671,0.948],[0,1.908],[-1.287,1.13],[-2.119,0],[-1.277,-1.135],[0,-1.19],[0.65,-0.959],[-0.979,-0.484],[-0.565,-0.858],[0,-1.856],[1.19,-1.09],[1.938,0],[1.196,1.09]],"v":[[6.494,-5.268],[5.624,-2.331],[3.27,-0.318],[6.001,1.847],[7.008,5.07],[5.079,9.627],[0,11.322],[-5.093,9.619],[-7.008,5.07],[-6.032,1.847],[-3.33,-0.333],[-5.646,-2.346],[-6.494,-5.268],[-4.708,-9.688],[0,-11.322],[4.7,-9.688]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.312,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[313.005,425.928]},"a":{"a":0,"k":[313.005,425.928]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":95,"op":96,"st":-37,"bm":0},{"ddd":0,"ind":97,"ty":4,"nm":"83","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.066,23.23,0]},"a":{"a":0,"k":[323.434,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.666,1.085],[1.443,0],[0.656,-1.079],[0.02,-2.24],[0,0],[-0.691,-1.136],[-1.403,0],[-0.671,1.07],[-0.03,2.301]],"o":[[0,-2.371],[-0.666,-1.084],[-1.433,0],[-0.656,1.08],[0,0],[0,2.382],[0.691,1.135],[1.382,0],[0.671,-1.069],[0,0]],"v":[[4.155,-2.21],[3.156,-7.395],[-0.008,-9.021],[-3.141,-7.402],[-4.155,-2.422],[-4.155,2.059],[-3.118,7.334],[0.023,9.037],[3.103,7.432],[4.155,2.377]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.12,-1.595],[2.381,0],[1.13,1.56],[0.04,3.098],[0,0],[-1.12,1.574],[-2.392,0],[-1.12,-1.519],[-0.03,-3.168]],"o":[[0,3.28],[-1.12,1.595],[-2.352,0],[-1.13,-1.559],[0,0],[0,-3.24],[1.12,-1.574],[2.371,0],[1.12,1.519],[0,0]],"v":[[6.955,1.619],[5.275,8.931],[0.023,11.322],[-5.199,8.983],[-6.955,1.998],[-6.955,-1.74],[-5.275,-8.961],[-0.008,-11.322],[5.23,-9.044],[6.955,-2.014]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.304,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.696,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.307,1.251],[-2.19,0],[-1.191,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.696,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.558,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[315.041,425.829]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":96,"op":97,"st":-36,"bm":0},{"ddd":0,"ind":98,"ty":4,"nm":"82","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-86.375,23.079,0]},"a":{"a":0,"k":[321.125,425.829,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[330.412,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.696,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.307,1.251],[-2.19,0],[-1.191,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.696,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.558,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[315.041,425.829]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":97,"op":98,"st":-35,"bm":0},{"ddd":0,"ind":99,"ty":4,"nm":"81","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.756,23.079,0]},"a":{"a":0,"k":[323.744,425.829,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.696,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.307,1.251],[-2.19,0],[-1.191,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.696,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.558,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.448,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.696,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.307,1.251],[-2.19,0],[-1.191,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.696,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.558,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[315.041,425.829]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":98,"op":99,"st":-34,"bm":0},{"ddd":0,"ind":100,"ty":4,"nm":"80","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.195,23.23,0]},"a":{"a":0,"k":[323.305,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.757,0.676],[0,1.15],[2.573,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.968,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.292,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.757,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.483,0.02],[0,0]],"o":[[0,0],[1.322,-0.021],[0.757,-0.677],[0,-2.583],[-1.211,0],[-0.721,0.691],[0,0],[0,-1.746],[1.277,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.069,0],[-1.297,-1.121],[0,0],[0,1.16],[0.757,0.696],[1.352,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.717,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.906,-7.984],[-3.989,-5.237],[-6.789,-5.237],[-4.874,-9.589],[-0.008,-11.322],[4.882,-9.672],[6.653,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.008,11.322],[-5.04,9.643],[-6.986,5.207],[-4.17,5.207],[-3.035,7.992],[0.008,9.037],[3.111,7.977],[4.185,4.935],[3.005,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.016,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.696,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.307,1.251],[-2.19,0],[-1.191,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.696,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.558,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[315.041,425.829]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":99,"op":100,"st":-33,"bm":0},{"ddd":0,"ind":101,"ty":4,"nm":"79","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.536,23.079,0]},"a":{"a":0,"k":[323.964,425.829,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.897,3.617],[7.954,3.617],[7.954,5.903],[4.897,5.903],[4.897,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.897,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.365,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.696,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.307,1.251],[-2.19,0],[-1.191,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.696,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.558,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[315.041,425.829]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":100,"op":101,"st":-32,"bm":0},{"ddd":0,"ind":102,"ty":4,"nm":"78","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.801,23.23,0]},"a":{"a":0,"k":[323.699,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.373,0],[-1.181,-1.327],[0,-2.261],[1.227,-1.307],[2.2,0],[1.231,1.079],[0.171,1.906],[0,0],[-0.727,-0.641],[-1.191,0],[-0.742,0.888],[0,1.564],[0.802,0.894],[1.332,0],[0.696,-0.535],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.08,-0.636],[2.008,0],[1.181,1.327],[0,2.271],[-1.226,1.307],[-1.948,0],[-1.231,-1.08],[0,0],[0.171,1.261],[0.727,0.642],[1.302,0],[0.741,-0.889],[0,-1.474],[-0.803,-0.893],[-1.221,0],[0,0],[0,0]],"v":[[-6.138,-0.182],[-5.018,-11.171],[6.274,-11.171],[6.274,-8.583],[-2.641,-8.583],[-3.307,-2.573],[0.371,-3.526],[5.154,-1.536],[6.925,3.845],[5.086,9.211],[-0.053,11.171],[-4.821,9.552],[-6.925,5.071],[-4.276,5.071],[-2.929,7.924],[-0.053,8.886],[3.012,7.554],[4.125,3.875],[2.922,0.325],[-0.28,-1.015],[-3.156,-0.212],[-3.898,0.394]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.864,426.132]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.696,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.307,1.251],[-2.19,0],[-1.191,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.696,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.558,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[315.041,425.829]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":101,"op":102,"st":-31,"bm":0},{"ddd":0,"ind":103,"ty":4,"nm":"77","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.93,23.23,0]},"a":{"a":0,"k":[323.57,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.211,0],[0.807,-0.575],[0.312,-0.867],[0,0],[-0.817,-1.11],[-1.221,0],[-0.721,0.929],[0,1.504],[0.731,0.934]],"o":[[-0.959,0],[-0.808,0.575],[0,0],[0,1.816],[0.817,1.109],[1.261,0],[0.722,-0.928],[0,-1.514],[-0.732,-0.933]],"v":[[0.182,-1.249],[-2.467,-0.386],[-4.147,1.778],[-4.147,2.808],[-2.921,7.198],[0.136,8.862],[3.11,7.47],[4.193,3.822],[3.096,0.151]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.292,-1.251],[0.202,-2.271],[-2.008,0],[-1.146,-1.352],[0,-2.14],[1.236,-1.363],[2.079,0],[1.312,1.62],[0,2.553],[0,0],[-1.73,2.145],[-3.421,0.051]],"o":[[0,0],[0,0],[-2.18,0.04],[-1.292,1.251],[1.16,-1.332],[1.917,0],[1.145,1.353],[0,2.27],[-1.236,1.361],[-2.109,0],[-1.312,-1.619],[0,0],[0,-4.057],[1.731,-2.145],[0,0]],"v":[[3.86,-11.179],[3.86,-8.802],[3.345,-8.802],[-1.862,-6.864],[-4.102,-1.581],[0.651,-3.579],[5.245,-1.552],[6.963,3.687],[5.108,9.136],[0.136,11.179],[-4.995,8.749],[-6.963,2.49],[-6.963,1.415],[-4.367,-7.886],[3.36,-11.179]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.569,426.124]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.696,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.307,1.251],[-2.19,0],[-1.191,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.696,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.558,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[315.041,425.829]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":102,"op":103,"st":-30,"bm":0},{"ddd":0,"ind":104,"ty":4,"nm":"76","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.862,23.079,0]},"a":{"a":0,"k":[323.638,425.829,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7.447,-9.445],[-1.68,11.02],[-4.617,11.02],[4.48,-8.719],[-7.447,-8.719],[-7.447,-11.02],[7.447,-11.02]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.221,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.696,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.307,1.251],[-2.19,0],[-1.191,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.696,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.558,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[315.041,425.829]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":103,"op":104,"st":-29,"bm":0},{"ddd":0,"ind":105,"ty":4,"nm":"75","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.036,23.23,0]},"a":{"a":0,"k":[323.464,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.069,0],[0.681,-0.681],[0,-1.17],[-0.671,-0.691],[-1.12,0],[-0.671,0.691],[0,1.121],[0.696,0.706]],"o":[[-1.1,0],[-0.682,0.682],[0,1.121],[0.671,0.691],[1.12,0],[0.671,-0.691],[0,-1.119],[-0.696,-0.706]],"v":[[0,-9.021],[-2.671,-8],[-3.693,-5.223],[-2.687,-2.505],[0,-1.469],[2.687,-2.505],[3.693,-5.223],[2.649,-7.962]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.242],[0.782,0.777],[1.261,0],[0.762,-0.767],[0,-1.251],[-0.742,-0.717],[-1.322,0],[-0.747,0.722]],"o":[[0,-1.23],[-0.782,-0.777],[-1.262,0],[-0.762,0.768],[0,1.252],[0.741,0.717],[1.312,0],[0.747,-0.721]],"v":[[4.208,5.01],[3.035,1.998],[-0.03,0.832],[-3.065,1.982],[-4.208,5.01],[-3.095,7.962],[0,9.037],[3.088,7.954]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.856],[0.58,-0.857],[0.989,-0.484],[-0.671,-0.948],[0,-1.2],[1.286,-1.13],[2.099,0],[1.276,1.136],[0,1.897],[-0.651,0.959],[-1.15,0.494],[0.565,0.857],[0,1.09],[-1.191,1.09],[-1.948,0],[-1.195,-1.09]],"o":[[0,1.1],[-0.581,0.857],[1.15,0.495],[0.671,0.948],[0,1.908],[-1.287,1.13],[-2.119,0],[-1.277,-1.135],[0,-1.19],[0.65,-0.959],[-0.979,-0.484],[-0.565,-0.858],[0,-1.856],[1.19,-1.09],[1.938,0],[1.196,1.09]],"v":[[6.494,-5.268],[5.624,-2.331],[3.27,-0.318],[6.001,1.847],[7.008,5.07],[5.079,9.627],[0,11.322],[-5.093,9.619],[-7.008,5.07],[-6.032,1.847],[-3.33,-0.333],[-5.646,-2.346],[-6.494,-5.268],[-4.708,-9.688],[0,-11.322],[4.7,-9.688]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.312,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.696,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.307,1.251],[-2.19,0],[-1.191,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.696,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.558,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[315.041,425.829]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":104,"op":105,"st":-28,"bm":0},{"ddd":0,"ind":106,"ty":4,"nm":"9","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.202,23.087,0]},"a":{"a":0,"k":[323.298,425.837,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.211,0],[-0.792,0.576],[-0.363,0.848],[0,0],[0.797,1.15],[1.221,0],[0.747,-0.943],[0,-1.544],[-0.721,-0.974]],"o":[[0.938,0],[0.792,-0.574],[0,0],[0,-1.837],[-0.797,-1.15],[-1.231,0],[-0.747,0.944],[0,1.504],[0.722,0.975]],"v":[[-0.197,1.476],[2.399,0.612],[4.132,-1.521],[4.132,-2.642],[2.937,-7.122],[-0.091,-8.848],[-3.058,-7.433],[-4.178,-3.701],[-3.096,0.015]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.111,2.518],[0.812,-0.424],[0.969,0],[0.944,0.626],[0.515,1.135],[0,1.372],[-0.56,1.18],[-1.029,0.626],[-1.373,0],[-1.256,-1.629],[0,-2.815],[0,0],[1.695,-1.973],[3.421,-0.051],[0,0],[0,0],[0,0],[-1.241,1.163]],"o":[[-0.585,0.696],[-0.812,0.424],[-1.271,0],[-0.943,-0.625],[-0.515,-1.136],[0,-1.474],[0.561,-1.182],[1.029,-0.626],[2.18,0],[1.257,1.63],[0,0],[0,4.289],[-1.695,1.973],[0,0],[0,0],[0,0],[2.311,-0.04],[1.241,-1.163]],"v":[[4.117,1.476],[2.021,3.155],[-0.651,3.792],[-3.974,2.853],[-6.161,0.212],[-6.933,-3.55],[-6.093,-7.53],[-3.708,-10.24],[-0.106,-11.179],[5.048,-8.734],[6.933,-2.066],[6.933,-1.249],[4.39,8.144],[-3.285,11.179],[-3.83,11.179],[-3.83,8.802],[-3.239,8.802],[2.089,6.997]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.054,425.837]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.696,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.307,1.251],[-2.19,0],[-1.191,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.696,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.558,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[315.041,425.829]},"a":{"a":0,"k":[315.041,425.829]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":105,"op":106,"st":-27,"bm":0},{"ddd":0,"ind":107,"ty":4,"nm":"8","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.059,23.23,0]},"a":{"a":0,"k":[323.441,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.666,1.085],[1.443,0],[0.656,-1.079],[0.02,-2.24],[0,0],[-0.691,-1.136],[-1.403,0],[-0.671,1.07],[-0.03,2.301]],"o":[[0,-2.371],[-0.666,-1.084],[-1.433,0],[-0.656,1.08],[0,0],[0,2.382],[0.691,1.135],[1.382,0],[0.671,-1.069],[0,0]],"v":[[4.155,-2.21],[3.156,-7.395],[-0.008,-9.021],[-3.141,-7.402],[-4.155,-2.422],[-4.155,2.059],[-3.118,7.334],[0.023,9.037],[3.103,7.432],[4.155,2.377]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.12,-1.595],[2.381,0],[1.13,1.56],[0.04,3.098],[0,0],[-1.12,1.574],[-2.392,0],[-1.12,-1.519],[-0.03,-3.168]],"o":[[0,3.28],[-1.12,1.595],[-2.352,0],[-1.13,-1.559],[0,0],[0,-3.24],[1.12,-1.574],[2.371,0],[1.12,1.519],[0,0]],"v":[[6.955,1.619],[5.275,8.931],[0.023,11.322],[-5.199,8.983],[-6.955,1.998],[-6.955,-1.74],[-5.275,-8.961],[-0.008,-11.322],[5.23,-9.044],[6.955,-2.014]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.304,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.757,0.676],[0,1.15],[2.573,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.968,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.292,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.757,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.483,0.02],[0,0]],"o":[[0,0],[1.322,-0.021],[0.757,-0.677],[0,-2.583],[-1.211,0],[-0.721,0.691],[0,0],[0,-1.746],[1.277,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.069,0],[-1.297,-1.121],[0,0],[0,1.16],[0.757,0.696],[1.352,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.717,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.906,-7.984],[-3.989,-5.237],[-6.789,-5.237],[-4.874,-9.589],[-0.008,-11.322],[4.882,-9.672],[6.653,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.008,11.322],[-5.04,9.643],[-6.986,5.207],[-4.17,5.207],[-3.035,7.992],[0.008,9.037],[3.111,7.977],[4.185,4.935],[3.005,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[314.609,425.98]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":106,"op":107,"st":-26,"bm":0},{"ddd":0,"ind":108,"ty":4,"nm":"7","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-86.367,23.23,0]},"a":{"a":0,"k":[321.133,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[330.412,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.757,0.676],[0,1.15],[2.573,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.968,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.292,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.757,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.483,0.02],[0,0]],"o":[[0,0],[1.322,-0.021],[0.757,-0.677],[0,-2.583],[-1.211,0],[-0.721,0.691],[0,0],[0,-1.746],[1.277,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.069,0],[-1.297,-1.121],[0,0],[0,1.16],[0.757,0.696],[1.352,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.717,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.906,-7.984],[-3.989,-5.237],[-6.789,-5.237],[-4.874,-9.589],[-0.008,-11.322],[4.882,-9.672],[6.653,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.008,11.322],[-5.04,9.643],[-6.986,5.207],[-4.17,5.207],[-3.035,7.992],[0.008,9.037],[3.111,7.977],[4.185,4.935],[3.005,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[314.609,425.98]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":107,"op":108,"st":-25,"bm":0},{"ddd":0,"ind":109,"ty":4,"nm":"6","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.748,23.23,0]},"a":{"a":0,"k":[323.752,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.696,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.307,1.251],[-2.19,0],[-1.191,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.696,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.558,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.448,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.757,0.676],[0,1.15],[2.573,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.968,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.292,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.757,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.483,0.02],[0,0]],"o":[[0,0],[1.322,-0.021],[0.757,-0.677],[0,-2.583],[-1.211,0],[-0.721,0.691],[0,0],[0,-1.746],[1.277,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.069,0],[-1.297,-1.121],[0,0],[0,1.16],[0.757,0.696],[1.352,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.717,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.906,-7.984],[-3.989,-5.237],[-6.789,-5.237],[-4.874,-9.589],[-0.008,-11.322],[4.882,-9.672],[6.653,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.008,11.322],[-5.04,9.643],[-6.986,5.207],[-4.17,5.207],[-3.035,7.992],[0.008,9.037],[3.111,7.977],[4.185,4.935],[3.005,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[314.609,425.98]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":108,"op":109,"st":-24,"bm":0},{"ddd":0,"ind":110,"ty":4,"nm":"57k-members 5","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.187,23.23,0]},"a":{"a":0,"k":[323.313,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.757,0.676],[0,1.15],[2.573,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.968,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.292,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.757,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.483,0.02],[0,0]],"o":[[0,0],[1.322,-0.021],[0.757,-0.677],[0,-2.583],[-1.211,0],[-0.721,0.691],[0,0],[0,-1.746],[1.277,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.069,0],[-1.297,-1.121],[0,0],[0,1.16],[0.757,0.696],[1.352,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.717,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.906,-7.984],[-3.989,-5.237],[-6.789,-5.237],[-4.874,-9.589],[-0.008,-11.322],[4.882,-9.672],[6.653,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.008,11.322],[-5.04,9.643],[-6.986,5.207],[-4.17,5.207],[-3.035,7.992],[0.008,9.037],[3.111,7.977],[4.185,4.935],[3.005,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.016,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.757,0.676],[0,1.15],[2.573,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.968,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.292,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.757,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.483,0.02],[0,0]],"o":[[0,0],[1.322,-0.021],[0.757,-0.677],[0,-2.583],[-1.211,0],[-0.721,0.691],[0,0],[0,-1.746],[1.277,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.069,0],[-1.297,-1.121],[0,0],[0,1.16],[0.757,0.696],[1.352,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.717,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.906,-7.984],[-3.989,-5.237],[-6.789,-5.237],[-4.874,-9.589],[-0.008,-11.322],[4.882,-9.672],[6.653,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.008,11.322],[-5.04,9.643],[-6.986,5.207],[-4.17,5.207],[-3.035,7.992],[0.008,9.037],[3.111,7.977],[4.185,4.935],[3.005,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[314.609,425.98]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":109,"op":110,"st":-23,"bm":0},{"ddd":0,"ind":111,"ty":4,"nm":"57k-members 4","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.529,23.23,0]},"a":{"a":0,"k":[323.971,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.897,3.617],[7.954,3.617],[7.954,5.903],[4.897,5.903],[4.897,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.897,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.365,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.757,0.676],[0,1.15],[2.573,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.968,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.292,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.757,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.483,0.02],[0,0]],"o":[[0,0],[1.322,-0.021],[0.757,-0.677],[0,-2.583],[-1.211,0],[-0.721,0.691],[0,0],[0,-1.746],[1.277,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.069,0],[-1.297,-1.121],[0,0],[0,1.16],[0.757,0.696],[1.352,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.717,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.906,-7.984],[-3.989,-5.237],[-6.789,-5.237],[-4.874,-9.589],[-0.008,-11.322],[4.882,-9.672],[6.653,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.008,11.322],[-5.04,9.643],[-6.986,5.207],[-4.17,5.207],[-3.035,7.992],[0.008,9.037],[3.111,7.977],[4.185,4.935],[3.005,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[314.609,425.98]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":110,"op":111,"st":-22,"bm":0},{"ddd":0,"ind":112,"ty":4,"nm":"57k-members 3","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.794,23.23,0]},"a":{"a":0,"k":[323.706,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.373,0],[-1.181,-1.327],[0,-2.261],[1.227,-1.307],[2.2,0],[1.231,1.079],[0.171,1.906],[0,0],[-0.727,-0.641],[-1.191,0],[-0.742,0.888],[0,1.564],[0.802,0.894],[1.332,0],[0.696,-0.535],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.08,-0.636],[2.008,0],[1.181,1.327],[0,2.271],[-1.226,1.307],[-1.948,0],[-1.231,-1.08],[0,0],[0.171,1.261],[0.727,0.642],[1.302,0],[0.741,-0.889],[0,-1.474],[-0.803,-0.893],[-1.221,0],[0,0],[0,0]],"v":[[-6.138,-0.182],[-5.018,-11.171],[6.274,-11.171],[6.274,-8.583],[-2.641,-8.583],[-3.307,-2.573],[0.371,-3.526],[5.154,-1.536],[6.925,3.845],[5.086,9.211],[-0.053,11.171],[-4.821,9.552],[-6.925,5.071],[-4.276,5.071],[-2.929,7.924],[-0.053,8.886],[3.012,7.554],[4.125,3.875],[2.922,0.325],[-0.28,-1.015],[-3.156,-0.212],[-3.898,0.394]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.864,426.132]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.757,0.676],[0,1.15],[2.573,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.968,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.292,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.757,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.483,0.02],[0,0]],"o":[[0,0],[1.322,-0.021],[0.757,-0.677],[0,-2.583],[-1.211,0],[-0.721,0.691],[0,0],[0,-1.746],[1.277,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.069,0],[-1.297,-1.121],[0,0],[0,1.16],[0.757,0.696],[1.352,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.717,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.906,-7.984],[-3.989,-5.237],[-6.789,-5.237],[-4.874,-9.589],[-0.008,-11.322],[4.882,-9.672],[6.653,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.008,11.322],[-5.04,9.643],[-6.986,5.207],[-4.17,5.207],[-3.035,7.992],[0.008,9.037],[3.111,7.977],[4.185,4.935],[3.005,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[314.609,425.98]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":111,"op":112,"st":-21,"bm":0},{"ddd":0,"ind":113,"ty":4,"nm":"57k-members 2","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.922,23.23,0]},"a":{"a":0,"k":[323.578,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.211,0],[0.807,-0.575],[0.312,-0.867],[0,0],[-0.817,-1.11],[-1.221,0],[-0.721,0.929],[0,1.504],[0.731,0.934]],"o":[[-0.959,0],[-0.808,0.575],[0,0],[0,1.816],[0.817,1.109],[1.261,0],[0.722,-0.928],[0,-1.514],[-0.732,-0.933]],"v":[[0.182,-1.249],[-2.467,-0.386],[-4.147,1.778],[-4.147,2.808],[-2.921,7.198],[0.136,8.862],[3.11,7.47],[4.193,3.822],[3.096,0.151]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.292,-1.251],[0.202,-2.271],[-2.008,0],[-1.146,-1.352],[0,-2.14],[1.236,-1.363],[2.079,0],[1.312,1.62],[0,2.553],[0,0],[-1.73,2.145],[-3.421,0.051]],"o":[[0,0],[0,0],[-2.18,0.04],[-1.292,1.251],[1.16,-1.332],[1.917,0],[1.145,1.353],[0,2.27],[-1.236,1.361],[-2.109,0],[-1.312,-1.619],[0,0],[0,-4.057],[1.731,-2.145],[0,0]],"v":[[3.86,-11.179],[3.86,-8.802],[3.345,-8.802],[-1.862,-6.864],[-4.102,-1.581],[0.651,-3.579],[5.245,-1.552],[6.963,3.687],[5.108,9.136],[0.136,11.179],[-4.995,8.749],[-6.963,2.49],[-6.963,1.415],[-4.367,-7.886],[3.36,-11.179]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.569,426.124]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.757,0.676],[0,1.15],[2.573,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.968,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.292,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.757,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.483,0.02],[0,0]],"o":[[0,0],[1.322,-0.021],[0.757,-0.677],[0,-2.583],[-1.211,0],[-0.721,0.691],[0,0],[0,-1.746],[1.277,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.069,0],[-1.297,-1.121],[0,0],[0,1.16],[0.757,0.696],[1.352,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.717,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.906,-7.984],[-3.989,-5.237],[-6.789,-5.237],[-4.874,-9.589],[-0.008,-11.322],[4.882,-9.672],[6.653,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.008,11.322],[-5.04,9.643],[-6.986,5.207],[-4.17,5.207],[-3.035,7.992],[0.008,9.037],[3.111,7.977],[4.185,4.935],[3.005,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[314.609,425.98]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":112,"op":113,"st":-20,"bm":0},{"ddd":0,"ind":114,"ty":4,"nm":"57k-members","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.854,23.23,0]},"a":{"a":0,"k":[323.646,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7.447,-9.445],[-1.68,11.02],[-4.617,11.02],[4.48,-8.719],[-7.447,-8.719],[-7.447,-11.02],[7.447,-11.02]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.221,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.757,0.676],[0,1.15],[2.573,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.968,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.292,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.757,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.483,0.02],[0,0]],"o":[[0,0],[1.322,-0.021],[0.757,-0.677],[0,-2.583],[-1.211,0],[-0.721,0.691],[0,0],[0,-1.746],[1.277,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.069,0],[-1.297,-1.121],[0,0],[0,1.16],[0.757,0.696],[1.352,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.717,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.906,-7.984],[-3.989,-5.237],[-6.789,-5.237],[-4.874,-9.589],[-0.008,-11.322],[4.882,-9.672],[6.653,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.008,11.322],[-5.04,9.643],[-6.986,5.207],[-4.17,5.207],[-3.035,7.992],[0.008,9.037],[3.111,7.977],[4.185,4.935],[3.005,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[314.609,425.98]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":113,"op":114,"st":-19,"bm":0},{"ddd":0,"ind":115,"ty":4,"nm":"Layer 59","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.028,23.23,0]},"a":{"a":0,"k":[323.472,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.07,0],[0.681,-0.681],[0,-1.17],[-0.671,-0.691],[-1.119,0],[-0.672,0.691],[0,1.121],[0.696,0.706]],"o":[[-1.1,0],[-0.682,0.682],[0,1.121],[0.671,0.691],[1.121,0],[0.671,-0.691],[0,-1.119],[-0.696,-0.706]],"v":[[0,-9.021],[-2.671,-8],[-3.694,-5.223],[-2.687,-2.505],[0,-1.469],[2.687,-2.505],[3.693,-5.223],[2.649,-7.962]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.242],[0.782,0.777],[1.261,0],[0.762,-0.767],[0,-1.251],[-0.742,-0.717],[-1.321,0],[-0.746,0.722]],"o":[[0,-1.23],[-0.782,-0.777],[-1.262,0],[-0.763,0.768],[0,1.252],[0.741,0.717],[1.312,0],[0.747,-0.721]],"v":[[4.208,5.01],[3.035,1.998],[-0.03,0.832],[-3.065,1.982],[-4.208,5.01],[-3.095,7.962],[0,9.037],[3.087,7.954]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.856],[0.58,-0.857],[0.989,-0.484],[-0.671,-0.948],[0,-1.2],[1.286,-1.13],[2.1,0],[1.276,1.136],[0,1.897],[-0.651,0.959],[-1.15,0.494],[0.565,0.857],[0,1.09],[-1.19,1.09],[-1.947,0],[-1.195,-1.09]],"o":[[0,1.1],[-0.581,0.857],[1.15,0.495],[0.671,0.948],[0,1.908],[-1.287,1.13],[-2.119,0],[-1.277,-1.135],[0,-1.19],[0.65,-0.959],[-0.979,-0.484],[-0.565,-0.858],[0,-1.856],[1.19,-1.09],[1.938,0],[1.196,1.09]],"v":[[6.494,-5.268],[5.624,-2.331],[3.269,-0.318],[6.001,1.847],[7.008,5.07],[5.079,9.627],[0,11.322],[-5.093,9.619],[-7.008,5.07],[-6.032,1.847],[-3.331,-0.333],[-5.646,-2.346],[-6.494,-5.268],[-4.708,-9.688],[0,-11.322],[4.7,-9.688]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.312,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.756,0.676],[0,1.15],[2.574,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.967,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.291,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.756,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.482,0.02],[0,0]],"o":[[0,0],[1.321,-0.021],[0.758,-0.677],[0,-2.583],[-1.211,0],[-0.722,0.691],[0,0],[0,-1.746],[1.276,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.068,0],[-1.297,-1.121],[0,0],[0,1.16],[0.758,0.696],[1.353,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.716,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.907,-7.984],[-3.989,-5.237],[-6.79,-5.237],[-4.875,-9.589],[-0.008,-11.322],[4.881,-9.672],[6.652,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.007,11.322],[-5.041,9.643],[-6.986,5.207],[-4.17,5.207],[-3.036,7.992],[0.007,9.037],[3.111,7.977],[4.185,4.935],[3.004,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":114,"op":116,"st":-18,"bm":0},{"ddd":0,"ind":116,"ty":4,"nm":"Layer 58","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.195,23.23,0]},"a":{"a":0,"k":[323.305,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.211,0],[-0.793,0.576],[-0.363,0.848],[0,0],[0.797,1.15],[1.221,0],[0.747,-0.943],[0,-1.544],[-0.722,-0.974]],"o":[[0.938,0],[0.792,-0.574],[0,0],[0,-1.837],[-0.797,-1.15],[-1.231,0],[-0.747,0.944],[0,1.504],[0.722,0.975]],"v":[[-0.196,1.476],[2.399,0.612],[4.132,-1.521],[4.132,-2.642],[2.937,-7.122],[-0.091,-8.848],[-3.058,-7.433],[-4.178,-3.701],[-3.096,0.015]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.111,2.518],[0.812,-0.424],[0.969,0],[0.943,0.626],[0.516,1.135],[0,1.372],[-0.56,1.18],[-1.029,0.626],[-1.372,0],[-1.256,-1.629],[0,-2.815],[0,0],[1.695,-1.973],[3.42,-0.051],[0,0],[0,0],[0,0],[-1.241,1.163]],"o":[[-0.585,0.696],[-0.812,0.424],[-1.271,0],[-0.943,-0.625],[-0.514,-1.136],[0,-1.474],[0.561,-1.182],[1.029,-0.626],[2.18,0],[1.257,1.63],[0,0],[0,4.289],[-1.695,1.973],[0,0],[0,0],[0,0],[2.311,-0.04],[1.241,-1.163]],"v":[[4.117,1.476],[2.021,3.155],[-0.651,3.792],[-3.974,2.853],[-6.161,0.212],[-6.933,-3.55],[-6.093,-7.53],[-3.708,-10.24],[-0.106,-11.179],[5.048,-8.734],[6.933,-2.066],[6.933,-1.249],[4.39,8.144],[-3.284,11.179],[-3.829,11.179],[-3.829,8.802],[-3.239,8.802],[2.089,6.997]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.054,425.837]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.756,0.676],[0,1.15],[2.574,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.967,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.291,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.756,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.482,0.02],[0,0]],"o":[[0,0],[1.321,-0.021],[0.758,-0.677],[0,-2.583],[-1.211,0],[-0.722,0.691],[0,0],[0,-1.746],[1.276,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.068,0],[-1.297,-1.121],[0,0],[0,1.16],[0.758,0.696],[1.353,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.716,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.907,-7.984],[-3.989,-5.237],[-6.79,-5.237],[-4.875,-9.589],[-0.008,-11.322],[4.881,-9.672],[6.652,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.007,11.322],[-5.041,9.643],[-6.986,5.207],[-4.17,5.207],[-3.036,7.992],[0.007,9.037],[3.111,7.977],[4.185,4.935],[3.004,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.609,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":116,"op":117,"st":-17,"bm":0},{"ddd":0,"ind":117,"ty":4,"nm":"Layer 57","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.369,23.23,0]},"a":{"a":0,"k":[323.131,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.666,1.085],[1.443,0],[0.656,-1.079],[0.021,-2.24],[0,0],[-0.691,-1.136],[-1.402,0],[-0.671,1.07],[-0.031,2.301]],"o":[[0,-2.371],[-0.666,-1.084],[-1.433,0],[-0.655,1.08],[0,0],[0,2.382],[0.69,1.135],[1.383,0],[0.671,-1.069],[0,0]],"v":[[4.156,-2.21],[3.156,-7.395],[-0.007,-9.021],[-3.141,-7.402],[-4.155,-2.422],[-4.155,2.059],[-3.118,7.334],[0.023,9.037],[3.103,7.432],[4.156,2.377]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.121,-1.595],[2.382,0],[1.131,1.56],[0.041,3.098],[0,0],[-1.12,1.574],[-2.392,0],[-1.12,-1.519],[-0.03,-3.168]],"o":[[0,3.28],[-1.119,1.595],[-2.352,0],[-1.13,-1.559],[0,0],[0,-3.24],[1.12,-1.574],[2.371,0],[1.12,1.519],[0,0]],"v":[[6.956,1.619],[5.275,8.931],[0.023,11.322],[-5.2,8.983],[-6.956,1.998],[-6.956,-1.74],[-5.275,-8.961],[-0.007,-11.322],[5.23,-9.044],[6.956,-2.014]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.304,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.896,3.617],[7.954,3.617],[7.954,5.903],[4.896,5.903],[4.896,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.896,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.958,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":117,"op":118,"st":-16,"bm":0},{"ddd":0,"ind":118,"ty":4,"nm":"Layer 56","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-86.677,23.178,0]},"a":{"a":0,"k":[320.823,425.928,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[330.412,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.896,3.617],[7.954,3.617],[7.954,5.903],[4.896,5.903],[4.896,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.896,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.958,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":118,"op":120,"st":-15,"bm":0},{"ddd":0,"ind":119,"ty":4,"nm":"Layer 55","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.059,23.079,0]},"a":{"a":0,"k":[323.441,425.829,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.695,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.308,1.251],[-2.19,0],[-1.19,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.697,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.559,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.448,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.896,3.617],[7.954,3.617],[7.954,5.903],[4.896,5.903],[4.896,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.896,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.958,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":120,"op":121,"st":-14,"bm":0},{"ddd":0,"ind":120,"ty":4,"nm":"Layer 54","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.497,23.23,0]},"a":{"a":0,"k":[323.003,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.756,0.676],[0,1.15],[2.574,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.967,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.291,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.756,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.482,0.02],[0,0]],"o":[[0,0],[1.321,-0.021],[0.758,-0.677],[0,-2.583],[-1.211,0],[-0.722,0.691],[0,0],[0,-1.746],[1.276,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.068,0],[-1.297,-1.121],[0,0],[0,1.16],[0.758,0.696],[1.353,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.716,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.907,-7.984],[-3.989,-5.237],[-6.79,-5.237],[-4.875,-9.589],[-0.008,-11.322],[4.881,-9.672],[6.652,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.007,11.322],[-5.041,9.643],[-6.986,5.207],[-4.17,5.207],[-3.036,7.992],[0.007,9.037],[3.111,7.977],[4.185,4.935],[3.004,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.017,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.896,3.617],[7.954,3.617],[7.954,5.903],[4.896,5.903],[4.896,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.896,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.958,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":121,"op":123,"st":-13,"bm":0},{"ddd":0,"ind":121,"ty":4,"nm":"Layer 53","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.839,23.23,0]},"a":{"a":0,"k":[323.661,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.896,3.617],[7.954,3.617],[7.954,5.903],[4.896,5.903],[4.896,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.896,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.365,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.896,3.617],[7.954,3.617],[7.954,5.903],[4.896,5.903],[4.896,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.896,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.958,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":123,"op":124,"st":-12,"bm":0},{"ddd":0,"ind":122,"ty":4,"nm":"Layer 52","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.104,23.382,0]},"a":{"a":0,"k":[323.396,426.132,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.372,0],[-1.181,-1.327],[0,-2.261],[1.227,-1.307],[2.2,0],[1.23,1.079],[0.172,1.906],[0,0],[-0.727,-0.641],[-1.19,0],[-0.742,0.888],[0,1.564],[0.802,0.894],[1.332,0],[0.697,-0.535],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.079,-0.636],[2.008,0],[1.181,1.327],[0,2.271],[-1.226,1.307],[-1.947,0],[-1.231,-1.08],[0,0],[0.171,1.261],[0.727,0.642],[1.302,0],[0.741,-0.889],[0,-1.474],[-0.803,-0.893],[-1.222,0],[0,0],[0,0]],"v":[[-6.138,-0.182],[-5.018,-11.171],[6.274,-11.171],[6.274,-8.583],[-2.641,-8.583],[-3.307,-2.573],[0.371,-3.526],[5.154,-1.536],[6.925,3.845],[5.085,9.211],[-0.053,11.171],[-4.821,9.552],[-6.925,5.071],[-4.276,5.071],[-2.929,7.924],[-0.053,8.886],[3.012,7.554],[4.125,3.875],[2.921,0.325],[-0.28,-1.015],[-3.157,-0.212],[-3.898,0.394]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.864,426.132]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.896,3.617],[7.954,3.617],[7.954,5.903],[4.896,5.903],[4.896,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.896,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.958,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":124,"op":126,"st":-11,"bm":0},{"ddd":0,"ind":123,"ty":4,"nm":"Layer 51","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.232,23.374,0]},"a":{"a":0,"k":[323.268,426.124,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.211,0],[0.807,-0.575],[0.312,-0.867],[0,0],[-0.816,-1.11],[-1.222,0],[-0.722,0.929],[0,1.504],[0.731,0.934]],"o":[[-0.959,0],[-0.808,0.575],[0,0],[0,1.816],[0.818,1.109],[1.261,0],[0.722,-0.928],[0,-1.514],[-0.732,-0.933]],"v":[[0.182,-1.249],[-2.467,-0.386],[-4.147,1.778],[-4.147,2.808],[-2.922,7.198],[0.137,8.862],[3.11,7.47],[4.193,3.822],[3.096,0.151]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.291,-1.251],[0.201,-2.271],[-2.008,0],[-1.146,-1.352],[0,-2.14],[1.236,-1.363],[2.078,0],[1.312,1.62],[0,2.553],[0,0],[-1.73,2.145],[-3.421,0.051]],"o":[[0,0],[0,0],[-2.18,0.04],[-1.292,1.251],[1.16,-1.332],[1.918,0],[1.145,1.353],[0,2.27],[-1.236,1.361],[-2.109,0],[-1.312,-1.619],[0,0],[0,-4.057],[1.73,-2.145],[0,0]],"v":[[3.859,-11.179],[3.859,-8.802],[3.346,-8.802],[-1.861,-6.864],[-4.102,-1.581],[0.65,-3.579],[5.245,-1.552],[6.963,3.687],[5.108,9.136],[0.137,11.179],[-4.995,8.749],[-6.963,2.49],[-6.963,1.415],[-4.367,-7.886],[3.36,-11.179]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.569,426.124]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.896,3.617],[7.954,3.617],[7.954,5.903],[4.896,5.903],[4.896,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.896,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.958,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":126,"op":128,"st":-10,"bm":0},{"ddd":0,"ind":124,"ty":4,"nm":"Layer 50","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.164,23.23,0]},"a":{"a":0,"k":[323.336,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7.447,-9.445],[-1.681,11.02],[-4.617,11.02],[4.48,-8.719],[-7.447,-8.719],[-7.447,-11.02],[7.447,-11.02]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.221,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.896,3.617],[7.954,3.617],[7.954,5.903],[4.896,5.903],[4.896,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.896,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.958,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":128,"op":130,"st":-9,"bm":0},{"ddd":0,"ind":125,"ty":4,"nm":"Layer 49","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.338,23.23,0]},"a":{"a":0,"k":[323.162,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.07,0],[0.681,-0.681],[0,-1.17],[-0.671,-0.691],[-1.119,0],[-0.672,0.691],[0,1.121],[0.696,0.706]],"o":[[-1.1,0],[-0.682,0.682],[0,1.121],[0.671,0.691],[1.121,0],[0.671,-0.691],[0,-1.119],[-0.696,-0.706]],"v":[[0,-9.021],[-2.671,-8],[-3.694,-5.223],[-2.687,-2.505],[0,-1.469],[2.687,-2.505],[3.693,-5.223],[2.649,-7.962]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.242],[0.782,0.777],[1.261,0],[0.762,-0.767],[0,-1.251],[-0.742,-0.717],[-1.321,0],[-0.746,0.722]],"o":[[0,-1.23],[-0.782,-0.777],[-1.262,0],[-0.763,0.768],[0,1.252],[0.741,0.717],[1.312,0],[0.747,-0.721]],"v":[[4.208,5.01],[3.035,1.998],[-0.03,0.832],[-3.065,1.982],[-4.208,5.01],[-3.095,7.962],[0,9.037],[3.087,7.954]],"c":true}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.856],[0.58,-0.857],[0.989,-0.484],[-0.671,-0.948],[0,-1.2],[1.286,-1.13],[2.1,0],[1.276,1.136],[0,1.897],[-0.651,0.959],[-1.15,0.494],[0.565,0.857],[0,1.09],[-1.19,1.09],[-1.947,0],[-1.195,-1.09]],"o":[[0,1.1],[-0.581,0.857],[1.15,0.495],[0.671,0.948],[0,1.908],[-1.287,1.13],[-2.119,0],[-1.277,-1.135],[0,-1.19],[0.65,-0.959],[-0.979,-0.484],[-0.565,-0.858],[0,-1.856],[1.19,-1.09],[1.938,0],[1.196,1.09]],"v":[[6.494,-5.268],[5.624,-2.331],[3.269,-0.318],[6.001,1.847],[7.008,5.07],[5.079,9.627],[0,11.322],[-5.093,9.619],[-7.008,5.07],[-6.032,1.847],[-3.331,-0.333],[-5.646,-2.346],[-6.494,-5.268],[-4.708,-9.688],[0,-11.322],[4.7,-9.688]],"c":true}},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.312,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.896,3.617],[7.954,3.617],[7.954,5.903],[4.896,5.903],[4.896,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.896,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.958,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":130,"op":132,"st":-8,"bm":0},{"ddd":0,"ind":126,"ty":4,"nm":"Layer 48","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-84.505,23.087,0]},"a":{"a":0,"k":[322.995,425.837,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.211,0],[-0.793,0.576],[-0.363,0.848],[0,0],[0.797,1.15],[1.221,0],[0.747,-0.943],[0,-1.544],[-0.722,-0.974]],"o":[[0.938,0],[0.792,-0.574],[0,0],[0,-1.837],[-0.797,-1.15],[-1.231,0],[-0.747,0.944],[0,1.504],[0.722,0.975]],"v":[[-0.196,1.476],[2.399,0.612],[4.132,-1.521],[4.132,-2.642],[2.937,-7.122],[-0.091,-8.848],[-3.058,-7.433],[-4.178,-3.701],[-3.096,0.015]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.111,2.518],[0.812,-0.424],[0.969,0],[0.943,0.626],[0.516,1.135],[0,1.372],[-0.56,1.18],[-1.029,0.626],[-1.372,0],[-1.256,-1.629],[0,-2.815],[0,0],[1.695,-1.973],[3.42,-0.051],[0,0],[0,0],[0,0],[-1.241,1.163]],"o":[[-0.585,0.696],[-0.812,0.424],[-1.271,0],[-0.943,-0.625],[-0.514,-1.136],[0,-1.474],[0.561,-1.182],[1.029,-0.626],[2.18,0],[1.257,1.63],[0,0],[0,4.289],[-1.695,1.973],[0,0],[0,0],[0,0],[2.311,-0.04],[1.241,-1.163]],"v":[[4.117,1.476],[2.021,3.155],[-0.651,3.792],[-3.974,2.853],[-6.161,0.212],[-6.933,-3.55],[-6.093,-7.53],[-3.708,-10.24],[-0.106,-11.179],[5.048,-8.734],[6.933,-2.066],[6.933,-1.249],[4.39,8.144],[-3.284,11.179],[-3.829,11.179],[-3.829,8.802],[-3.239,8.802],[2.089,6.997]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.054,425.837]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.896,3.617],[7.954,3.617],[7.954,5.903],[4.896,5.903],[4.896,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.896,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[314.958,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":132,"op":134,"st":-7,"bm":0},{"ddd":0,"ind":127,"ty":4,"nm":"Layer 47","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.604,23.23,0]},"a":{"a":0,"k":[323.896,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.666,1.085],[1.443,0],[0.656,-1.079],[0.021,-2.24],[0,0],[-0.691,-1.136],[-1.402,0],[-0.671,1.07],[-0.031,2.301]],"o":[[0,-2.371],[-0.666,-1.084],[-1.433,0],[-0.655,1.08],[0,0],[0,2.382],[0.69,1.135],[1.383,0],[0.671,-1.069],[0,0]],"v":[[4.156,-2.21],[3.156,-7.395],[-0.007,-9.021],[-3.141,-7.402],[-4.155,-2.422],[-4.155,2.059],[-3.118,7.334],[0.023,9.037],[3.103,7.432],[4.156,2.377]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.121,-1.595],[2.382,0],[1.131,1.56],[0.041,3.098],[0,0],[-1.12,1.574],[-2.392,0],[-1.12,-1.519],[-0.03,-3.168]],"o":[[0,3.28],[-1.119,1.595],[-2.352,0],[-1.13,-1.559],[0,0],[0,-3.24],[1.12,-1.574],[2.371,0],[1.12,1.519],[0,0]],"v":[[6.956,1.619],[5.275,8.931],[0.023,11.322],[-5.2,8.983],[-6.956,1.998],[-6.956,-1.74],[-5.275,-8.961],[-0.007,-11.322],[5.23,-9.044],[6.956,-2.014]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.304,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.372,0],[-1.181,-1.327],[0,-2.261],[1.227,-1.307],[2.2,0],[1.23,1.079],[0.172,1.906],[0,0],[-0.727,-0.641],[-1.19,0],[-0.742,0.888],[0,1.564],[0.802,0.894],[1.332,0],[0.697,-0.535],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.079,-0.636],[2.008,0],[1.181,1.327],[0,2.271],[-1.226,1.307],[-1.947,0],[-1.231,-1.08],[0,0],[0.171,1.261],[0.727,0.642],[1.302,0],[0.741,-0.889],[0,-1.474],[-0.803,-0.893],[-1.222,0],[0,0],[0,0]],"v":[[-6.138,-0.182],[-5.018,-11.171],[6.274,-11.171],[6.274,-8.583],[-2.641,-8.583],[-3.307,-2.573],[0.371,-3.526],[5.154,-1.536],[6.925,3.845],[5.085,9.211],[-0.053,11.171],[-4.821,9.552],[-6.925,5.071],[-4.276,5.071],[-2.929,7.924],[-0.053,8.886],[3.012,7.554],[4.125,3.875],[2.921,0.325],[-0.28,-1.015],[-3.157,-0.212],[-3.898,0.394]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.457,426.132]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":134,"op":136,"st":-6,"bm":0},{"ddd":0,"ind":128,"ty":4,"nm":"Layer 46","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-85.913,23.329,0]},"a":{"a":0,"k":[321.587,426.079,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.231,11.072],[1.415,11.072],[1.415,-7.592],[-4.231,-5.518],[-4.231,-8.061],[3.792,-11.072],[4.231,-11.072]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[330.412,425.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.372,0],[-1.181,-1.327],[0,-2.261],[1.227,-1.307],[2.2,0],[1.23,1.079],[0.172,1.906],[0,0],[-0.727,-0.641],[-1.19,0],[-0.742,0.888],[0,1.564],[0.802,0.894],[1.332,0],[0.697,-0.535],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.079,-0.636],[2.008,0],[1.181,1.327],[0,2.271],[-1.226,1.307],[-1.947,0],[-1.231,-1.08],[0,0],[0.171,1.261],[0.727,0.642],[1.302,0],[0.741,-0.889],[0,-1.474],[-0.803,-0.893],[-1.222,0],[0,0],[0,0]],"v":[[-6.138,-0.182],[-5.018,-11.171],[6.274,-11.171],[6.274,-8.583],[-2.641,-8.583],[-3.307,-2.573],[0.371,-3.526],[5.154,-1.536],[6.925,3.845],[5.085,9.211],[-0.053,11.171],[-4.821,9.552],[-6.925,5.071],[-4.276,5.071],[-2.929,7.924],[-0.053,8.886],[3.012,7.554],[4.125,3.875],[2.921,0.325],[-0.28,-1.015],[-3.157,-0.212],[-3.898,0.394]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.457,426.132]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":136,"op":139,"st":-5,"bm":0},{"ddd":0,"ind":129,"ty":4,"nm":"Layer 45","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.294,23.23,0]},"a":{"a":0,"k":[324.206,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.429,0.802],[0,0.857],[0.695,0.736],[1.16,0],[0.771,-0.792],[0,-1.413],[0,0],[-1.308,1.251],[-2.19,0],[-1.19,-1.075],[0,-1.786],[2.765,-2.997],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.13,-1.281],[0.429,-0.803],[0,-1.15],[-0.697,-0.737],[-1.393,0],[-0.772,0.792],[0,0],[0,-2.029],[1.307,-1.251],[2.048,0],[1.19,1.074],[0,2.17],[0,0],[0,0],[0,0]],"v":[[7.432,11.171],[-7.008,11.171],[-7.008,9.157],[0.621,0.681],[2.959,-2.444],[3.603,-4.935],[2.559,-7.765],[-0.227,-8.87],[-3.474,-7.682],[-4.632,-4.374],[-7.432,-4.374],[-5.472,-9.294],[-0.227,-11.171],[4.632,-9.559],[6.418,-5.268],[2.271,2.482],[-3.633,8.886],[7.432,8.886]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.448,425.829]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.372,0],[-1.181,-1.327],[0,-2.261],[1.227,-1.307],[2.2,0],[1.23,1.079],[0.172,1.906],[0,0],[-0.727,-0.641],[-1.19,0],[-0.742,0.888],[0,1.564],[0.802,0.894],[1.332,0],[0.697,-0.535],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.079,-0.636],[2.008,0],[1.181,1.327],[0,2.271],[-1.226,1.307],[-1.947,0],[-1.231,-1.08],[0,0],[0.171,1.261],[0.727,0.642],[1.302,0],[0.741,-0.889],[0,-1.474],[-0.803,-0.893],[-1.222,0],[0,0],[0,0]],"v":[[-6.138,-0.182],[-5.018,-11.171],[6.274,-11.171],[6.274,-8.583],[-2.641,-8.583],[-3.307,-2.573],[0.371,-3.526],[5.154,-1.536],[6.925,3.845],[5.085,9.211],[-0.053,11.171],[-4.821,9.552],[-6.925,5.071],[-4.276,5.071],[-2.929,7.924],[-0.053,8.886],[3.012,7.554],[4.125,3.875],[2.921,0.325],[-0.28,-1.015],[-3.157,-0.212],[-3.898,0.394]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.457,426.132]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":139,"op":142,"st":-4,"bm":0},{"ddd":0,"ind":130,"ty":4,"nm":"Layer 44","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.733,23.23,0]},"a":{"a":0,"k":[323.767,425.98,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.756,0.676],[0,1.15],[2.574,0],[0.722,-0.691],[0,-1.141],[0,0],[-1.276,1.155],[-1.967,0],[-1.181,-1.101],[0,-1.958],[0.621,-0.898],[1.069,-0.444],[-0.661,-0.888],[0,-1.281],[1.291,-1.161],[2.068,0],[1.296,1.119],[0,1.837],[0,0],[-0.756,-0.696],[-1.271,0],[-0.717,0.707],[0,1.322],[0.787,0.687],[1.482,0.02],[0,0]],"o":[[0,0],[1.321,-0.021],[0.758,-0.677],[0,-2.583],[-1.211,0],[-0.722,0.691],[0,0],[0,-1.746],[1.276,-1.155],[2.079,0],[1.181,1.1],[0,0.959],[-0.62,0.898],[1.211,0.383],[0.661,0.889],[0,1.978],[-1.292,1.16],[-2.068,0],[-1.297,-1.121],[0,0],[0,1.16],[0.758,0.696],[1.353,0],[0.716,-0.706],[0,-1.281],[-0.787,-0.686],[0,0],[0,0]],"v":[[-2.505,-1.362],[-0.401,-1.362],[2.716,-2.406],[3.852,-5.146],[-0.008,-9.021],[-2.907,-7.984],[-3.989,-5.237],[-6.79,-5.237],[-4.875,-9.589],[-0.008,-11.322],[4.881,-9.672],[6.652,-5.086],[5.721,-2.301],[3.186,-0.287],[5.994,1.619],[6.986,4.874],[5.048,9.582],[0.007,11.322],[-5.041,9.643],[-6.986,5.207],[-4.17,5.207],[-3.036,7.992],[0.007,9.037],[3.111,7.977],[4.185,4.935],[3.004,1.982],[-0.401,0.924],[-2.505,0.924]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.017,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.372,0],[-1.181,-1.327],[0,-2.261],[1.227,-1.307],[2.2,0],[1.23,1.079],[0.172,1.906],[0,0],[-0.727,-0.641],[-1.19,0],[-0.742,0.888],[0,1.564],[0.802,0.894],[1.332,0],[0.697,-0.535],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.079,-0.636],[2.008,0],[1.181,1.327],[0,2.271],[-1.226,1.307],[-1.947,0],[-1.231,-1.08],[0,0],[0.171,1.261],[0.727,0.642],[1.302,0],[0.741,-0.889],[0,-1.474],[-0.803,-0.893],[-1.222,0],[0,0],[0,0]],"v":[[-6.138,-0.182],[-5.018,-11.171],[6.274,-11.171],[6.274,-8.583],[-2.641,-8.583],[-3.307,-2.573],[0.371,-3.526],[5.154,-1.536],[6.925,3.845],[5.085,9.211],[-0.053,11.171],[-4.821,9.552],[-6.925,5.071],[-4.276,5.071],[-2.929,7.924],[-0.053,8.886],[3.012,7.554],[4.125,3.875],[2.921,0.325],[-0.28,-1.015],[-3.157,-0.212],[-3.898,0.394]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.457,426.132]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":142,"op":145,"st":-3,"bm":0},{"ddd":0,"ind":131,"ty":4,"nm":"Layer 43","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.075,23.382,0]},"a":{"a":0,"k":[324.425,426.132,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.776,3.617],[2.081,3.617],[2.081,-7.189],[1.748,-6.584]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.896,3.617],[7.954,3.617],[7.954,5.903],[4.896,5.903],[4.896,11.02],[2.081,11.02],[2.081,5.903],[-7.954,5.903],[-7.954,4.254],[1.915,-11.02],[4.896,-11.02]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.365,425.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.372,0],[-1.181,-1.327],[0,-2.261],[1.227,-1.307],[2.2,0],[1.23,1.079],[0.172,1.906],[0,0],[-0.727,-0.641],[-1.19,0],[-0.742,0.888],[0,1.564],[0.802,0.894],[1.332,0],[0.697,-0.535],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.079,-0.636],[2.008,0],[1.181,1.327],[0,2.271],[-1.226,1.307],[-1.947,0],[-1.231,-1.08],[0,0],[0.171,1.261],[0.727,0.642],[1.302,0],[0.741,-0.889],[0,-1.474],[-0.803,-0.893],[-1.222,0],[0,0],[0,0]],"v":[[-6.138,-0.182],[-5.018,-11.171],[6.274,-11.171],[6.274,-8.583],[-2.641,-8.583],[-3.307,-2.573],[0.371,-3.526],[5.154,-1.536],[6.925,3.845],[5.085,9.211],[-0.053,11.171],[-4.821,9.552],[-6.925,5.071],[-4.276,5.071],[-2.929,7.924],[-0.053,8.886],[3.012,7.554],[4.125,3.875],[2.921,0.325],[-0.28,-1.015],[-3.157,-0.212],[-3.898,0.394]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.457,426.132]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":145,"op":150,"st":-2,"bm":0},{"ddd":0,"ind":132,"ty":4,"nm":"Layer 42","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.339,23.382,0]},"a":{"a":0,"k":[324.161,426.132,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.372,0],[-1.181,-1.327],[0,-2.261],[1.227,-1.307],[2.2,0],[1.23,1.079],[0.172,1.906],[0,0],[-0.727,-0.641],[-1.19,0],[-0.742,0.888],[0,1.564],[0.802,0.894],[1.332,0],[0.697,-0.535],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.079,-0.636],[2.008,0],[1.181,1.327],[0,2.271],[-1.226,1.307],[-1.947,0],[-1.231,-1.08],[0,0],[0.171,1.261],[0.727,0.642],[1.302,0],[0.741,-0.889],[0,-1.474],[-0.803,-0.893],[-1.222,0],[0,0],[0,0]],"v":[[-6.138,-0.182],[-5.018,-11.171],[6.274,-11.171],[6.274,-8.583],[-2.641,-8.583],[-3.307,-2.573],[0.371,-3.526],[5.154,-1.536],[6.925,3.845],[5.085,9.211],[-0.053,11.171],[-4.821,9.552],[-6.925,5.071],[-4.276,5.071],[-2.929,7.924],[-0.053,8.886],[3.012,7.554],[4.125,3.875],[2.921,0.325],[-0.28,-1.015],[-3.157,-0.212],[-3.898,0.394]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.864,426.132]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.372,0],[-1.181,-1.327],[0,-2.261],[1.227,-1.307],[2.2,0],[1.23,1.079],[0.172,1.906],[0,0],[-0.727,-0.641],[-1.19,0],[-0.742,0.888],[0,1.564],[0.802,0.894],[1.332,0],[0.697,-0.535],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.079,-0.636],[2.008,0],[1.181,1.327],[0,2.271],[-1.226,1.307],[-1.947,0],[-1.231,-1.08],[0,0],[0.171,1.261],[0.727,0.642],[1.302,0],[0.741,-0.889],[0,-1.474],[-0.803,-0.893],[-1.222,0],[0,0],[0,0]],"v":[[-6.138,-0.182],[-5.018,-11.171],[6.274,-11.171],[6.274,-8.583],[-2.641,-8.583],[-3.307,-2.573],[0.371,-3.526],[5.154,-1.536],[6.925,3.845],[5.085,9.211],[-0.053,11.171],[-4.821,9.552],[-6.925,5.071],[-4.276,5.071],[-2.929,7.924],[-0.053,8.886],[3.012,7.554],[4.125,3.875],[2.921,0.325],[-0.28,-1.015],[-3.157,-0.212],[-3.898,0.394]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.457,426.132]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":150,"op":155,"st":-1,"bm":0},{"ddd":0,"ind":133,"ty":4,"nm":"Layer 41","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.468,23.374,0]},"a":{"a":0,"k":[324.032,426.124,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.211,0],[0.807,-0.575],[0.312,-0.867],[0,0],[-0.816,-1.11],[-1.222,0],[-0.722,0.929],[0,1.504],[0.731,0.934]],"o":[[-0.959,0],[-0.808,0.575],[0,0],[0,1.816],[0.818,1.109],[1.261,0],[0.722,-0.928],[0,-1.514],[-0.732,-0.933]],"v":[[0.182,-1.249],[-2.467,-0.386],[-4.147,1.778],[-4.147,2.808],[-2.922,7.198],[0.137,8.862],[3.11,7.47],[4.193,3.822],[3.096,0.151]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.291,-1.251],[0.201,-2.271],[-2.008,0],[-1.146,-1.352],[0,-2.14],[1.236,-1.363],[2.078,0],[1.312,1.62],[0,2.553],[0,0],[-1.73,2.145],[-3.421,0.051]],"o":[[0,0],[0,0],[-2.18,0.04],[-1.292,1.251],[1.16,-1.332],[1.918,0],[1.145,1.353],[0,2.27],[-1.236,1.361],[-2.109,0],[-1.312,-1.619],[0,0],[0,-4.057],[1.73,-2.145],[0,0]],"v":[[3.859,-11.179],[3.859,-8.802],[3.346,-8.802],[-1.861,-6.864],[-4.102,-1.581],[0.65,-3.579],[5.245,-1.552],[6.963,3.687],[5.108,9.136],[0.137,11.179],[-4.995,8.749],[-6.963,2.49],[-6.963,1.415],[-4.367,-7.886],[3.36,-11.179]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[332.569,426.124]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.372,0],[-1.181,-1.327],[0,-2.261],[1.227,-1.307],[2.2,0],[1.23,1.079],[0.172,1.906],[0,0],[-0.727,-0.641],[-1.19,0],[-0.742,0.888],[0,1.564],[0.802,0.894],[1.332,0],[0.697,-0.535],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.079,-0.636],[2.008,0],[1.181,1.327],[0,2.271],[-1.226,1.307],[-1.947,0],[-1.231,-1.08],[0,0],[0.171,1.261],[0.727,0.642],[1.302,0],[0.741,-0.889],[0,-1.474],[-0.803,-0.893],[-1.222,0],[0,0],[0,0]],"v":[[-6.138,-0.182],[-5.018,-11.171],[6.274,-11.171],[6.274,-8.583],[-2.641,-8.583],[-3.307,-2.573],[0.371,-3.526],[5.154,-1.536],[6.925,3.845],[5.085,9.211],[-0.053,11.171],[-4.821,9.552],[-6.925,5.071],[-4.276,5.071],[-2.929,7.924],[-0.053,8.886],[3.012,7.554],[4.125,3.875],[2.921,0.325],[-0.28,-1.015],[-3.157,-0.212],[-3.898,0.394]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[315.457,426.132]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":155,"op":163,"st":0,"bm":0},{"ddd":0,"ind":134,"ty":4,"nm":"103","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-83.525,23.132,0]},"a":{"a":0,"k":[-7.525,23.632,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8.043,14.035],[-1.085,34.5],[-4.021,34.5],[5.076,14.762],[-6.852,14.762],[-6.852,12.461],[8.043,12.461]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.372,0],[-1.181,-1.327],[0,-2.261],[1.227,-1.307],[2.2,0],[1.23,1.079],[0.172,1.906],[0,0],[-0.727,-0.641],[-1.19,0],[-0.742,0.888],[0,1.564],[0.802,0.894],[1.332,0],[0.696,-0.535],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.079,-0.636],[2.008,0],[1.181,1.327],[0,2.271],[-1.226,1.307],[-1.947,0],[-1.231,-1.08],[0,0],[0.171,1.261],[0.727,0.642],[1.302,0],[0.741,-0.889],[0,-1.474],[-0.803,-0.893],[-1.222,0],[0,0],[0,0]],"v":[[-22.307,23.45],[-21.187,12.461],[-9.895,12.461],[-9.895,15.049],[-18.81,15.049],[-19.476,21.059],[-15.798,20.105],[-11.015,22.096],[-9.243,27.477],[-11.083,32.843],[-16.222,34.803],[-20.989,33.184],[-23.094,28.703],[-20.444,28.703],[-19.098,31.556],[-16.222,32.518],[-13.156,31.186],[-12.044,27.507],[-13.247,23.957],[-16.448,22.617],[-19.324,23.42],[-20.066,24.025]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":163,"op":540,"st":0,"bm":0},{"ddd":0,"ind":135,"ty":4,"nm":"Layer 3","parent":136,"sr":1,"ks":{"p":{"a":0,"k":[-0.25,0,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.716],[0.57,0.419],[1.418,0.303],[0.833,0.424],[0.399,0.585],[0,0.808],[-1.136,0.929],[-1.766,0],[-1.155,-0.959],[0,-1.493],[0,0],[0.65,0.555],[0.989,0],[0.575,-0.444],[0,-0.717],[-0.535,-0.343],[-1.397,-0.312],[-0.868,-0.435],[-0.418,-0.61],[0,-0.878],[1.17,-0.883],[1.867,0],[1.009,0.464],[0.57,0.833],[0,0.969],[0,0],[-0.701,-0.55],[-1.15,0],[-0.641,0.429]],"o":[[0,-0.758],[-0.569,-0.419],[-1.418,-0.303],[-0.832,-0.424],[-0.398,-0.586],[0,-1.342],[1.135,-0.929],[1.856,0],[1.155,0.958],[0,0],[0,-0.767],[-0.651,-0.556],[-1.02,0],[-0.575,0.444],[0,0.676],[0.535,0.343],[1.398,0.313],[0.868,0.434],[0.419,0.61],[0,1.463],[-1.171,0.883],[-1.312,0],[-1.009,-0.464],[-0.569,-0.832],[0,0],[0.051,0.939],[0.701,0.55],[1.06,0],[0.641,-0.429]],"v":[[84.148,30.156],[83.293,28.393],[80.312,27.311],[76.936,26.221],[75.089,24.707],[74.491,22.617],[76.194,19.212],[80.546,17.819],[85.064,19.258],[86.798,22.936],[83.982,22.936],[83.006,20.953],[80.546,20.12],[78.154,20.786],[77.292,22.527],[78.094,24.056],[80.992,25.039],[84.391,26.16],[86.32,27.727],[86.949,29.959],[85.193,33.479],[80.637,34.803],[77.155,34.106],[74.786,32.161],[73.932,29.459],[76.731,29.459],[77.859,31.692],[80.637,32.518],[83.188,31.874]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.494,0],[0.656,-1.564],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.686,0],[-0.282,-0.142]],"o":[[-0.424,-0.07],[-1.837,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.918,-1.463],[0.545,0],[0,0]],"v":[[72.039,20.635],[70.662,20.529],[66.923,22.875],[66.923,34.5],[64.123,34.5],[64.123,18.122],[66.848,18.122],[66.893,20.014],[70.798,17.819],[72.039,18.031]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.171,0],[0.767,-0.822],[0.182,-1.483],[0,0],[0,0],[0.687,0.782]],"o":[[-1.13,0],[-0.767,0.823],[0,0],[0,0],[-0.081,-1.423],[-0.687,-0.781]],"v":[[54.147,20.12],[51.302,21.354],[49.879,24.812],[58.083,24.812],[58.083,24.601],[56.933,21.293]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.744,0],[1.393,1.459],[0,2.441],[0,0],[-0.621,1.277],[-1.115,0.722],[-1.302,0],[-1.181,-1.403],[0,-2.613],[0,0],[0,0],[-0.902,-0.994],[-1.393,0],[-0.687,0.403],[-0.515,0.666],[0,0]],"o":[[-2.221,0],[-1.393,-1.458],[0,0],[0,-1.624],[0.62,-1.276],[1.115,-0.721],[2.129,0],[1.181,1.402],[0,0],[0,0],[0.04,1.614],[0.903,0.994],[0.988,0],[0.686,-0.404],[0,0],[-1.373,2.109]],"v":[[54.496,34.803],[49.077,32.615],[46.988,26.766],[46.988,26.25],[47.919,21.898],[50.522,18.901],[54.147,17.819],[59.112,19.924],[60.884,25.947],[60.884,27.113],[49.788,27.113],[51.203,31.026],[54.647,32.518],[57.16,31.912],[58.961,30.307],[60.672,31.639]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,2.089],[0.736,1.039],[1.382,0],[0.808,-1.716],[0,0],[-1.816,0],[-0.747,1.039]],"o":[[0,-1.907],[-0.737,-1.039],[-1.847,0],[0,0],[0.857,1.715],[1.342,0],[0.747,-1.039]],"v":[[41.372,26.175],[40.268,21.755],[37.089,20.195],[33.107,22.77],[33.107,29.854],[37.119,32.426],[40.252,30.867]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.15,-1.519],[1.938,0],[1.13,1.464],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.988,0],[-1.135,-1.503],[0,-2.613]],"o":[[0,2.503],[-1.15,1.52],[-2.069,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.13,-1.403],[1.987,0],[1.136,1.504],[0,0]],"v":[[44.173,26.492],[42.447,32.524],[37.815,34.803],[33.017,32.607],[32.881,34.5],[30.308,34.5],[30.308,11.25],[33.107,11.25],[33.107,19.924],[37.785,17.819],[42.47,20.074],[44.173,26.25]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-2.038,0],[-0.828,-1.756],[-0.872,0.484],[-1.19,0],[-0.061,-3.804],[0,0],[0,0],[0,0],[0.535,0.58],[1.262,0],[0.686,-0.621],[0.111,-1.05],[0,0],[0,0],[0,0],[2.331,0],[0.676,-1.564],[0,0],[0,0],[0,0]],"o":[[0,0],[1.2,-1.413],[2.291,0],[0.545,-0.787],[0.873,-0.484],[3.593,0],[0,0],[0,0],[0,0],[0,-1.171],[-0.535,-0.58],[-1.039,0],[-0.687,0.62],[0,0],[0,0],[0,0],[0,-2.381],[-1.837,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.771,18.122],[5.847,19.938],[10.705,17.819],[15.383,20.453],[17.509,18.546],[20.604,17.819],[26.084,23.525],[26.084,34.5],[23.284,34.5],[23.284,23.692],[22.481,21.066],[19.787,20.195],[17.199,21.127],[16.003,23.632],[16.003,34.5],[13.188,34.5],[13.188,23.768],[9.691,20.195],[5.922,22.542],[5.922,34.5],[3.122,34.5],[3.122,18.122]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.17,0],[0.767,-0.822],[0.182,-1.483],[0,0],[0,0],[0.686,0.782]],"o":[[-1.13,0],[-0.767,0.823],[0,0],[0,0],[-0.081,-1.423],[-0.687,-0.781]],"v":[[-6.838,20.12],[-9.684,21.354],[-11.107,24.812],[-2.902,24.812],[-2.902,24.601],[-4.053,21.293]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.745,0],[1.393,1.459],[0,2.441],[0,0],[-0.621,1.277],[-1.115,0.722],[-1.302,0],[-1.181,-1.403],[0,-2.613],[0,0],[0,0],[-0.903,-0.994],[-1.393,0],[-0.687,0.403],[-0.515,0.666],[0,0]],"o":[[-2.22,0],[-1.393,-1.458],[0,0],[0,-1.624],[0.62,-1.276],[1.115,-0.721],[2.129,0],[1.181,1.402],[0,0],[0,0],[0.04,1.614],[0.903,0.994],[0.989,0],[0.687,-0.404],[0,0],[-1.372,2.109]],"v":[[-6.49,34.803],[-11.909,32.615],[-13.998,26.766],[-13.998,26.25],[-13.067,21.898],[-10.463,18.901],[-6.838,17.819],[-1.873,19.924],[-0.103,25.947],[-0.103,27.113],[-11.198,27.113],[-9.783,31.026],[-6.339,32.518],[-3.826,31.912],[-2.024,30.307],[-0.314,31.639]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 6","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-2.039,0],[-0.828,-1.756],[-0.873,0.484],[-1.191,0],[-0.061,-3.804],[0,0],[0,0],[0,0],[0.535,0.58],[1.261,0],[0.686,-0.621],[0.111,-1.05],[0,0],[0,0],[0,0],[2.331,0],[0.676,-1.564],[0,0],[0,0],[0,0]],"o":[[0,0],[1.201,-1.413],[2.291,0],[0.545,-0.787],[0.873,-0.484],[3.592,0],[0,0],[0,0],[0,0],[0,-1.171],[-0.535,-0.58],[-1.04,0],[-0.687,0.62],[0,0],[0,0],[0,0],[0,-2.381],[-1.837,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-37.823,18.122],[-37.748,19.938],[-32.889,17.819],[-28.211,20.453],[-26.085,18.546],[-22.989,17.819],[-17.51,23.525],[-17.51,34.5],[-20.31,34.5],[-20.31,23.692],[-21.112,21.066],[-23.807,20.195],[-26.395,21.127],[-27.591,23.632],[-27.591,34.5],[-30.406,34.5],[-30.406,23.768],[-33.903,20.195],[-37.672,22.542],[-37.672,34.5],[-40.472,34.5],[-40.472,18.122]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 7","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-59.272,26.916],[-61.028,28.748],[-61.028,34.5],[-63.828,34.5],[-63.828,11.25],[-61.028,11.25],[-61.028,25.312],[-59.529,23.511],[-54.428,18.122],[-51.022,18.122],[-57.395,24.964],[-50.281,34.5],[-53.565,34.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.921568632126,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 8","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"57k-members","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[75.125,-8.5],[71.15,-8.5],[71.15,-41.5],[75.125,-41.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.661,0],[1.088,-1.167],[0.258,-2.105],[0,0],[0,0],[0.974,1.11]],"o":[[-1.604,0],[-1.089,1.168],[0,0],[0,0],[-0.115,-2.02],[-0.975,-1.109]],"v":[[56.648,-28.91],[52.609,-27.159],[50.59,-22.25],[62.234,-22.25],[62.234,-22.551],[60.602,-27.245]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[3.896,0],[1.977,2.07],[0,3.467],[0,0],[-0.881,1.812],[-1.583,1.024],[-1.848,0],[-1.676,-1.99],[0,-3.709],[0,0],[0,0],[-1.282,-1.41],[-1.977,0],[-0.975,0.573],[-0.73,0.945],[0,0]],"o":[[-3.151,0],[-1.977,-2.069],[0,0],[0,-2.306],[0.881,-1.812],[1.583,-1.023],[3.021,0],[1.676,1.991],[0,0],[0,0],[0.057,2.292],[1.282,1.411],[1.403,0],[0.974,-0.572],[0,0],[-1.948,2.994]],"v":[[57.143,-8.07],[49.451,-11.175],[46.486,-19.479],[46.486,-20.209],[47.808,-26.386],[51.503,-30.64],[56.648,-32.176],[63.695,-29.189],[66.209,-20.639],[66.209,-18.984],[50.461,-18.984],[52.47,-13.431],[57.357,-11.314],[60.924,-12.174],[63.48,-14.451],[65.908,-12.561]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-2.865,0],[-0.043,-5.543],[0,0],[0,0],[0,0],[0.752,0.803],[1.59,0],[0.974,-0.688],[0.544,-1.117],[0,0],[0,0],[0,0]],"o":[[0,0],[1.775,-2.234],[4.912,0],[0,0],[0,0],[0,0],[-0.015,-1.676],[-0.752,-0.802],[-1.289,0],[-0.975,0.688],[0,0],[0,0],[0,0],[0,0]],"v":[[26.979,-31.746],[27.107,-28.824],[34.068,-32.176],[41.502,-23.861],[41.502,-8.5],[37.527,-8.5],[37.527,-23.883],[36.378,-27.6],[32.865,-28.803],[29.471,-27.771],[27.193,-25.064],[27.193,-8.5],[23.219,-8.5],[23.219,-31.746]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-2.865,0],[-0.043,-5.543],[0,0],[0,0],[0,0],[0.752,0.803],[1.59,0],[0.974,-0.688],[0.544,-1.117],[0,0],[0,0],[0,0]],"o":[[0,0],[1.775,-2.234],[4.912,0],[0,0],[0,0],[0,0],[-0.015,-1.676],[-0.752,-0.802],[-1.289,0],[-0.975,0.688],[0,0],[0,0],[0,0],[0,0]],"v":[[2.701,-31.746],[2.83,-28.824],[9.791,-32.176],[17.225,-23.861],[17.225,-8.5],[13.25,-8.5],[13.25,-23.883],[12.101,-27.6],[8.588,-28.803],[5.193,-27.771],[2.916,-25.064],[2.916,-8.5],[-1.059,-8.5],[-1.059,-31.746]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.304,0],[-1.117,0.645],[-0.501,1.031],[0,0],[0,0],[0,-2.85],[-0.831,-0.701]],"o":[[1.246,0],[1.117,-0.645],[0,0],[0,0],[-4.87,0],[0,1.246],[0.831,0.702]],"v":[[-17.236,-11.529],[-13.691,-12.496],[-11.264,-15.01],[-11.264,-19.779],[-14.379,-19.779],[-21.684,-15.504],[-20.438,-12.582]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.143,1.175],[2.563,0],[1.468,1.297],[0,1.991],[-1.841,1.34],[-3.337,0],[0,0],[0,0],[0.831,0.824],[1.618,0],[0.959,-0.716],[0,-1.017],[0,0],[-0.824,1.082],[-1.411,0.631],[-1.69,0],[-1.519,-1.339],[-0.058,-2.349],[0,0],[-0.544,-1.26],[0,0]],"o":[[-0.229,-0.458],[-1.848,1.92],[-2.292,0],[-1.468,-1.296],[0,-2.42],[1.84,-1.339],[0,0],[0,0],[0,-1.389],[-0.831,-0.823],[-1.418,0],[-0.96,0.717],[0,0],[0,-1.16],[0.823,-1.081],[1.411,-0.63],[2.678,0],[1.518,1.34],[0,0],[0,2.135],[0,0],[0,0]],"v":[[-10.641,-8.5],[-11.199,-10.949],[-17.816,-8.07],[-23.456,-10.015],[-25.658,-14.945],[-22.897,-20.585],[-15.131,-22.594],[-11.264,-22.594],[-11.264,-24.42],[-12.51,-27.739],[-16.184,-28.975],[-19.75,-27.9],[-21.189,-25.301],[-25.186,-25.301],[-23.95,-28.663],[-20.599,-31.23],[-15.947,-32.176],[-9.652,-30.167],[-7.289,-24.635],[-7.289,-13.936],[-6.473,-8.844],[-6.473,-8.5]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-2.822,0],[-0.043,-5.543],[0,0],[0,0],[0,0],[0.752,0.803],[1.59,0],[0.974,-0.688],[0.544,-1.117],[0,0],[0,0],[0,0],[0,0]],"o":[[1.762,-2.162],[4.913,0],[0,0],[0,0],[0,0],[-0.015,-1.676],[-0.752,-0.802],[-1.289,0],[-0.974,0.688],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-45.252,-28.932],[-38.377,-32.176],[-30.943,-23.861],[-30.943,-8.5],[-34.918,-8.5],[-34.918,-23.883],[-36.067,-27.6],[-39.58,-28.803],[-42.975,-27.771],[-45.252,-25.064],[-45.252,-8.5],[-49.227,-8.5],[-49.227,-41.5],[-45.252,-41.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 6","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[2.055,-1.797],[3.409,0],[2.227,2.65],[0,4.44],[0,0],[-1.039,2.206],[-1.905,1.182],[-2.507,0],[-2.005,-1.854],[-0.33,-3.279],[0,0],[1.196,1.121],[2.148,0],[1.497,-1.95],[0,-3.599],[0,0],[-1.418,-2.007],[-2.55,0],[-1.225,1.039],[-0.401,2.578]],"o":[[-0.387,3.309],[-2.056,1.798],[-3.695,0],[-2.228,-2.649],[0,0],[0,-2.907],[1.038,-2.205],[1.905,-1.182],[3.323,0],[2.005,1.855],[0,0],[-0.358,-2.5],[-1.196,-1.12],[-2.636,0],[-1.497,1.949],[0,0],[0,3.397],[1.418,2.007],[2.292,0],[1.225,-1.038],[0,0]],"v":[[-54.232,-18.426],[-57.896,-10.767],[-66.092,-8.07],[-74.976,-12.045],[-78.316,-22.68],[-78.316,-25.688],[-76.759,-33.357],[-72.344,-38.438],[-65.727,-40.211],[-57.734,-37.429],[-54.232,-29.727],[-58.379,-29.727],[-60.71,-35.157],[-65.727,-36.838],[-71.925,-33.913],[-74.17,-25.592],[-74.17,-22.561],[-72.043,-14.453],[-66.092,-11.443],[-60.817,-13.001],[-58.379,-18.426]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 7","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Channel","bm":0,"hd":false}],"ip":-1,"op":539,"st":-1,"bm":0},{"ddd":0,"ind":136,"ty":4,"nm":"zoom1","parent":76,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.16,"y":1},"o":{"x":0.333,"y":0},"t":70,"s":[-104,228,0],"to":[-6.667,6.667,0],"ti":[6.667,-6.667,0]},{"t":85,"s":[-144,268,0]}]},"s":{"a":1,"k":[{"i":{"x":[0.17,0.17,0.17],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":70,"s":[0,0,100]},{"i":{"x":[0.17,0.17,0.17],"y":[1,1,1]},"o":{"x":[0.83,0.83,0.83],"y":[0,0,0]},"t":85,"s":[105,105,100]},{"t":95,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[22.015,-29.135],[0,0],[39.249,0]],"o":[[-39.248,0],[0,0],[-22.015,-29.135],[0,0]],"v":[[0,-122.5],[-96.192,-74.5],[96.192,-74.5],[0,-122.5]],"c":false}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.215686276555,0.419607847929,0.580392181873,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,-27.196],[0,0],[-15.255,-20.188],[0,0],[0,27.196],[0,0],[15.255,20.188]],"o":[[0,0],[-15.255,20.188],[0,0],[0,27.196],[0,0],[15.255,-20.188],[0,0],[0,-27.196],[0,0]],"v":[[96.192,-74.5],[-96.192,-74.5],[-120.5,-2],[-120.5,-2],[-96.192,70.5],[96.193,70.5],[120.5,-2],[120.5,-2],[96.192,-74.5]],"c":false}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.505882382393,0.670588254929,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-39.248,0],[-22.015,29.135]],"o":[[0,0],[22.015,29.135],[39.249,0],[0,0]],"v":[[96.193,70.5],[-96.192,70.5],[0,118.5],[96.193,70.5]],"c":false}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.690196096897,0.835294127464,0.960784316063,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[69.864,0],[0,-69.864],[-69.864,0],[0,69.864]],"o":[[-69.864,0],[0,69.864],[69.864,0],[0,-69.864]],"v":[[0,-128.5],[-126.5,-2],[0,124.5],[126.5,-2]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":0,"op":540,"st":0,"bm":0},{"ddd":0,"ind":137,"ty":4,"nm":"Layer 2","parent":76,"sr":1,"ks":{"p":{"a":0,"k":[59,516,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[22.644,0],[0,0],[0,22.644],[0,0],[-22.644,0],[0,0],[0,-22.644]],"o":[[0,22.644],[0,0],[-22.644,0],[0,0],[0,-22.644],[0,0],[22.644,0],[0,0]],"v":[[198.5,343.5],[157.5,384.5],[-158.5,384.5],[-199.5,343.5],[-199.5,-343.5],[-158.5,-384.5],[157.5,-384.5],[198.5,-343.5]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[32.585,0],[0,0],[0,-32.585],[0,0],[-32.585,0],[0,0],[0,32.585],[0,0]],"o":[[0,0],[-32.585,0],[0,0],[0,32.585],[0,0],[32.585,0],[0,0],[0,-32.585]],"v":[[157.5,-402.5],[-158.5,-402.5],[-217.5,-343.5],[-217.5,343.5],[-158.5,402.5],[157.5,402.5],[216.5,343.5],[216.5,-343.5]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.266666680574,0.32549020648,0.380392163992,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.523,0],[0,0],[0,-5.523],[0,0],[5.523,0],[0,0],[0,5.523],[0,0]],"o":[[0,0],[5.523,0],[0,0],[0,5.523],[0,0],[-5.523,0],[0,0],[0,-5.523]],"v":[[-213.5,-106.5],[-213.5,-106.5],[-203.5,-96.5],[-203.5,-49.5],[-213.5,-39.5],[-213.5,-39.5],[-223.5,-49.5],[-223.5,-96.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.239215686917,0.29411765933,0.341176480055,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-4","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.523,0],[0,0],[0,-5.523],[0,0],[-5.523,0],[0,0],[0,5.523],[0,0]],"o":[[0,0],[-5.523,0],[0,0],[0,5.523],[0,0],[5.523,0],[0,0],[0,-5.523]],"v":[[212.5,-297.5],[212.5,-297.5],[202.5,-287.5],[202.5,-180.5],[212.5,-170.5],[212.5,-170.5],[222.5,-180.5],[222.5,-287.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.239215686917,0.29411765933,0.341176480055,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-10","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.523,0],[0,0],[0,-5.523],[0,0],[5.523,0],[0,0],[0,5.523],[0,0]],"o":[[0,0],[5.523,0],[0,0],[0,5.523],[0,0],[-5.523,0],[0,0],[0,-5.523]],"v":[[-212.5,-285.5],[-212.5,-285.5],[-202.5,-275.5],[-202.5,-168.5],[-212.5,-158.5],[-212.5,-158.5],[-222.5,-168.5],[-222.5,-275.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.239215686917,0.29411765933,0.341176480055,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle","bm":0,"hd":false}],"ip":0,"op":540,"st":0,"bm":0},{"ddd":0,"ind":138,"ty":4,"nm":"phone 3","parent":76,"sr":1,"ks":{"p":{"a":0,"k":[59,516,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,22.644],[0,0],[0,0],[0,0],[-22.644,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,22.644],[0,0],[22.644,0]],"v":[[198.5,343.5],[198.5,317.5],[-199.5,317.5],[-199.5,343.5],[-158.5,384.5],[157.5,384.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[4.465,-17.809],[0,0],[19.194,0],[0,0]],"o":[[0,0],[-4.465,-17.809],[0,0],[-19.194,0]],"v":[[-198.266,-353.5],[197.266,-353.5],[157.5,-384.5],[-158.5,-384.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.215686276555,0.419607847929,0.580392181873,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[22.644,0],[0,0],[0,-22.644],[0,0],[0,0],[0,0]],"o":[[0,0],[-22.644,0],[0,0],[0,0],[0,0],[0,-22.644]],"v":[[157.5,-384.5],[-158.5,-384.5],[-199.5,-343.5],[-199.5,-277.5],[198.5,-277.5],[198.5,-343.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.29411765933,0.490196079016,0.65098041296,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false}],"ip":0,"op":540,"st":0,"bm":0},{"ddd":0,"ind":139,"ty":4,"nm":"phone 4","parent":140,"sr":1,"ks":{"p":{"a":0,"k":[0,592,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.599],[0,0],[-1.287,-0.975],[0,0],[1.053,-0.78],[0,0]],"o":[[0,0],[0,-1.599],[0,0],[1.053,0.78],[0,0],[-1.287,0.975]],"v":[[-59.3,111.15],[-59.3,83.85],[-56.18,82.29],[-37.967,95.94],[-37.967,99.06],[-56.18,112.71]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[21.528,0],[0,-21.528],[-21.528,0],[0,21.528]],"o":[[-21.528,0],[0,21.528],[21.528,0],[0,-21.528]],"v":[[-51.5,58.5],[-90.5,97.5],[-51.5,136.5],[-12.5,97.5]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.627451002598,0.815686285496,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"round-play circle filled white-24px","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,1.105],[-0.258,0.345],[0,0],[0,0.194],[0,0],[-7.732,0],[0,0],[0,-7.732],[0,0],[7.732,0]],"o":[[-1.105,0],[0,-0.431],[0,0],[-0.008,-0.192],[0,0],[0,-7.732],[0,0],[7.732,0],[0,0],[0,7.732],[0,0]],"v":[[-174.513,188.5],[-176.513,186.5],[-176.116,185.304],[-168.488,175.079],[-168.5,174.5],[-168.5,20.5],[-154.5,6.5],[58.5,6.5],[72.5,20.5],[72.5,174.5],[58.5,188.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Combined-Shape","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group-5-Copy","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,-74.5],[124.5,-74.5],[130.5,-68.5],[130.5,-68.5],[124.5,-62.5],[-136.5,-62.5],[-142.5,-68.5],[-142.5,-68.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.901960790157,0.933333337307,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-9","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,-102.5],[124.5,-102.5],[130.5,-96.5],[130.5,-96.5],[124.5,-90.5],[-136.5,-90.5],[-142.5,-96.5],[-142.5,-96.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.901960790157,0.933333337307,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-8","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,-46.5],[1.5,-46.5],[7.5,-40.5],[7.5,-40.5],[1.5,-34.5],[-136.5,-34.5],[-142.5,-40.5],[-142.5,-40.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.901960790157,0.933333337307,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-7","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,-130.5],[-52.5,-130.5],[-46.5,-124.5],[-46.5,-124.5],[-52.5,-118.5],[-136.5,-118.5],[-142.5,-124.5],[-142.5,-124.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.694117665291,0.850980401039,0.988235294819,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.732,0],[0,0],[0,-7.732],[0,0],[-0.003,-0.118],[0,0],[0,-0.483],[-1.105,0],[0,0],[0,7.732],[0,0]],"o":[[0,0],[-7.732,0],[0,0],[0,0.119],[0,0],[-0.317,0.364],[0,1.105],[0,0],[7.732,0],[0,0],[0,-7.732]],"v":[[148.5,-150.5],[-152.5,-150.5],[-166.5,-136.5],[-166.5,-28.5],[-166.482,-28.148],[-175.479,-17.813],[-175.971,-16.5],[-173.971,-14.5],[148.5,-14.5],[162.5,-28.5],[162.5,-136.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group-5-Copy-2","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,-201.5],[60.5,-201.5],[66.5,-195.5],[66.5,-195.5],[60.5,-189.5],[-136.5,-189.5],[-142.5,-195.5],[-142.5,-195.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.901960790157,0.933333337307,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-6","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,-229.5],[-52.5,-229.5],[-46.5,-223.5],[-46.5,-223.5],[-52.5,-217.5],[-136.5,-217.5],[-142.5,-223.5],[-142.5,-223.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.694117665291,0.850980401039,0.988235294819,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.732,0],[0,0],[0,-7.732],[0,0],[-0.003,-0.118],[0,0],[0,-0.483],[-1.105,0],[0,0],[0,7.732],[0,0]],"o":[[0,0],[-7.732,0],[0,0],[0,0.119],[0,0],[-0.317,0.364],[0,1.105],[0,0],[7.732,0],[0,0],[0,-7.732]],"v":[[79.5,-249.5],[-152.5,-249.5],[-166.5,-235.5],[-166.5,-185.5],[-166.482,-185.148],[-175.479,-174.813],[-175.971,-173.5],[-173.971,-171.5],[79.5,-171.5],[93.5,-185.5],[93.5,-235.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group-5-Copy-3","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,257.5],[60.5,257.5],[66.5,263.5],[66.5,263.5],[60.5,269.5],[-136.5,269.5],[-142.5,263.5],[-142.5,263.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.901960790157,0.933333337307,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-6","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,229.5],[-52.5,229.5],[-46.5,235.5],[-46.5,235.5],[-52.5,241.5],[-136.5,241.5],[-142.5,235.5],[-142.5,235.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.694117665291,0.850980401039,0.988235294819,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.732,0],[0,0],[0,-7.732],[0,0],[-0.003,-0.118],[0,0],[0,-0.483],[-1.105,0],[0,0],[0,7.732],[0,0]],"o":[[0,0],[-7.732,0],[0,0],[0,0.119],[0,0],[-0.317,0.364],[0,1.105],[0,0],[7.732,0],[0,0],[0,-7.732]],"v":[[79.5,209.5],[-152.5,209.5],[-166.5,223.5],[-166.5,273.5],[-166.482,273.852],[-175.479,284.187],[-175.971,285.5],[-173.971,287.5],[79.5,287.5],[93.5,273.5],[93.5,223.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group-5","bm":0,"hd":false}],"ip":0,"op":540,"st":0,"bm":0},{"ddd":0,"ind":140,"ty":4,"nm":"phone 2","parent":76,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.477,"y":1},"o":{"x":0.402,"y":0.79},"t":60,"s":[59,-71.495,0],"to":[0,0,0],"ti":[0,0,0]},{"t":85,"s":[59,-396,0]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.599],[0,0],[-1.287,-0.975],[0,0],[1.053,-0.78],[0,0]],"o":[[0,0],[0,-1.599],[0,0],[1.053,0.78],[0,0],[-1.287,0.975]],"v":[[-59.3,111.15],[-59.3,83.85],[-56.18,82.29],[-37.967,95.94],[-37.967,99.06],[-56.18,112.71]],"c":true}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[21.528,0],[0,-21.528],[-21.528,0],[0,21.528]],"o":[[-21.528,0],[0,21.528],[21.528,0],[0,-21.528]],"v":[[-51.5,58.5],[-90.5,97.5],[-51.5,136.5],[-12.5,97.5]],"c":true}},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.627451002598,0.815686285496,0.980392158031,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"round-play circle filled white-24px","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,1.105],[-0.258,0.345],[0,0],[0,0.194],[0,0],[-7.732,0],[0,0],[0,-7.732],[0,0],[7.732,0]],"o":[[-1.105,0],[0,-0.431],[0,0],[-0.008,-0.192],[0,0],[0,-7.732],[0,0],[7.732,0],[0,0],[0,7.732],[0,0]],"v":[[-174.513,188.5],[-176.513,186.5],[-176.116,185.304],[-168.488,175.079],[-168.5,174.5],[-168.5,20.5],[-154.5,6.5],[58.5,6.5],[72.5,20.5],[72.5,174.5],[58.5,188.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Combined-Shape","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group-5-Copy","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,-74.5],[124.5,-74.5],[130.5,-68.5],[130.5,-68.5],[124.5,-62.5],[-136.5,-62.5],[-142.5,-68.5],[-142.5,-68.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.901960790157,0.933333337307,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-9","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,-102.5],[124.5,-102.5],[130.5,-96.5],[130.5,-96.5],[124.5,-90.5],[-136.5,-90.5],[-142.5,-96.5],[-142.5,-96.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.901960790157,0.933333337307,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-8","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,-46.5],[1.5,-46.5],[7.5,-40.5],[7.5,-40.5],[1.5,-34.5],[-136.5,-34.5],[-142.5,-40.5],[-142.5,-40.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.901960790157,0.933333337307,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-7","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,-130.5],[-52.5,-130.5],[-46.5,-124.5],[-46.5,-124.5],[-52.5,-118.5],[-136.5,-118.5],[-142.5,-124.5],[-142.5,-124.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.694117665291,0.850980401039,0.988235294819,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.732,0],[0,0],[0,-7.732],[0,0],[-0.003,-0.118],[0,0],[0,-0.483],[-1.105,0],[0,0],[0,7.732],[0,0]],"o":[[0,0],[-7.732,0],[0,0],[0,0.119],[0,0],[-0.317,0.364],[0,1.105],[0,0],[7.732,0],[0,0],[0,-7.732]],"v":[[148.5,-150.5],[-152.5,-150.5],[-166.5,-136.5],[-166.5,-28.5],[-166.482,-28.148],[-175.479,-17.813],[-175.971,-16.5],[-173.971,-14.5],[148.5,-14.5],[162.5,-28.5],[162.5,-136.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group-5-Copy-2","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,-201.5],[60.5,-201.5],[66.5,-195.5],[66.5,-195.5],[60.5,-189.5],[-136.5,-189.5],[-142.5,-195.5],[-142.5,-195.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.901960790157,0.933333337307,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-6","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,-229.5],[-52.5,-229.5],[-46.5,-223.5],[-46.5,-223.5],[-52.5,-217.5],[-136.5,-217.5],[-142.5,-223.5],[-142.5,-223.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.694117665291,0.850980401039,0.988235294819,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.732,0],[0,0],[0,-7.732],[0,0],[-0.003,-0.118],[0,0],[0,-0.483],[-1.105,0],[0,0],[0,7.732],[0,0]],"o":[[0,0],[-7.732,0],[0,0],[0,0.119],[0,0],[-0.317,0.364],[0,1.105],[0,0],[7.732,0],[0,0],[0,-7.732]],"v":[[79.5,-249.5],[-152.5,-249.5],[-166.5,-235.5],[-166.5,-185.5],[-166.482,-185.148],[-175.479,-174.813],[-175.971,-173.5],[-173.971,-171.5],[79.5,-171.5],[93.5,-185.5],[93.5,-235.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group-5-Copy-3","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,257.5],[60.5,257.5],[66.5,263.5],[66.5,263.5],[60.5,269.5],[-136.5,269.5],[-142.5,263.5],[-142.5,263.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.901960790157,0.933333337307,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-6","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.314,0],[0,0],[0,-3.314],[0,0],[3.314,0],[0,0],[0,3.314],[0,0]],"o":[[0,0],[3.314,0],[0,0],[0,3.314],[0,0],[-3.314,0],[0,0],[0,-3.314]],"v":[[-136.5,229.5],[-52.5,229.5],[-46.5,235.5],[-46.5,235.5],[-52.5,241.5],[-136.5,241.5],[-142.5,235.5],[-142.5,235.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.694117665291,0.850980401039,0.988235294819,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle-Copy-5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.732,0],[0,0],[0,-7.732],[0,0],[-0.003,-0.118],[0,0],[0,-0.483],[-1.105,0],[0,0],[0,7.732],[0,0]],"o":[[0,0],[-7.732,0],[0,0],[0,0.119],[0,0],[-0.317,0.364],[0,1.105],[0,0],[7.732,0],[0,0],[0,-7.732]],"v":[[79.5,209.5],[-152.5,209.5],[-166.5,223.5],[-166.5,273.5],[-166.482,273.852],[-175.479,284.187],[-175.971,285.5],[-173.971,287.5],[79.5,287.5],[93.5,273.5],[93.5,223.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group-5","bm":0,"hd":false}],"ip":-1,"op":539,"st":-1,"bm":0},{"ddd":0,"ind":141,"ty":0,"nm":"_023_CHANNELS","parent":140,"refId":"comp_0","sr":1,"ks":{"p":{"a":0,"k":[-38,1053,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":0,"k":[70,70,100]}},"ao":0,"w":512,"h":512,"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":142,"ty":4,"nm":"phone","parent":76,"sr":1,"ks":{"p":{"a":0,"k":[59,516,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-22.644,0],[0,0],[0,-22.644],[0,0],[22.644,0],[0,0],[0,22.644],[0,0]],"o":[[0,0],[22.644,0],[0,0],[0,22.644],[0,0],[-22.644,0],[0,0],[0,-22.644]],"v":[[-158.5,-384.5],[157.5,-384.5],[198.5,-343.5],[198.5,343.5],[157.5,384.5],[-158.5,384.5],[-199.5,343.5],[-199.5,-343.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.690196096897,0.835294127464,0.960784316063,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"path-1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.523,0],[0,0],[0,-5.523],[0,0],[5.523,0],[0,0],[0,5.523],[0,0]],"o":[[0,0],[5.523,0],[0,0],[0,5.523],[0,0],[-5.523,0],[0,0],[0,-5.523]],"v":[[-212.5,-285.5],[-212.5,-285.5],[-202.5,-275.5],[-202.5,-168.5],[-212.5,-158.5],[-212.5,-158.5],[-222.5,-168.5],[-222.5,-275.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.239215686917,0.29411765933,0.341176480055,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Rectangle","bm":0,"hd":false}],"ip":0,"op":540,"st":0,"bm":0}]} \ No newline at end of file diff --git a/TMessagesProj/src/main/res/raw/fire_off.json b/TMessagesProj/src/main/res/raw/fire_off.json new file mode 100644 index 000000000..607d86f20 --- /dev/null +++ b/TMessagesProj/src/main/res/raw/fire_off.json @@ -0,0 +1,7813 @@ +{ + "v": "5.7.6", + "fr": 60, + "ip": 0, + "op": 120, + "w": 512, + "h": 512, + "nm": "auto_delete_off", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 4, + "nm": "line", + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 247, + 184, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -9, + -72, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 0, + "k": [ + 100, + 100, + 100 + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [ + -62.616, + -33.827 + ], + [ + 43, + 74 + ] + ], + "o": [ + [ + 87, + 47 + ], + [ + -15.412, + -26.523 + ] + ], + "v": [ + [ + 93, + 127 + ], + [ + 189, + 16 + ] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 24, + "s": [ + 0 + ] + }, + { + "t": 33, + "s": [ + 10 + ] + } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 20, + "s": [ + 0 + ] + }, + { + "t": 24, + "s": [ + 10 + ] + } + ], + "ix": 2 + }, + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 20, + "s": [ + 0 + ] + }, + { + "t": 33, + "s": [ + 338.633 + ] + } + ], + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [ + 1, + 1, + 1, + 1 + ], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 28.5, + "s": [ + 19 + ] + }, + { + "t": 33, + "s": [ + 0 + ] + } + ], + "ix": 5 + }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "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": 4, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 122, + "st": 2, + "bm": 0 + }, + { + "ddd": 0, + "ind": 2, + "ty": 4, + "nm": "line", + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { + "x": 0.4, + "y": 1 + }, + "o": { + "x": 0.6, + "y": 0 + }, + "t": 15, + "s": [ + 266, + 307.5, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.6, + "y": 0 + }, + "t": 26, + "s": [ + 306, + 347.5, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 38, + "s": [ + 246, + 287.5, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 52, + "s": [ + 286, + 327.5, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "t": 68, + "s": [ + 266, + 307.5, + 0 + ] + } + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 0, + 0, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 0, + "k": [ + 1500, + 1500, + 100 + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.6, + "y": 0 + }, + "t": 15, + "s": [ + { + "i": [ + [ + 0.322, + -0.315 + ], + [ + 0, + 0 + ], + [ + -0.285, + -0.279 + ], + [ + 0, + 0 + ], + [ + -0.322, + 0.315 + ], + [ + 0, + 0 + ], + [ + 0.285, + 0.279 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -0.227, + 0.313 + ], + [ + 0, + 0 + ], + [ + 0.322, + 0.315 + ], + [ + 0, + 0 + ], + [ + 0.227, + -0.313 + ], + [ + 0, + 0 + ], + [ + -0.322, + -0.315 + ] + ], + "v": [ + [ + -9.477, + -9.646 + ], + [ + -9.565, + -9.545 + ], + [ + -9.477, + -8.512 + ], + [ + -9.398, + -8.422 + ], + [ + -8.239, + -8.422 + ], + [ + -8.151, + -8.524 + ], + [ + -8.239, + -9.556 + ], + [ + -8.318, + -9.646 + ] + ], + "c": true + } + ] + }, + { + "t": 26, + "s": [ + { + "i": [ + [ + 0.322, + -0.315 + ], + [ + 0, + 0 + ], + [ + -0.285, + -0.279 + ], + [ + 0, + 0 + ], + [ + -0.322, + 0.315 + ], + [ + 0, + 0 + ], + [ + 0.285, + 0.279 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -0.227, + 0.313 + ], + [ + 0, + 0 + ], + [ + 0.322, + 0.315 + ], + [ + 0, + 0 + ], + [ + 0.227, + -0.313 + ], + [ + 0, + 0 + ], + [ + -0.322, + -0.315 + ] + ], + "v": [ + [ + -9.477, + -9.646 + ], + [ + -9.565, + -9.545 + ], + [ + -9.477, + -8.512 + ], + [ + 9.102, + 9.678 + ], + [ + 10.261, + 9.678 + ], + [ + 10.349, + 9.576 + ], + [ + 10.261, + 8.544 + ], + [ + -8.318, + -9.646 + ] + ], + "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, + "bm": 0, + "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", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 15, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 3, + "ty": 3, + "nm": "scale", + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 0, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 256, + 444, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 115, + 115, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 0, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 14, + "s": [ + 90, + 110, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 26, + "s": [ + 110, + 90, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 38, + "s": [ + 90, + 105, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 50, + "s": [ + 105, + 95, + 100 + ] + }, + { + "t": 64, + "s": [ + 100, + 100, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "ip": 0, + "op": 122, + "st": -46, + "bm": 0 + }, + { + "ddd": 0, + "ind": 4, + "ty": 4, + "nm": "fire 5", + "parent": 3, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 111.064, + 127.194, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -0.9, + 31.4, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.1, + 0.1, + 0.1 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 0, + "s": [ + 0, + 0, + 100 + ] + }, + { + "i": { + "x": [ + 0.19, + 0.19, + 0.19 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 21.834, + "s": [ + 500, + 500, + 100 + ] + }, + { + "i": { + "x": [ + 0.19, + 0.19, + 0.19 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 39, + "s": [ + 500, + 500, + 100 + ] + }, + { + "i": { + "x": [ + 0.2, + 0.2, + 0.2 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 51, + "s": [ + 500, + 500, + 100 + ] + }, + { + "t": 70, + "s": [ + 500, + 500, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "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.5, + "y": 0 + }, + "t": 0, + "s": [ + { + "i": [ + [ + -0.761, + -1.046 + ], + [ + 0.994, + -10.706 + ], + [ + 0.143, + -0.695 + ], + [ + -0.034, + 0.073 + ], + [ + -5, + 10.105 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 10.496, + 14.432 + ], + [ + -0.069, + 0.741 + ], + [ + -1.655, + 8.038 + ], + [ + 0.556, + -1.193 + ], + [ + 0, + 0 + ], + [ + 0.584, + -1.18 + ] + ], + "v": [ + [ + 4.091, + -22.793 + ], + [ + 20.241, + 17.589 + ], + [ + 19.924, + 19.744 + ], + [ + -8.767, + -1.859 + ], + [ + 1.127, + -22.541 + ], + [ + 1.127, + -22.541 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.4, + "y": 1 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 6.469, + "s": [ + { + "i": [ + [ + -0.866, + 1.39 + ], + [ + -6.141, + -12.686 + ], + [ + -0.305, + -0.919 + ], + [ + 0.103, + 0.179 + ], + [ + 6.492, + -5.156 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 16.51, + -26.505 + ], + [ + 0.425, + 0.878 + ], + [ + 3.524, + 10.617 + ], + [ + -1.675, + -2.917 + ], + [ + 0, + 0 + ], + [ + -1.539, + -0.642 + ] + ], + "v": [ + [ + -22.694, + 11.893 + ], + [ + 18.151, + 5.485 + ], + [ + 19.248, + 8.184 + ], + [ + -9.909, + 16.487 + ], + [ + -22.135, + 15.619 + ], + [ + -22.135, + 15.619 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.6, + "y": 0 + }, + "t": 13.748, + "s": [ + { + "i": [ + [ + -0.306, + -1.481 + ], + [ + -2.015, + -14.895 + ], + [ + -0.082, + -0.969 + ], + [ + -0.053, + 0.672 + ], + [ + -3.924, + 5.099 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 4.223, + 20.437 + ], + [ + 0.139, + 1.03 + ], + [ + 0.944, + 11.206 + ], + [ + 0.867, + -10.927 + ], + [ + 0, + 0 + ], + [ + 0.895, + -1.054 + ] + ], + "v": [ + [ + -1.369, + -44.454 + ], + [ + 12.599, + 11.903 + ], + [ + 12.932, + 14.904 + ], + [ + -13.18, + -3.282 + ], + [ + -4.002, + -45.444 + ], + [ + -4.002, + -45.444 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 19, + "s": [ + { + "i": [ + [ + 0.206, + -1.396 + ], + [ + 0.976, + -13.008 + ], + [ + 0.094, + -0.827 + ], + [ + 2.065, + 1.951 + ], + [ + -12.007, + 2.066 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.39, + 16.328 + ], + [ + -0.054, + 0.877 + ], + [ + -3.048, + -2.857 + ], + [ + 2.172, + -8.379 + ], + [ + 0, + 0 + ], + [ + 1.183, + -0.59 + ] + ], + "v": [ + [ + 13.491, + -32.859 + ], + [ + 15.227, + 14.687 + ], + [ + 15.136, + 16.751 + ], + [ + -9.819, + -6.595 + ], + [ + 11.247, + -34.763 + ], + [ + 11.247, + -34.763 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 20, + "s": [ + { + "i": [ + [ + 0.43, + -1.359 + ], + [ + 2.278, + -12.186 + ], + [ + 0.171, + -0.765 + ], + [ + 2.516, + 2.466 + ], + [ + -15.527, + 0.746 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -2.399, + 14.539 + ], + [ + -0.138, + 0.81 + ], + [ + -3.591, + -3.515 + ], + [ + 2.741, + -7.27 + ], + [ + 0, + 0 + ], + [ + 1.309, + -0.389 + ] + ], + "v": [ + [ + 19.961, + -27.811 + ], + [ + 16.121, + 15.698 + ], + [ + 15.821, + 17.585 + ], + [ + -8.695, + -6.519 + ], + [ + 17.886, + -30.112 + ], + [ + 17.886, + -30.112 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.667, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 21, + "s": [ + { + "i": [ + [ + 0.653, + -1.322 + ], + [ + 3.581, + -11.365 + ], + [ + 0.248, + -0.703 + ], + [ + 2.966, + 2.981 + ], + [ + -19.047, + -0.575 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -4.407, + 12.75 + ], + [ + -0.222, + 0.743 + ], + [ + -4.133, + -4.173 + ], + [ + 3.309, + -6.161 + ], + [ + 0, + 0 + ], + [ + 1.434, + -0.187 + ] + ], + "v": [ + [ + 26.431, + -22.763 + ], + [ + 17.516, + 17.111 + ], + [ + 17.008, + 18.82 + ], + [ + -7.57, + -6.444 + ], + [ + 24.525, + -25.462 + ], + [ + 24.525, + -25.462 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 24, + "s": [ + { + "i": [ + [ + 1.051, + -1.256 + ], + [ + 5.906, + -9.897 + ], + [ + 0.384, + -0.593 + ], + [ + 4.042, + 4.293 + ], + [ + -25.332, + -2.933 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -7.993, + 9.555 + ], + [ + -0.372, + 0.624 + ], + [ + -6.374, + -7.115 + ], + [ + 4.324, + -4.18 + ], + [ + 0, + 0 + ], + [ + 1.659, + 0.174 + ] + ], + "v": [ + [ + 37.984, + -13.748 + ], + [ + 19.559, + 19.275 + ], + [ + 18.886, + 20.664 + ], + [ + -5.261, + -7.469 + ], + [ + 36.38, + -17.158 + ], + [ + 36.38, + -17.158 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 29, + "s": [ + { + "i": [ + [ + 0.825, + -0.713 + ], + [ + 3.238, + -10.544 + ], + [ + 0.248, + -0.701 + ], + [ + 1.468, + 1.667 + ], + [ + -24.427, + -10.705 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -9.337, + 5.276 + ], + [ + -0.224, + 0.729 + ], + [ + -5.649, + -6.57 + ], + [ + 1.455, + -2.286 + ], + [ + 0, + 0 + ], + [ + 1.113, + 0.375 + ] + ], + "v": [ + [ + 31.547, + -12.102 + ], + [ + 17.844, + 16.815 + ], + [ + 17.326, + 18.746 + ], + [ + -5.675, + -7.521 + ], + [ + 30.97, + -14.692 + ], + [ + 30.97, + -14.692 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 32, + "s": [ + { + "i": [ + [ + -0.609, + -0.746 + ], + [ + 2.997, + -13.949 + ], + [ + 1.192, + -2.672 + ], + [ + -0.093, + 0.119 + ], + [ + -4.116, + 8.604 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 7.708, + 10.876 + ], + [ + -0.207, + 0.965 + ], + [ + -6.608, + -6.826 + ], + [ + 1.515, + -1.938 + ], + [ + 0, + 0 + ], + [ + 0.415, + -0.914 + ] + ], + "v": [ + [ + 13.783, + -31.064 + ], + [ + 22.062, + 11.723 + ], + [ + 19.845, + 20.454 + ], + [ + -6.748, + -6.262 + ], + [ + 10.657, + -31.172 + ], + [ + 10.657, + -31.172 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 39, + "s": [ + { + "i": [ + [ + -1.42, + -0.817 + ], + [ + 0.509, + -14.419 + ], + [ + 1.05, + -1.666 + ], + [ + -0.018, + 0.087 + ], + [ + 3.974, + 13.15 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 18.509, + 10.647 + ], + [ + -0.035, + 0.997 + ], + [ + -8.253, + -7.462 + ], + [ + 0.295, + -1.419 + ], + [ + 0, + 0 + ], + [ + -0.831, + -1.841 + ] + ], + "v": [ + [ + -6.301, + -32.736 + ], + [ + 20.731, + 10.687 + ], + [ + 19.326, + 18.223 + ], + [ + -8.066, + -5.088 + ], + [ + -9.532, + -30.798 + ], + [ + -9.532, + -30.798 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 51, + "s": [ + { + "i": [ + [ + -0.911, + -1.361 + ], + [ + 0.717, + -13.303 + ], + [ + 3.833, + -2.596 + ], + [ + -0.049, + 0.103 + ], + [ + -6.826, + 12.543 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 11.308, + 16.892 + ], + [ + -0.062, + 1.142 + ], + [ + -9.233, + -10.058 + ], + [ + 0.8, + -1.675 + ], + [ + 0, + 0 + ], + [ + 0.797, + -1.465 + ] + ], + "v": [ + [ + 10.254, + -32.842 + ], + [ + 25.362, + 6.798 + ], + [ + 20.373, + 21.467 + ], + [ + -6.464, + -7.314 + ], + [ + 6.49, + -32.669 + ], + [ + 6.49, + -32.669 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 70, + "s": [ + { + "i": [ + [ + -1.448, + -0.766 + ], + [ + 2.787, + -14.122 + ], + [ + 2.318, + -2.63 + ], + [ + -0.036, + 0.072 + ], + [ + -0.055, + 14.28 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 19.982, + 10.565 + ], + [ + -0.193, + 0.977 + ], + [ + -9.78, + -8.898 + ], + [ + 0.589, + -1.176 + ], + [ + 0, + 0 + ], + [ + 0.006, + -1.668 + ] + ], + "v": [ + [ + 0.699, + -31.536 + ], + [ + 24.819, + 11.17 + ], + [ + 20.311, + 20.695 + ], + [ + -6.537, + -6.42 + ], + [ + -2.532, + -29.598 + ], + [ + -2.532, + -29.598 + ] + ], + "c": true + } + ] + }, + { + "t": 82, + "s": [ + { + "i": [ + [ + -1.448, + -0.766 + ], + [ + 2.787, + -14.122 + ], + [ + 2.318, + -2.63 + ], + [ + -0.036, + 0.072 + ], + [ + -0.055, + 14.28 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 19.982, + 10.565 + ], + [ + -0.193, + 0.977 + ], + [ + -9.417, + -9.362 + ], + [ + 0.589, + -1.176 + ], + [ + 0, + 0 + ], + [ + 0.006, + -1.668 + ] + ], + "v": [ + [ + 0.699, + -31.536 + ], + [ + 24.819, + 11.17 + ], + [ + 20.204, + 21.024 + ], + [ + -6.998, + -5.795 + ], + [ + -2.532, + -29.598 + ], + [ + -2.532, + -29.598 + ] + ], + "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, + "bm": 0, + "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": "Path-Copy-8", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 19, + "op": 168, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 5, + "ty": 4, + "nm": "fire 4", + "parent": 3, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 111.064, + 127.194, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -0.9, + 31.4, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.1, + 0.1, + 0.1 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 0, + "s": [ + 0, + 0, + 100 + ] + }, + { + "i": { + "x": [ + 0.19, + 0.19, + 0.19 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 21.834, + "s": [ + 500, + 500, + 100 + ] + }, + { + "i": { + "x": [ + 0.19, + 0.19, + 0.19 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 38.922, + "s": [ + 500, + 500, + 100 + ] + }, + { + "i": { + "x": [ + 0.2, + 0.2, + 0.2 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 50.922, + "s": [ + 500, + 500, + 100 + ] + }, + { + "t": 70, + "s": [ + 500, + 500, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "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.5, + "y": 0 + }, + "t": 0, + "s": [ + { + "i": [ + [ + 1.039, + -1.888 + ], + [ + 11.033, + 0.783 + ], + [ + -4.047, + 12.232 + ] + ], + "o": [ + [ + -2.976, + 5.406 + ], + [ + -11.136, + -1.466 + ], + [ + 0.232, + -0.701 + ] + ], + "v": [ + [ + 18.368, + 24.062 + ], + [ + -2.139, + 31.711 + ], + [ + -9.563, + 0.31 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.4, + "y": 1 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 6.469, + "s": [ + { + "i": [ + [ + -0.006, + -3.06 + ], + [ + 16.205, + -0.151 + ], + [ + 1.01, + 4.163 + ] + ], + "o": [ + [ + 0.017, + 8.764 + ], + [ + -11.136, + -1.466 + ], + [ + -0.058, + -0.238 + ] + ], + "v": [ + [ + 20.309, + 14.516 + ], + [ + -2.139, + 31.711 + ], + [ + -9.392, + 17.693 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.6, + "y": 0 + }, + "t": 13.748, + "s": [ + { + "i": [ + [ + 0.23, + -2.653 + ], + [ + 9.578, + 0.532 + ], + [ + -0.944, + 10.35 + ] + ], + "o": [ + [ + -0.657, + 7.598 + ], + [ + -17.974, + -0.275 + ], + [ + 0.054, + -0.593 + ] + ], + "v": [ + [ + 12.986, + 20.944 + ], + [ + -1.135, + 32.44 + ], + [ + -13.419, + 0.215 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.667, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 19, + "s": [ + { + "i": [ + [ + -5.361, + -5.312 + ], + [ + 8.98, + 0.869 + ], + [ + -2.911, + 11.429 + ] + ], + "o": [ + [ + -1.96, + 6.782 + ], + [ + -15.621, + -0.691 + ], + [ + 4.053, + 3.772 + ] + ], + "v": [ + [ + 13.884, + 22.354 + ], + [ + -1.484, + 32.187 + ], + [ + -11.652, + -1.532 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 24, + "s": [ + { + "i": [ + [ + -3.934, + -4.403 + ], + [ + 7.858, + 1.503 + ], + [ + -6.607, + 13.455 + ] + ], + "o": [ + [ + -4.406, + 5.25 + ], + [ + -11.201, + -1.474 + ], + [ + 1.352, + 1.819 + ] + ], + "v": [ + [ + 15.57, + 25.002 + ], + [ + -2.139, + 31.711 + ], + [ + -8.63, + -2.973 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 29, + "s": [ + { + "i": [ + [ + -4.107, + -4.938 + ], + [ + 9.461, + 1.109 + ], + [ + -5.762, + 14.258 + ] + ], + "o": [ + [ + -3.032, + 5.712 + ], + [ + -11.136, + -1.466 + ], + [ + 5.499, + 6.365 + ] + ], + "v": [ + [ + 14.778, + 24.342 + ], + [ + -2.139, + 31.711 + ], + [ + -8.606, + -2.582 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 32, + "s": [ + { + "i": [ + [ + -4.88, + -5.436 + ], + [ + 10.453, + 0.903 + ], + [ + -5.367, + 14.716 + ] + ], + "o": [ + [ + -0.63, + 0.923 + ], + [ + -11.136, + -1.466 + ], + [ + 7.266, + 7.198 + ] + ], + "v": [ + [ + 16.017, + 24.705 + ], + [ + -2.202, + 31.711 + ], + [ + -9.054, + -0.724 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 39, + "s": [ + { + "i": [ + [ + -6.372, + -5.321 + ], + [ + 11.033, + 0.783 + ], + [ + -5.137, + 14.983 + ] + ], + "o": [ + [ + -1.555, + 3.839 + ], + [ + -11.136, + -1.466 + ], + [ + 6.433, + 5.258 + ] + ], + "v": [ + [ + 16.781, + 23.881 + ], + [ + -2.239, + 31.711 + ], + [ + -9.702, + 1.185 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 51, + "s": [ + { + "i": [ + [ + -2.853, + -3.312 + ], + [ + 12.306, + 0.873 + ], + [ + -5.137, + 14.983 + ] + ], + "o": [ + [ + -1.279, + 1.522 + ], + [ + -11.136, + -1.466 + ], + [ + 5.653, + 6.125 + ] + ], + "v": [ + [ + 16.616, + 25.862 + ], + [ + -2.239, + 31.711 + ], + [ + -8.722, + -1.705 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 70, + "s": [ + { + "i": [ + [ + -5.832, + -5.287 + ], + [ + 11.033, + 0.783 + ], + [ + -5.137, + 14.983 + ] + ], + "o": [ + [ + -2.353, + 3.633 + ], + [ + -11.136, + -1.466 + ], + [ + 3.542, + 3.149 + ] + ], + "v": [ + [ + 17.402, + 25.28 + ], + [ + -2.239, + 31.711 + ], + [ + -9.886, + 0.741 + ] + ], + "c": true + } + ] + }, + { + "t": 82, + "s": [ + { + "i": [ + [ + -5.832, + -5.287 + ], + [ + 11.033, + 0.783 + ], + [ + -5.137, + 14.983 + ] + ], + "o": [ + [ + -2.353, + 3.633 + ], + [ + -11.136, + -1.466 + ], + [ + 3.542, + 3.149 + ] + ], + "v": [ + [ + 17.402, + 25.28 + ], + [ + -2.239, + 31.711 + ], + [ + -9.786, + -0.159 + ] + ], + "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, + "bm": 0, + "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": "Path-Copy-8", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 19, + "op": 168, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 6, + "ty": 4, + "nm": "fire 6", + "parent": 3, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 111.064, + 127.194, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -0.9, + 31.4, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.1, + 0.1, + 0.1 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 0, + "s": [ + 0, + 0, + 100 + ] + }, + { + "i": { + "x": [ + 0.19, + 0.19, + 0.19 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 21.834, + "s": [ + 500, + 500, + 100 + ] + }, + { + "i": { + "x": [ + 0.19, + 0.19, + 0.19 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 38.922, + "s": [ + 500, + 500, + 100 + ] + }, + { + "i": { + "x": [ + 0.2, + 0.2, + 0.2 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 50.922, + "s": [ + 500, + 500, + 100 + ] + }, + { + "t": 70, + "s": [ + 500, + 500, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "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.5, + "y": 0 + }, + "t": 0, + "s": [ + { + "i": [ + [ + 0.994, + -10.706 + ], + [ + 0.482, + -1.352 + ], + [ + -3.439, + 12.098 + ], + [ + -0.476, + 1.213 + ] + ], + "o": [ + [ + -0.145, + 1.562 + ], + [ + -2.389, + 6.699 + ], + [ + 0.38, + -1.336 + ], + [ + 0.084, + -0.167 + ] + ], + "v": [ + [ + 20.241, + 17.589 + ], + [ + 19.306, + 21.97 + ], + [ + -10.114, + 2.103 + ], + [ + -8.826, + -1.734 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.4, + "y": 1 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 6.469, + "s": [ + { + "i": [ + [ + -6.141, + -12.686 + ], + [ + -0.34, + -1.987 + ], + [ + 0.471, + 4.325 + ], + [ + 0.185, + 0.383 + ] + ], + "o": [ + [ + 0.896, + 1.851 + ], + [ + 1.685, + 9.842 + ], + [ + -0.052, + -0.478 + ], + [ + -1.467, + -3.038 + ] + ], + "v": [ + [ + 18.151, + 5.485 + ], + [ + 20.027, + 11.287 + ], + [ + -9.285, + 18.319 + ], + [ + -9.627, + 17.021 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.6, + "y": 0 + }, + "t": 13.748, + "s": [ + { + "i": [ + [ + -2.015, + -14.895 + ], + [ + -0.022, + -1.892 + ], + [ + -1.187, + 10.809 + ], + [ + -0.044, + 0.942 + ] + ], + "o": [ + [ + 0.294, + 2.174 + ], + [ + 0.109, + 9.37 + ], + [ + 0.131, + -1.194 + ], + [ + 0.445, + -9.468 + ] + ], + "v": [ + [ + 12.599, + 11.903 + ], + [ + 13.087, + 18.011 + ], + [ + -13.578, + 1.776 + ], + [ + -13.299, + -1.447 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 19, + "s": [ + { + "i": [ + [ + -0.557, + -12.468 + ], + [ + 1.537, + -2.628 + ], + [ + -3.311, + 12.109 + ], + [ + 3.029, + 3.063 + ] + ], + "o": [ + [ + 0.169, + 3.775 + ], + [ + -4.238, + 7.248 + ], + [ + 2.643, + 2.345 + ], + [ + 0.27, + -4.668 + ] + ], + "v": [ + [ + 15.33, + 11.398 + ], + [ + 13.494, + 23.706 + ], + [ + -10.707, + -0.695 + ], + [ + -7.837, + -4.609 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.667, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 20, + "s": [ + { + "i": [ + [ + 1.084, + -11.815 + ], + [ + 1.384, + -2.281 + ], + [ + -3.84, + 12.413 + ], + [ + 2.839, + 3.063 + ] + ], + "o": [ + [ + -0.093, + 3.183 + ], + [ + -4.339, + 6.997 + ], + [ + 3.398, + 2.683 + ], + [ + 0.228, + -3.537 + ] + ], + "v": [ + [ + 16.554, + 13.097 + ], + [ + 14.051, + 23.665 + ], + [ + 6.423, + 15.287 + ], + [ + 9.64, + 11.295 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 24, + "s": [ + { + "i": [ + [ + 5.906, + -9.897 + ], + [ + 0.936, + -1.264 + ], + [ + -5.392, + 13.307 + ], + [ + -0.782, + 1.333 + ] + ], + "o": [ + [ + -0.862, + 1.444 + ], + [ + -4.635, + 6.261 + ], + [ + 0.596, + -1.47 + ], + [ + 0.107, + -0.212 + ] + ], + "v": [ + [ + 19.559, + 19.275 + ], + [ + 16.871, + 23.35 + ], + [ + -9.616, + -0.767 + ], + [ + -7.549, + -4.985 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 29, + "s": [ + { + "i": [ + [ + 3.238, + -10.544 + ], + [ + 0.594, + -1.398 + ], + [ + -4.854, + 13.922 + ], + [ + -0.688, + 1.44 + ] + ], + "o": [ + [ + -0.473, + 1.539 + ], + [ + -2.945, + 6.923 + ], + [ + 0.536, + -1.538 + ], + [ + 0.107, + -0.212 + ] + ], + "v": [ + [ + 17.844, + 16.815 + ], + [ + 16.26, + 21.236 + ], + [ + -9.387, + -0.505 + ], + [ + -7.549, + -4.985 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 32, + "s": [ + { + "i": [ + [ + 2.997, + -13.949 + ], + [ + 0.724, + -1.83 + ], + [ + -4.56, + 14.269 + ], + [ + -0.634, + 1.501 + ] + ], + "o": [ + [ + -0.437, + 2.036 + ], + [ + -3.588, + 9.065 + ], + [ + 0.504, + -1.576 + ], + [ + 0.107, + -0.212 + ] + ], + "v": [ + [ + 22.062, + 11.723 + ], + [ + 20.323, + 17.539 + ], + [ + -9.259, + -0.358 + ], + [ + -7.549, + -4.985 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 39, + "s": [ + { + "i": [ + [ + 0.509, + -14.419 + ], + [ + 0.481, + -1.9 + ], + [ + -4.388, + 14.472 + ], + [ + -0.603, + 1.537 + ] + ], + "o": [ + [ + -0.074, + 2.104 + ], + [ + -2.381, + 9.412 + ], + [ + 0.485, + -1.599 + ], + [ + 0.107, + -0.212 + ] + ], + "v": [ + [ + 20.731, + 10.687 + ], + [ + 19.899, + 16.711 + ], + [ + -9.184, + -0.271 + ], + [ + -7.549, + -4.985 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 51, + "s": [ + { + "i": [ + [ + 0.717, + -13.303 + ], + [ + 0.648, + -2.214 + ], + [ + -4.388, + 14.472 + ], + [ + -0.603, + 1.537 + ] + ], + "o": [ + [ + -0.13, + 2.409 + ], + [ + -3.211, + 10.965 + ], + [ + 0.485, + -1.599 + ], + [ + 0.107, + -0.212 + ] + ], + "v": [ + [ + 25.362, + 6.798 + ], + [ + 24.187, + 13.756 + ], + [ + -9.184, + -0.271 + ], + [ + -7.549, + -4.985 + ] + ], + "c": true + } + ] + }, + { + "t": 70.078125, + "s": [ + { + "i": [ + [ + 2.787, + -14.122 + ], + [ + 0.81, + -1.86 + ], + [ + -4.388, + 14.472 + ], + [ + -0.603, + 1.537 + ] + ], + "o": [ + [ + -0.407, + 2.061 + ], + [ + -4.012, + 9.211 + ], + [ + 0.485, + -1.599 + ], + [ + 0.107, + -0.212 + ] + ], + "v": [ + [ + 24.819, + 11.17 + ], + [ + 22.988, + 17.069 + ], + [ + -9.184, + -0.271 + ], + [ + -7.549, + -4.985 + ] + ], + "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, + "bm": 0, + "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": "Path-Copy-8", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 19, + "op": 21, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 7, + "ty": 4, + "nm": "fire 2", + "parent": 3, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 111.064, + 127.194, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -0.9, + 31.4, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.1, + 0.1, + 0.1 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 0, + "s": [ + 0, + 0, + 100 + ] + }, + { + "i": { + "x": [ + 0.19, + 0.19, + 0.19 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 21.834, + "s": [ + 500, + 500, + 100 + ] + }, + { + "i": { + "x": [ + 0.19, + 0.19, + 0.19 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 38.922, + "s": [ + 500, + 500, + 100 + ] + }, + { + "i": { + "x": [ + 0.2, + 0.2, + 0.2 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 50.922, + "s": [ + 500, + 500, + 100 + ] + }, + { + "t": 70, + "s": [ + 500, + 500, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "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.5, + "y": 0 + }, + "t": 0, + "s": [ + { + "i": [ + [ + -0.761, + -1.046 + ], + [ + 0.994, + -10.706 + ], + [ + 14.886, + 1.056 + ], + [ + -4.787, + 12.195 + ], + [ + -5.308, + 10.726 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 10.496, + 14.432 + ], + [ + -0.864, + 9.301 + ], + [ + -11.774, + -1.55 + ], + [ + 0.084, + -0.167 + ], + [ + 0, + 0 + ], + [ + 0.584, + -1.18 + ] + ], + "v": [ + [ + 4.091, + -22.793 + ], + [ + 20.241, + 17.589 + ], + [ + -2.139, + 31.711 + ], + [ + -8.826, + -1.734 + ], + [ + 1.127, + -22.541 + ], + [ + 1.127, + -22.541 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.4, + "y": 1 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 6.469, + "s": [ + { + "i": [ + [ + -0.866, + 1.39 + ], + [ + -6.141, + -12.686 + ], + [ + 21.864, + -0.203 + ], + [ + 1.859, + 3.851 + ], + [ + 6.891, + -5.474 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 16.51, + -26.505 + ], + [ + 5.335, + 11.021 + ], + [ + -11.774, + -1.55 + ], + [ + -1.467, + -3.038 + ], + [ + 0, + 0 + ], + [ + -1.539, + -0.642 + ] + ], + "v": [ + [ + -22.694, + 11.893 + ], + [ + 18.151, + 5.485 + ], + [ + -2.139, + 31.711 + ], + [ + -9.627, + 17.021 + ], + [ + -22.135, + 15.619 + ], + [ + -22.135, + 15.619 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.667, + "y": 1 + }, + "o": { + "x": 0.6, + "y": 0 + }, + "t": 13.748, + "s": [ + { + "i": [ + [ + -0.306, + -1.481 + ], + [ + -2.015, + -14.895 + ], + [ + 12.922, + 0.717 + ], + [ + -0.445, + 9.468 + ], + [ + -4.165, + 5.413 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 4.223, + 20.437 + ], + [ + 1.751, + 12.94 + ], + [ + -19.003, + -0.29 + ], + [ + 0.445, + -9.468 + ], + [ + 0, + 0 + ], + [ + 0.895, + -1.054 + ] + ], + "v": [ + [ + -1.369, + -44.454 + ], + [ + 12.599, + 11.903 + ], + [ + -1.135, + 32.44 + ], + [ + -13.299, + -1.447 + ], + [ + -4.002, + -45.444 + ], + [ + -4.002, + -45.444 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 24, + "s": [ + { + "i": [ + [ + 1.051, + -1.256 + ], + [ + 5.906, + -9.897 + ], + [ + 10.395, + 1.988 + ], + [ + -7.858, + 13.398 + ], + [ + -32.545, + -3.768 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -7.993, + 9.555 + ], + [ + -5.131, + 8.598 + ], + [ + -11.774, + -1.55 + ], + [ + 0.107, + -0.212 + ], + [ + 0, + 0 + ], + [ + 1.659, + 0.174 + ] + ], + "v": [ + [ + 37.984, + -13.748 + ], + [ + 19.559, + 19.275 + ], + [ + -2.139, + 31.711 + ], + [ + -7.549, + -4.985 + ], + [ + 36.38, + -17.158 + ], + [ + 36.38, + -17.158 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 29, + "s": [ + { + "i": [ + [ + 0.825, + -0.713 + ], + [ + 3.238, + -10.544 + ], + [ + 12.764, + 1.496 + ], + [ + -6.911, + 14.479 + ], + [ + -25.929, + -11.363 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -9.337, + 5.276 + ], + [ + -2.813, + 9.16 + ], + [ + -11.774, + -1.55 + ], + [ + 0.107, + -0.212 + ], + [ + 0, + 0 + ], + [ + 1.113, + 0.375 + ] + ], + "v": [ + [ + 31.547, + -12.102 + ], + [ + 17.844, + 16.815 + ], + [ + -2.139, + 31.711 + ], + [ + -7.549, + -4.985 + ], + [ + 30.97, + -14.692 + ], + [ + 30.97, + -14.692 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 32, + "s": [ + { + "i": [ + [ + -0.609, + -0.746 + ], + [ + 2.997, + -13.949 + ], + [ + 14.103, + 1.218 + ], + [ + -6.376, + 15.089 + ], + [ + -4.369, + 9.133 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 7.708, + 10.876 + ], + [ + -2.604, + 12.118 + ], + [ + -11.774, + -1.55 + ], + [ + 0.107, + -0.212 + ], + [ + 0, + 0 + ], + [ + 0.415, + -0.914 + ] + ], + "v": [ + [ + 13.783, + -31.064 + ], + [ + 22.062, + 11.723 + ], + [ + -2.202, + 31.711 + ], + [ + -7.549, + -4.985 + ], + [ + 10.657, + -31.172 + ], + [ + 10.657, + -31.172 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 39, + "s": [ + { + "i": [ + [ + -1.42, + -0.817 + ], + [ + 0.509, + -14.419 + ], + [ + 14.886, + 1.056 + ], + [ + -6.064, + 15.447 + ], + [ + 4.219, + 13.959 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 18.509, + 10.647 + ], + [ + -0.442, + 12.526 + ], + [ + -11.774, + -1.55 + ], + [ + 0.107, + -0.212 + ], + [ + 0, + 0 + ], + [ + -0.831, + -1.841 + ] + ], + "v": [ + [ + -6.301, + -32.736 + ], + [ + 20.731, + 10.687 + ], + [ + -2.239, + 31.711 + ], + [ + -7.549, + -4.985 + ], + [ + -9.532, + -30.798 + ], + [ + -9.532, + -30.798 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 51, + "s": [ + { + "i": [ + [ + -0.911, + -1.361 + ], + [ + 0.717, + -13.303 + ], + [ + 16.611, + 1.178 + ], + [ + -6.064, + 15.447 + ], + [ + -7.246, + 13.315 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 11.308, + 16.892 + ], + [ + -0.773, + 14.34 + ], + [ + -11.774, + -1.55 + ], + [ + 0.107, + -0.212 + ], + [ + 0, + 0 + ], + [ + 0.797, + -1.465 + ] + ], + "v": [ + [ + 10.254, + -32.842 + ], + [ + 25.362, + 6.798 + ], + [ + -2.239, + 31.711 + ], + [ + -7.549, + -4.985 + ], + [ + 6.49, + -32.669 + ], + [ + 6.49, + -32.669 + ] + ], + "c": true + } + ] + }, + { + "t": 70.078125, + "s": [ + { + "i": [ + [ + -1.448, + -0.766 + ], + [ + 2.787, + -14.122 + ], + [ + 14.886, + 1.056 + ], + [ + -6.064, + 15.447 + ], + [ + -0.058, + 15.159 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 19.982, + 10.565 + ], + [ + -2.421, + 12.269 + ], + [ + -11.774, + -1.55 + ], + [ + 0.107, + -0.212 + ], + [ + 0, + 0 + ], + [ + 0.006, + -1.668 + ] + ], + "v": [ + [ + 0.699, + -31.536 + ], + [ + 24.819, + 11.17 + ], + [ + -2.239, + 31.711 + ], + [ + -7.549, + -4.985 + ], + [ + -2.532, + -29.598 + ], + [ + -2.532, + -29.598 + ] + ], + "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, + "bm": 0, + "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": "Path-Copy-8", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 19, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 8, + "ty": 4, + "nm": "fire 3", + "parent": 3, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 111.234, + 127.634, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -0.866, + 31.488, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.19, + 0.19, + 0.19 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.4, + 0.4, + 0.4 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 7, + "s": [ + 0, + 0, + 100 + ] + }, + { + "i": { + "x": [ + 0.19, + 0.19, + 0.19 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 39, + "s": [ + 500, + 500, + 100 + ] + }, + { + "t": 51, + "s": [ + 500, + 500, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "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.4, + "y": 0 + }, + "t": 7, + "s": [ + { + "i": [ + [ + 13.218, + 0.938 + ], + [ + -6, + 26.42 + ], + [ + -3.69, + -12.452 + ] + ], + "o": [ + [ + -0.753, + -0.053 + ], + [ + 0.977, + -4.302 + ], + [ + 2.594, + 8.754 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -24.603, + 1.809 + ], + [ + 10.313, + 16.126 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 10.834, + "s": [ + { + "i": [ + [ + 13.218, + 0.938 + ], + [ + -35.03, + 6.383 + ], + [ + 5.477, + -5.198 + ] + ], + "o": [ + [ + -14.244, + -1.011 + ], + [ + 5.704, + -1.039 + ], + [ + -3.851, + 3.655 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + 2.52, + 0.258 + ], + [ + 22.249, + 26.31 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.783 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 19, + "s": [ + { + "i": [ + [ + 13.234, + 0.669 + ], + [ + -6.794, + 13.523 + ], + [ + -2.337, + -11.325 + ] + ], + "o": [ + [ + -26.903, + -1.35 + ], + [ + 1.106, + -2.202 + ], + [ + 1.643, + 7.962 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -18.369, + -15.973 + ], + [ + 12.096, + 17.355 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.217 + }, + "t": 19.268, + "s": [ + { + "i": [ + [ + 13.235, + 0.658 + ], + [ + -0.408, + 14.272 + ], + [ + -2.656, + -11.575 + ] + ], + "o": [ + [ + -27.419, + -1.364 + ], + [ + 0.066, + -2.324 + ], + [ + 1.867, + 8.137 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -22.145, + -9.83 + ], + [ + 11.682, + 16.99 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 20, + "s": [ + { + "i": [ + [ + 13.234, + 0.681 + ], + [ + -6.1, + 10.675 + ], + [ + -8.308, + -14.188 + ] + ], + "o": [ + [ + -26.1, + -1.221 + ], + [ + 2.904, + 1.66 + ], + [ + 2.753, + 6.471 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -18.006, + -14.058 + ], + [ + 14.168, + 17.331 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 21, + "s": [ + { + "i": [ + [ + 13.232, + 0.71 + ], + [ + -13.202, + 19.884 + ], + [ + -15.39, + -17.462 + ] + ], + "o": [ + [ + -24.448, + -1.042 + ], + [ + 6.46, + 6.653 + ], + [ + 3.864, + 4.384 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -16.371, + -19.356 + ], + [ + 17.285, + 17.758 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 22, + "s": [ + { + "i": [ + [ + 13.232, + 0.71 + ], + [ + -9.151, + 21.357 + ], + [ + -15.39, + -17.462 + ] + ], + "o": [ + [ + -24.448, + -1.042 + ], + [ + 6.46, + 6.653 + ], + [ + 3.864, + 4.384 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -16.371, + -19.356 + ], + [ + 17.285, + 17.758 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 23, + "s": [ + { + "i": [ + [ + 12.874, + 0.69 + ], + [ + -10.071, + 20.965 + ], + [ + -14.588, + -16.517 + ] + ], + "o": [ + [ + -23.565, + -0.937 + ], + [ + 6.259, + 6.424 + ], + [ + 0.663, + 3.809 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -15.899, + -17.857 + ], + [ + 17.731, + 20.223 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 24, + "s": [ + { + "i": [ + [ + 12.515, + 0.67 + ], + [ + -10.991, + 20.572 + ], + [ + -13.785, + -15.573 + ] + ], + "o": [ + [ + -22.682, + -0.832 + ], + [ + 6.059, + 6.196 + ], + [ + -2.539, + 3.234 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -15.427, + -16.358 + ], + [ + 18.417, + 22.551 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 25, + "s": [ + { + "i": [ + [ + 12.155, + 0.65 + ], + [ + -11.916, + 20.177 + ], + [ + -12.979, + -14.624 + ] + ], + "o": [ + [ + -21.795, + -0.727 + ], + [ + 5.858, + 5.966 + ], + [ + -2.517, + 3.44 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -14.952, + -14.852 + ], + [ + 18.638, + 23.601 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 26, + "s": [ + { + "i": [ + [ + 11.795, + 0.63 + ], + [ + -12.84, + 19.783 + ], + [ + -12.173, + -13.675 + ] + ], + "o": [ + [ + -20.908, + -0.621 + ], + [ + 5.657, + 5.736 + ], + [ + -2.496, + 3.645 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -14.478, + -13.346 + ], + [ + 17.998, + 23.476 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.783 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 27, + "s": [ + { + "i": [ + [ + 11.435, + 0.61 + ], + [ + -13.764, + 19.388 + ], + [ + -11.367, + -12.726 + ] + ], + "o": [ + [ + -20.021, + -0.516 + ], + [ + 5.455, + 5.506 + ], + [ + -2.475, + 3.851 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -14.004, + -11.84 + ], + [ + 17.399, + 23.462 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.217 + }, + "t": 32, + "s": [ + { + "i": [ + [ + 9.519, + 0.502 + ], + [ + -18.685, + 17.288 + ], + [ + -7.075, + -7.674 + ] + ], + "o": [ + [ + -15.299, + 0.046 + ], + [ + 4.384, + 4.282 + ], + [ + -3.778, + 3.157 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -11.48, + -3.823 + ], + [ + 16.721, + 24.565 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 42, + "s": [ + { + "i": [ + [ + 13.232, + 0.724 + ], + [ + -9.917, + 44.265 + ], + [ + -8.096, + -7.352 + ] + ], + "o": [ + [ + -1.664, + -0.091 + ], + [ + 9.574, + 8.525 + ], + [ + 2.596, + 8.724 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -24.066, + -12.228 + ], + [ + 7.078, + 15.612 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 46, + "s": [ + { + "i": [ + [ + 13.234, + 0.667 + ], + [ + -12.713, + 39.847 + ], + [ + -7.829, + -7.622 + ] + ], + "o": [ + [ + -2.139, + -0.104 + ], + [ + 9.41, + 9.053 + ], + [ + 2.285, + 8.596 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -20.818, + -11.969 + ], + [ + 7.799, + 16.356 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 51, + "s": [ + { + "i": [ + [ + 13.239, + 0.573 + ], + [ + -17.334, + 32.544 + ], + [ + -7.387, + -8.067 + ] + ], + "o": [ + [ + -2.926, + -0.125 + ], + [ + 9.137, + 9.925 + ], + [ + 1.771, + 8.383 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -16.499, + -10.182 + ], + [ + 8.991, + 17.585 + ] + ], + "c": true + } + ] + }, + { + "t": 77, + "s": [ + { + "i": [ + [ + 13.232, + 0.724 + ], + [ + -19.269, + 37.656 + ], + [ + -9.531, + -8.837 + ] + ], + "o": [ + [ + -1.664, + -0.091 + ], + [ + 5.262, + 5.36 + ], + [ + 2.596, + 8.724 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -19.912, + -10.379 + ], + [ + 8.257, + 16.945 + ] + ], + "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, + "bm": 0, + "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": "Path-Copy-8", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 19, + "op": 168, + "st": 7, + "bm": 0 + }, + { + "ddd": 0, + "ind": 9, + "ty": 4, + "nm": "fire", + "parent": 3, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 111.234, + 127.634, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -0.866, + 31.488, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.19, + 0.19, + 0.19 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.4, + 0.4, + 0.4 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 7, + "s": [ + 0, + 0, + 100 + ] + }, + { + "i": { + "x": [ + 0.19, + 0.19, + 0.19 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 39, + "s": [ + 500, + 500, + 100 + ] + }, + { + "t": 51, + "s": [ + 500, + 500, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "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.4, + "y": 0 + }, + "t": 7, + "s": [ + { + "i": [ + [ + 12.757, + 0.905 + ], + [ + -21.615, + 40.033 + ], + [ + -0.904, + -1.391 + ], + [ + 0, + 0 + ], + [ + -0.398, + 0.789 + ], + [ + -3.319, + -12.644 + ] + ], + "o": [ + [ + -0.875, + -0.062 + ], + [ + 0.797, + -1.476 + ], + [ + 0, + 0 + ], + [ + 0.491, + 0.755 + ], + [ + 1.571, + -5.928 + ], + [ + 2.198, + 8.373 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -18.728, + -13.011 + ], + [ + -14.945, + -13.165 + ], + [ + -9.555, + -4.876 + ], + [ + -7.549, + -4.985 + ], + [ + 10.568, + 17.038 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 10.834, + "s": [ + { + "i": [ + [ + 12.757, + 0.906 + ], + [ + -61.742, + -0.527 + ], + [ + 0.525, + -1.574 + ], + [ + 0, + 0 + ], + [ + -0.688, + 0.008 + ], + [ + 5.969, + -5.223 + ] + ], + "o": [ + [ + -16.563, + -1.176 + ], + [ + 1.678, + 0.014 + ], + [ + 0, + 0 + ], + [ + -0.285, + 0.854 + ], + [ + 1.607, + 1.521 + ], + [ + -3.953, + 3.459 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + 23.93, + -1.278 + ], + [ + 26.407, + 1.586 + ], + [ + 24.435, + 9.286 + ], + [ + 24.616, + 12.467 + ], + [ + 21.833, + 26.689 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.783 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 19, + "s": [ + { + "i": [ + [ + 12.773, + 0.646 + ], + [ + -8.145, + 6.855 + ], + [ + -0.338, + -1.229 + ], + [ + -3.724, + -7.404 + ], + [ + -0.441, + 0.674 + ], + [ + -1.947, + -11.5 + ] + ], + "o": [ + [ + -31.284, + -1.57 + ], + [ + 1.381, + -1.705 + ], + [ + 0.4, + 1.21 + ], + [ + 0.439, + 0.929 + ], + [ + 1.576, + -4.826 + ], + [ + 1.29, + 7.616 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -14.939, + -20.826 + ], + [ + -11.385, + -20.211 + ], + [ + -4.526, + -2.887 + ], + [ + -2.79, + -2.403 + ], + [ + 12.252, + 18.184 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.783 + }, + "o": { + "x": 0.167, + "y": 0.217 + }, + "t": 19.268, + "s": [ + { + "i": [ + [ + 12.773, + 0.635 + ], + [ + 3.289, + 11.075 + ], + [ + -1.263, + -0.405 + ], + [ + -3.876, + -7.706 + ], + [ + -0.431, + 0.701 + ], + [ + -2.27, + -11.756 + ] + ], + "o": [ + [ + -31.884, + -1.586 + ], + [ + -0.656, + -2.207 + ], + [ + 1.263, + 0.405 + ], + [ + 0.469, + 0.932 + ], + [ + 1.575, + -5.084 + ], + [ + 1.503, + 7.785 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -22.648, + -15.721 + ], + [ + -20.052, + -18.449 + ], + [ + -5.707, + -3.384 + ], + [ + -3.908, + -3.009 + ], + [ + 11.861, + 17.838 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.217 + }, + "t": 32, + "s": [ + { + "i": [ + [ + 12.76, + 0.854 + ], + [ + -27.415, + 18.544 + ], + [ + -0.128, + -1.543 + ], + [ + -0.193, + -1.613 + ], + [ + -1.849, + 4.374 + ], + [ + -2.755, + -12.2 + ] + ], + "o": [ + [ + -16.774, + 0.05 + ], + [ + 1.339, + -1.042 + ], + [ + 0.362, + 1.709 + ], + [ + 0.189, + 0.907 + ], + [ + 1.572, + -5.769 + ], + [ + 1.825, + 8.079 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -5.178, + -8.775 + ], + [ + -1.873, + -7.307 + ], + [ + -2.775, + -4.626 + ], + [ + -5.594, + -3.655 + ], + [ + 11.255, + 17.524 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 42, + "s": [ + { + "i": [ + [ + 11.698, + 0.64 + ], + [ + -10.63, + 44.236 + ], + [ + -1.629, + -2.333 + ], + [ + -4.358, + -1.163 + ], + [ + -0.398, + 0.789 + ], + [ + -2.271, + -12.936 + ] + ], + "o": [ + [ + -1.934, + -0.106 + ], + [ + 0.392, + -1.632 + ], + [ + 1.629, + 2.333 + ], + [ + 1.487, + 0.397 + ], + [ + 1.658, + -6.257 + ], + [ + 1.305, + 7.434 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -23.959, + -12.453 + ], + [ + -20.342, + -13.572 + ], + [ + -10.655, + -4.576 + ], + [ + -7.549, + -4.985 + ], + [ + 11.04, + 18.89 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 57, + "s": [ + { + "i": [ + [ + 12.778, + 0.536 + ], + [ + -24.892, + 34.15 + ], + [ + -0.727, + -1.491 + ], + [ + 0, + 0 + ], + [ + -0.492, + 0.735 + ], + [ + -1.986, + -12.061 + ] + ], + "o": [ + [ + -3.574, + -0.15 + ], + [ + 0.988, + -1.356 + ], + [ + 0, + 0 + ], + [ + 0.395, + 0.809 + ], + [ + 2.284, + -5.691 + ], + [ + 1.315, + 7.988 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -13.821, + -12.789 + ], + [ + -10.047, + -12.479 + ], + [ + -5.712, + -3.593 + ], + [ + -3.708, + -3.456 + ], + [ + 12.273, + 17.285 + ] + ], + "c": true + } + ] + }, + { + "t": 77, + "s": [ + { + "i": [ + [ + 12.77, + 0.699 + ], + [ + -21.615, + 40.033 + ], + [ + -0.904, + -1.391 + ], + [ + 0, + 0 + ], + [ + -0.398, + 0.789 + ], + [ + -3.321, + -12.607 + ] + ], + "o": [ + [ + -1.934, + -0.106 + ], + [ + 0.797, + -1.476 + ], + [ + 0, + 0 + ], + [ + 0.491, + 0.755 + ], + [ + 1.571, + -5.928 + ], + [ + 2.199, + 8.349 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -18.728, + -13.011 + ], + [ + -14.945, + -13.165 + ], + [ + -9.555, + -4.876 + ], + [ + -7.549, + -4.985 + ], + [ + 10.582, + 16.814 + ] + ], + "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, + "bm": 0, + "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": "Path-Copy-8", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 7, + "op": 19, + "st": 7, + "bm": 0 + } + ], + "markers": [] +} \ No newline at end of file diff --git a/TMessagesProj/src/main/res/raw/fire_on.json b/TMessagesProj/src/main/res/raw/fire_on.json new file mode 100644 index 000000000..95be15122 --- /dev/null +++ b/TMessagesProj/src/main/res/raw/fire_on.json @@ -0,0 +1,4706 @@ +{ + "v": "5.7.6", + "fr": 60, + "ip": 0, + "op": 120, + "w": 512, + "h": 512, + "nm": "fire", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 4, + "nm": "line", + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 247, + 184, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -9, + -72, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 0, + "k": [ + 100, + 100, + 100 + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [ + 50.643, + 50.002 + ], + [ + 33, + 72 + ] + ], + "o": [ + [ + -79, + -78 + ], + [ + -12.781, + -27.886 + ] + ], + "v": [ + [ + 33, + -33 + ], + [ + -3, + -242 + ] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 43, + "s": [ + 0 + ] + }, + { + "t": 61, + "s": [ + 10 + ] + } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 35, + "s": [ + 0 + ] + }, + { + "t": 43, + "s": [ + 10 + ] + } + ], + "ix": 2 + }, + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 35, + "s": [ + 0 + ] + }, + { + "t": 61, + "s": [ + 338.633 + ] + } + ], + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [ + 1, + 1, + 1, + 1 + ], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 52, + "s": [ + 19 + ] + }, + { + "t": 61, + "s": [ + 0 + ] + } + ], + "ix": 5 + }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "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": 4, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 2, + "op": 122, + "st": 2, + "bm": 0 + }, + { + "ddd": 0, + "ind": 2, + "ty": 4, + "nm": "line", + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 247, + 184, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -9, + -72, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 0, + "k": [ + 100, + 100, + 100 + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [ + 50.701, + 49.944 + ], + [ + 64, + 153 + ] + ], + "o": [ + [ + -67, + -66 + ], + [ + -11.838, + -28.3 + ] + ], + "v": [ + [ + -61, + 37 + ], + [ + -65, + -232 + ] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 39, + "s": [ + 0 + ] + }, + { + "t": 49, + "s": [ + 4 + ] + } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 23, + "s": [ + 0 + ] + }, + { + "t": 31, + "s": [ + 4 + ] + } + ], + "ix": 2 + }, + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 23, + "s": [ + 0 + ] + }, + { + "t": 49, + "s": [ + 338.633 + ] + } + ], + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [ + 1, + 1, + 1, + 1 + ], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 40, + "s": [ + 19 + ] + }, + { + "t": 49, + "s": [ + 0 + ] + } + ], + "ix": 5 + }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "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": 4, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": -10, + "op": 110, + "st": -10, + "bm": 0 + }, + { + "ddd": 0, + "ind": 3, + "ty": 4, + "nm": "line", + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 247, + 184, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -9, + -72, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 0, + "k": [ + 100, + 100, + 100 + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [ + 66.749, + 24.688 + ], + [ + -52, + 95 + ], + [ + -10, + 91.5 + ] + ], + "o": [ + [ + -73, + -27 + ], + [ + 54.341, + -99.277 + ], + [ + 3.333, + -30.494 + ] + ], + "v": [ + [ + -47, + 182 + ], + [ + -108, + -23 + ], + [ + -135, + -241.5 + ] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 56.455, + "s": [ + 0 + ] + }, + { + "t": 81, + "s": [ + 4 + ] + } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 45, + "s": [ + 0 + ] + }, + { + "t": 55.63671875, + "s": [ + 4 + ] + } + ], + "ix": 2 + }, + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 45, + "s": [ + 0 + ] + }, + { + "t": 81, + "s": [ + 320.633 + ] + } + ], + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [ + 1, + 1, + 1, + 1 + ], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 73.637, + "s": [ + 19 + ] + }, + { + "t": 81, + "s": [ + 0 + ] + } + ], + "ix": 5 + }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "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": 4, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ty": "st", + "c": { + "a": 0, + "k": [ + 1, + 1, + 1, + 1 + ], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 71.182, + "s": [ + 19 + ] + }, + { + "t": 78.544921875, + "s": [ + 0 + ] + } + ], + "ix": 5 + }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "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, + "bm": 0, + "ix": 2, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 25, + "op": 145, + "st": 25, + "bm": 0 + }, + { + "ddd": 0, + "ind": 4, + "ty": 4, + "nm": "line", + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 17, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 323, + 197, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -9, + -72, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 0, + "k": [ + 100, + 100, + 100 + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [ + -64.572, + 29.924 + ], + [ + -29, + 69 + ], + [ + -4, + 77 + ] + ], + "o": [ + [ + 123, + -57 + ], + [ + 61.908, + -147.297 + ], + [ + 1.591, + -30.634 + ] + ], + "v": [ + [ + -3.889, + 181.364 + ], + [ + 53, + -23 + ], + [ + -23, + -232 + ] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 17, + "s": [ + 0 + ] + }, + { + "t": 38, + "s": [ + 10 + ] + } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 7, + "s": [ + 0 + ] + }, + { + "t": 16.5390625, + "s": [ + 10 + ] + } + ], + "ix": 2 + }, + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 7, + "s": [ + 0 + ] + }, + { + "t": 38, + "s": [ + 317.538 + ] + } + ], + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [ + 1, + 1, + 1, + 1 + ], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 29, + "s": [ + 19 + ] + }, + { + "t": 38, + "s": [ + 0 + ] + } + ], + "ix": 5 + }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "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": 4, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 5, + "ty": 3, + "nm": "NULL", + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 0, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 256, + 444, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 115, + 115, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 0, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 14, + "s": [ + 94, + 107, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 26, + "s": [ + 106, + 94, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 37, + "s": [ + 94, + 106, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 48, + "s": [ + 106, + 94, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 59, + "s": [ + 94, + 106, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 72, + "s": [ + 106, + 94, + 100 + ] + }, + { + "i": { + "x": [ + 0.2, + 0.2, + 0.2 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.6, + 0.6, + 0.6 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 87, + "s": [ + 97, + 103, + 100 + ] + }, + { + "t": 113, + "s": [ + 100, + 100, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 6, + "ty": 4, + "nm": "fire 2", + "parent": 5, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 111.064, + 127.194, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -0.9, + 31.4, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.1, + 0.1, + 0.1 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 0, + "s": [ + 0, + 0, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 27, + "s": [ + 500, + 500, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 37, + "s": [ + 520, + 470, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 46, + "s": [ + 480, + 520, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 54, + "s": [ + 520, + 470, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 63, + "s": [ + 480, + 520, + 100 + ] + }, + { + "i": { + "x": [ + 0.42, + 0.42, + 0.42 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 74, + "s": [ + 520, + 470, + 100 + ] + }, + { + "i": { + "x": [ + 0.2, + 0.2, + 0.2 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.6, + 0.6, + 0.6 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 87, + "s": [ + 480, + 520, + 100 + ] + }, + { + "t": 113, + "s": [ + 500, + 500, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "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.5, + "y": 0 + }, + "t": 0, + "s": [ + { + "i": [ + [ + -0.761, + -1.046 + ], + [ + 32.02, + 2.271 + ], + [ + -4.787, + 12.195 + ], + [ + -5.308, + 10.726 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 19.614, + 26.969 + ], + [ + -11.774, + -1.55 + ], + [ + 0.084, + -0.167 + ], + [ + 0, + 0 + ], + [ + 0.584, + -1.18 + ] + ], + "v": [ + [ + 4.091, + -22.793 + ], + [ + -2.139, + 31.711 + ], + [ + -8.826, + -1.734 + ], + [ + 1.127, + -22.541 + ], + [ + 1.127, + -22.541 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.4, + "y": 1 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 8, + "s": [ + { + "i": [ + [ + -0.866, + 1.39 + ], + [ + 47.031, + -0.437 + ], + [ + 1.859, + 3.851 + ], + [ + 6.891, + -5.474 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 30.854, + -49.531 + ], + [ + -11.774, + -1.55 + ], + [ + -1.467, + -3.038 + ], + [ + 0, + 0 + ], + [ + -1.539, + -0.642 + ] + ], + "v": [ + [ + -22.694, + 11.893 + ], + [ + -2.139, + 31.711 + ], + [ + -9.627, + 17.021 + ], + [ + -22.135, + 15.619 + ], + [ + -22.135, + 15.619 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.667, + "y": 1 + }, + "o": { + "x": 0.6, + "y": 0 + }, + "t": 17, + "s": [ + { + "i": [ + [ + -0.306, + -1.481 + ], + [ + 27.797, + 1.543 + ], + [ + -0.445, + 9.468 + ], + [ + -4.165, + 5.413 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 7.892, + 38.192 + ], + [ + -19.003, + -0.29 + ], + [ + 0.445, + -9.468 + ], + [ + 0, + 0 + ], + [ + 0.895, + -1.054 + ] + ], + "v": [ + [ + -1.369, + -44.454 + ], + [ + -1.135, + 32.44 + ], + [ + -13.299, + -1.447 + ], + [ + -4.002, + -45.444 + ], + [ + -4.002, + -45.444 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.667, + "y": 1 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 30, + "s": [ + { + "i": [ + [ + -0.452, + -1.574 + ], + [ + 32.02, + 2.271 + ], + [ + -7.858, + 13.398 + ], + [ + -14.357, + 12.607 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 12.003, + 41.837 + ], + [ + -11.774, + -1.55 + ], + [ + 0.107, + -0.212 + ], + [ + 0, + 0 + ], + [ + 1.202, + -1.156 + ] + ], + "v": [ + [ + 17.084, + -31.876 + ], + [ + -2.139, + 31.711 + ], + [ + -7.549, + -4.985 + ], + [ + 13.444, + -32.846 + ], + [ + 13.444, + -32.846 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.667, + "y": 1 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 37.098, + "s": [ + { + "i": [ + [ + -1.37, + -0.898 + ], + [ + 32.02, + 2.271 + ], + [ + -6.064, + 15.447 + ], + [ + 1.081, + 21.339 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 36.401, + 23.861 + ], + [ + -11.774, + -1.55 + ], + [ + 0.107, + -0.212 + ], + [ + 0, + 0 + ], + [ + 0.156, + -1.66 + ] + ], + "v": [ + [ + -0.802, + -32.019 + ], + [ + -2.139, + 31.711 + ], + [ + -7.549, + -4.985 + ], + [ + -4.194, + -30.378 + ], + [ + -4.194, + -30.378 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 46, + "s": [ + { + "i": [ + [ + -1.448, + -0.766 + ], + [ + 32.02, + 2.271 + ], + [ + -6.064, + 15.447 + ], + [ + -0.058, + 15.159 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 37.342, + 19.743 + ], + [ + -11.774, + -1.55 + ], + [ + 0.107, + -0.212 + ], + [ + 0, + 0 + ], + [ + 0.006, + -1.668 + ] + ], + "v": [ + [ + 0.074, + -36.536 + ], + [ + -2.139, + 31.711 + ], + [ + -7.549, + -4.985 + ], + [ + -3.157, + -34.598 + ], + [ + -3.157, + -34.598 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 54, + "s": [ + { + "i": [ + [ + -1.134, + -1.137 + ], + [ + 32.02, + 2.064 + ], + [ + -6.064, + 14.034 + ], + [ + -2.573, + 13.53 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 27.769, + 27.845 + ], + [ + -11.774, + -1.408 + ], + [ + 0.107, + -0.192 + ], + [ + 0, + 0 + ], + [ + 0.283, + -1.488 + ] + ], + "v": [ + [ + 4.098, + -27.621 + ], + [ + -2.139, + 31.919 + ], + [ + -7.549, + -1.421 + ], + [ + 0.6, + -26.48 + ], + [ + 0.6, + -26.48 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 63, + "s": [ + { + "i": [ + [ + -1.166, + -1.215 + ], + [ + 32.02, + 2.248 + ], + [ + -6.064, + 15.288 + ], + [ + -0.428, + 23.268 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 30.336, + 31.612 + ], + [ + -11.774, + -1.534 + ], + [ + 0.107, + -0.21 + ], + [ + 0, + 0 + ], + [ + 0.192, + -1.635 + ] + ], + "v": [ + [ + 3.435, + -35.532 + ], + [ + -2.139, + 31.734 + ], + [ + -7.549, + -4.586 + ], + [ + 0.011, + -34.096 + ], + [ + 0.011, + -34.096 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.42, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 74, + "s": [ + { + "i": [ + [ + -1.319, + -1.087 + ], + [ + 32.958, + 4.121 + ], + [ + -6.064, + 14.034 + ], + [ + -4.913, + 19.918 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 33.294, + 27.424 + ], + [ + -11.774, + -1.408 + ], + [ + 0.107, + -0.192 + ], + [ + 0, + 0 + ], + [ + 0.316, + -1.485 + ] + ], + "v": [ + [ + 4.063, + -31.81 + ], + [ + -2.139, + 31.919 + ], + [ + -10.818, + -2.272 + ], + [ + 0.154, + -30.672 + ], + [ + 0.154, + -30.672 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.6, + "y": 0 + }, + "t": 87, + "s": [ + { + "i": [ + [ + -1.224, + -1.612 + ], + [ + 32.02, + 2.064 + ], + [ + -6.064, + 14.034 + ], + [ + -1.545, + 26.796 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 25.844, + 34.046 + ], + [ + -11.774, + -1.408 + ], + [ + 0.107, + -0.192 + ], + [ + 0, + 0 + ], + [ + 0.769, + -1.584 + ] + ], + "v": [ + [ + 6.198, + -36.773 + ], + [ + -2.139, + 31.919 + ], + [ + -10.674, + -1.998 + ], + [ + 1.23, + -36.583 + ], + [ + 1.23, + -36.583 + ] + ], + "c": true + } + ] + }, + { + "t": 113, + "s": [ + { + "i": [ + [ + -1.448, + -0.766 + ], + [ + 32.02, + 2.271 + ], + [ + -6.064, + 15.447 + ], + [ + -0.058, + 15.159 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 37.342, + 19.743 + ], + [ + -11.774, + -1.55 + ], + [ + 0.107, + -0.212 + ], + [ + 0, + 0 + ], + [ + 0.006, + -1.668 + ] + ], + "v": [ + [ + 0.699, + -31.536 + ], + [ + -2.239, + 31.711 + ], + [ + -7.549, + -4.985 + ], + [ + -2.532, + -29.598 + ], + [ + -2.532, + -29.598 + ] + ], + "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, + "bm": 0, + "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": "Path-Copy-8", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 7, + "ty": 4, + "nm": "fire", + "parent": 5, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 111.234, + 127.634, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -0.866, + 31.488, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.2, + 0.2, + 0.2 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.4, + 0.4, + 0.4 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 7, + "s": [ + 0, + 0, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 37, + "s": [ + 500, + 500, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 46, + "s": [ + 480, + 520, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 54, + "s": [ + 520, + 470, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 63, + "s": [ + 480, + 520, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 74, + "s": [ + 520, + 470, + 100 + ] + }, + { + "i": { + "x": [ + 0.2, + 0.2, + 0.2 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.6, + 0.6, + 0.6 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 87, + "s": [ + 480, + 520, + 100 + ] + }, + { + "t": 113, + "s": [ + 500, + 500, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "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.4, + "y": 0 + }, + "t": 7, + "s": [ + { + "i": [ + [ + 32.02, + 2.271 + ], + [ + -21.615, + 40.033 + ], + [ + -0.904, + -1.391 + ], + [ + 0, + 0 + ], + [ + -0.398, + 0.789 + ] + ], + "o": [ + [ + -0.875, + -0.062 + ], + [ + 0.797, + -1.476 + ], + [ + 0, + 0 + ], + [ + 0.491, + 0.755 + ], + [ + 2.611, + -9.853 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -18.728, + -13.011 + ], + [ + -14.945, + -13.165 + ], + [ + -9.555, + -4.876 + ], + [ + -7.549, + -4.985 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 12, + "s": [ + { + "i": [ + [ + 32.02, + 2.273 + ], + [ + -61.742, + -0.527 + ], + [ + 0.525, + -1.574 + ], + [ + 0, + 0 + ], + [ + -0.688, + 0.008 + ] + ], + "o": [ + [ + -16.563, + -1.176 + ], + [ + 1.678, + 0.014 + ], + [ + 0, + 0 + ], + [ + -0.285, + 0.854 + ], + [ + 2.672, + 2.528 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + 23.93, + -1.278 + ], + [ + 26.407, + 1.586 + ], + [ + 24.435, + 9.286 + ], + [ + 24.616, + 12.467 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 23, + "s": [ + { + "i": [ + [ + 32.061, + 1.595 + ], + [ + 3.289, + 11.075 + ], + [ + -1.263, + -0.405 + ], + [ + -3.876, + -7.706 + ], + [ + -0.431, + 0.701 + ] + ], + "o": [ + [ + -31.884, + -1.586 + ], + [ + -0.656, + -2.207 + ], + [ + 1.263, + 0.405 + ], + [ + 0.469, + 0.932 + ], + [ + 2.618, + -8.452 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -22.648, + -15.721 + ], + [ + -20.052, + -18.449 + ], + [ + -5.707, + -3.384 + ], + [ + -3.908, + -3.009 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 33, + "s": [ + { + "i": [ + [ + 32.028, + 2.144 + ], + [ + -19.471, + 26.765 + ], + [ + -0.646, + -1.407 + ], + [ + -0.73, + -1.451 + ], + [ + -1.849, + 4.374 + ] + ], + "o": [ + [ + -16.774, + 0.05 + ], + [ + 0.905, + -1.436 + ], + [ + 0.922, + 1.484 + ], + [ + 0.487, + 0.788 + ], + [ + 2.613, + -9.589 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -12.042, + -11.204 + ], + [ + -8.434, + -10.947 + ], + [ + -8.83, + -4.595 + ], + [ + -3.963, + -6.813 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 37, + "s": [ + { + "i": [ + [ + 32.041, + -1.091 + ], + [ + -15.807, + 34.842 + ], + [ + -0.61, + -1.822 + ], + [ + -0.38, + -1.08 + ], + [ + -1.723, + 5.566 + ] + ], + "o": [ + [ + -9.421, + 0.37 + ], + [ + 0.772, + -1.751 + ], + [ + 0.665, + 1.837 + ], + [ + 0.331, + 0.947 + ], + [ + 2.612, + -9.8 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -17.464, + -13.847 + ], + [ + -12.973, + -13.918 + ], + [ + -10.608, + -4.979 + ], + [ + -5.562, + -6.855 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 39, + "s": [ + { + "i": [ + [ + 32.043, + -1.705 + ], + [ + -15.112, + 36.374 + ], + [ + -0.603, + -1.901 + ], + [ + -0.314, + -1.01 + ], + [ + -1.698, + 5.791 + ] + ], + "o": [ + [ + -8.027, + 0.43 + ], + [ + 0.747, + -1.811 + ], + [ + 0.616, + 1.904 + ], + [ + 0.302, + 0.977 + ], + [ + 2.611, + -9.84 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -18.492, + -14.348 + ], + [ + -13.834, + -14.482 + ], + [ + -10.945, + -5.052 + ], + [ + -5.83, + -6.964 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 42, + "s": [ + { + "i": [ + [ + 32.044, + -1.904 + ], + [ + -14.886, + 36.872 + ], + [ + -0.601, + -1.926 + ], + [ + -0.292, + -0.987 + ], + [ + -2.304, + 5.12 + ] + ], + "o": [ + [ + -7.574, + 0.45 + ], + [ + 0.739, + -1.83 + ], + [ + 0.601, + 1.926 + ], + [ + 0.292, + 0.987 + ], + [ + 2.611, + -9.853 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -18.827, + -14.511 + ], + [ + -14.113, + -14.665 + ], + [ + -11.055, + -5.076 + ], + [ + -5.9, + -6.895 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 50, + "s": [ + { + "i": [ + [ + 32.04, + -1.109 + ], + [ + -16.407, + 38.867 + ], + [ + -0.752, + -1.922 + ], + [ + -0.075, + -1.24 + ], + [ + -1.302, + 3.966 + ] + ], + "o": [ + [ + -10.374, + 0.85 + ], + [ + 0.652, + -1.545 + ], + [ + 0.752, + 1.922 + ], + [ + 0.111, + 1.832 + ], + [ + 3.038, + -9.516 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -13.906, + -19.506 + ], + [ + -10.215, + -18.661 + ], + [ + -9.195, + -6.436 + ], + [ + -5.603, + -7.16 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 54, + "s": [ + { + "i": [ + [ + 32.037, + -0.726 + ], + [ + -17.668, + 39.074 + ], + [ + -0.82, + -1.686 + ], + [ + -0.042, + -0.689 + ], + [ + -1.684, + 4.048 + ] + ], + "o": [ + [ + -7.948, + 0.582 + ], + [ + 0.689, + -1.528 + ], + [ + 0.418, + 1.068 + ], + [ + 0.28, + 1.353 + ], + [ + 3.244, + -9.353 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -15.15, + -17.738 + ], + [ + -11.418, + -17.337 + ], + [ + -9.022, + -7.187 + ], + [ + -4.581, + -7.842 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 59, + "s": [ + { + "i": [ + [ + 32.035, + -0.247 + ], + [ + -19.244, + 39.333 + ], + [ + -0.904, + -1.391 + ], + [ + 0, + 0 + ], + [ + -1.489, + 3.795 + ] + ], + "o": [ + [ + -4.915, + 0.247 + ], + [ + 0.735, + -1.507 + ], + [ + 0, + 0 + ], + [ + 0.491, + 0.755 + ], + [ + 3.501, + -9.15 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -16.706, + -15.528 + ], + [ + -12.923, + -15.682 + ], + [ + -8.805, + -8.126 + ], + [ + -4.426, + -8.823 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 63, + "s": [ + { + "i": [ + [ + 32.032, + 0.21 + ], + [ + -17.554, + 40.788 + ], + [ + -0.904, + -1.391 + ], + [ + -0.294, + -2.115 + ], + [ + -1.245, + 2.93 + ] + ], + "o": [ + [ + -4.181, + 0.191 + ], + [ + 0.663, + -1.537 + ], + [ + 0, + 0 + ], + [ + 0.443, + 1.423 + ], + [ + 3.474, + -8.986 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -16.856, + -16.926 + ], + [ + -13.072, + -17.08 + ], + [ + -9.784, + -7.805 + ], + [ + -5.126, + -7.781 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 70, + "s": [ + { + "i": [ + [ + 32.027, + 1.011 + ], + [ + -14.596, + 43.333 + ], + [ + -0.904, + -1.391 + ], + [ + -0.808, + -5.817 + ], + [ + -1.152, + 2.348 + ] + ], + "o": [ + [ + -2.897, + 0.092 + ], + [ + 0.535, + -1.589 + ], + [ + 0, + 0 + ], + [ + 0.36, + 2.592 + ], + [ + 3.412, + -7.867 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -17.117, + -19.372 + ], + [ + -13.333, + -19.526 + ], + [ + -11.497, + -7.244 + ], + [ + -7.585, + -6.231 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 74, + "s": [ + { + "i": [ + [ + 32.026, + 1.288 + ], + [ + -14.819, + 42.366 + ], + [ + -0.904, + -1.391 + ], + [ + -0.583, + -4.09 + ], + [ + -1.308, + 2.399 + ] + ], + "o": [ + [ + -3.787, + 0.356 + ], + [ + 0.701, + -1.977 + ], + [ + 0, + 0 + ], + [ + 0.381, + 2.023 + ], + [ + 3.805, + -8.038 + ] + ], + "v": [ + [ + -2.048, + 31.88 + ], + [ + -17.745, + -16.901 + ], + [ + -13.701, + -17.084 + ], + [ + -11.232, + -6.771 + ], + [ + -8.213, + -6.371 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.6, + "y": 0 + }, + "t": 83, + "s": [ + { + "i": [ + [ + 32.022, + 1.912 + ], + [ + -15.321, + 40.188 + ], + [ + -0.904, + -1.391 + ], + [ + -0.076, + -0.203 + ], + [ + -1.66, + 2.511 + ] + ], + "o": [ + [ + -1.451, + -0.018 + ], + [ + 1.072, + -2.848 + ], + [ + 0, + 0 + ], + [ + 0.427, + 0.743 + ], + [ + 4.689, + -8.424 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -19.158, + -11.341 + ], + [ + -14.527, + -11.589 + ], + [ + -10.635, + -5.707 + ], + [ + -6.383, + -6.319 + ] + ], + "c": true + } + ] + }, + { + "t": 109, + "s": [ + { + "i": [ + [ + 32.053, + 1.754 + ], + [ + -21.615, + 40.033 + ], + [ + -0.904, + -1.391 + ], + [ + 0, + 0 + ], + [ + -0.398, + 0.789 + ] + ], + "o": [ + [ + -1.934, + -0.106 + ], + [ + 0.797, + -1.476 + ], + [ + 0, + 0 + ], + [ + 0.491, + 0.755 + ], + [ + 2.611, + -9.853 + ] + ], + "v": [ + [ + -2.139, + 31.711 + ], + [ + -18.728, + -13.011 + ], + [ + -14.945, + -13.165 + ], + [ + -9.555, + -4.876 + ], + [ + -7.549, + -4.985 + ] + ], + "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, + "bm": 0, + "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": "Path-Copy-8", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 7, + "op": 127, + "st": 7, + "bm": 0 + } + ], + "markers": [] +} \ No newline at end of file diff --git a/TMessagesProj/src/main/res/raw/gigagroup.svg b/TMessagesProj/src/main/res/raw/gigagroup.svg new file mode 100644 index 000000000..3a4b67ba9 --- /dev/null +++ b/TMessagesProj/src/main/res/raw/gigagroup.svg @@ -0,0 +1,94 @@ + + + Artboard + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/raw/gigagroup_convert.json b/TMessagesProj/src/main/res/raw/gigagroup_convert.json new file mode 100644 index 000000000..4c66ac5b4 --- /dev/null +++ b/TMessagesProj/src/main/res/raw/gigagroup_convert.json @@ -0,0 +1,16224 @@ +{ + "v": "5.7.6", + "fr": 60, + "ip": 0, + "op": 120, + "w": 512, + "h": 512, + "nm": "upgrade", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 4, + "nm": "upgrade", + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { + "x": 0.23, + "y": 1 + }, + "o": { + "x": 0.77, + "y": 0 + }, + "t": 0, + "s": [ + 256, + 456, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.23, + "y": 1 + }, + "o": { + "x": 0.77, + "y": 0 + }, + "t": 11, + "s": [ + 256, + 76, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.23, + "y": 0.23 + }, + "o": { + "x": 0.224, + "y": 0.224 + }, + "t": 37, + "s": [ + 256, + 256, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.28, + "y": 1 + }, + "o": { + "x": 0.224, + "y": 0 + }, + "t": 58, + "s": [ + 256, + 256, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.72, + "y": 0 + }, + "t": 71, + "s": [ + 256, + 196, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "t": 99, + "s": [ + 256, + 256, + 0 + ] + } + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 0, + 0, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.65, + 0.65, + 0.65 + ], + "y": [ + 0.829, + 0.829, + -7.948 + ] + }, + "o": { + "x": [ + 0.92, + 0.92, + 0.92 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 0, + "s": [ + 0, + 0, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 0.833, + 1.353 + ] + }, + "o": { + "x": [ + 0.231, + 0.231, + 0.231 + ], + "y": [ + 0.901, + 0.133, + 11.778 + ] + }, + "t": 2, + "s": [ + 4, + 4, + 100 + ] + }, + { + "i": { + "x": [ + 0.617, + 0.617, + 0.617 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0.167, + -0.948 + ] + }, + "t": 6, + "s": [ + 4, + 10.753, + 100 + ] + }, + { + "i": { + "x": [ + 0.57, + 0.57, + 0.57 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.77, + 0.77, + 0.77 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 11, + "s": [ + 4, + 4, + 100 + ] + }, + { + "i": { + "x": [ + 0.23, + 0.23, + 0.23 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.43, + 0.43, + 0.43 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 21, + "s": [ + 4, + 10.939, + 100 + ] + }, + { + "i": { + "x": [ + 0.6, + 0.6, + 0.6 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 37, + "s": [ + 80, + 80, + 100 + ] + }, + { + "i": { + "x": [ + 0.2, + 0.2, + 0.2 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.4, + 0.4, + 0.4 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 48, + "s": [ + 64, + 64, + 100 + ] + }, + { + "t": 58, + "s": [ + 70, + 70, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "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 + }, + "t": 26, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + -0.496, + 50.966 + ], + [ + -0.496, + 50.966 + ], + [ + -0.498, + 50.967 + ], + [ + -0.498, + 50.967 + ], + [ + -0.498, + 50.967 + ], + [ + -0.498, + 50.968 + ], + [ + -0.498, + 50.968 + ], + [ + -0.498, + 50.968 + ], + [ + -0.498, + 50.968 + ], + [ + -0.496, + 50.967 + ], + [ + -0.496, + 50.967 + ], + [ + -0.495, + 50.968 + ], + [ + -0.495, + 50.968 + ], + [ + -0.495, + 50.968 + ], + [ + -0.495, + 50.968 + ], + [ + -0.495, + 50.967 + ], + [ + -0.495, + 50.967 + ], + [ + -0.495, + 50.967 + ], + [ + -0.496, + 50.966 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 27, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.318, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -3.045, + 0.176 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.008, + -0.02 + ], + [ + -0.172, + 0.027 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.148 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 1.604, + 0.469 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.053, + -0.027 + ], + [ + 0.229, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.523, + 0.109 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0.967, + 57.787 + ], + [ + -0.052, + 57.819 + ], + [ + -8.517, + 62.467 + ], + [ + -8.535, + 62.459 + ], + [ + 0.356, + 63.436 + ], + [ + 0.373, + 63.436 + ], + [ + 0.346, + 63.436 + ], + [ + 0.348, + 63.428 + ], + [ + 0.367, + 63.428 + ], + [ + 0.385, + 63.428 + ], + [ + 0.387, + 63.428 + ], + [ + 0.381, + 63.436 + ], + [ + 0.364, + 63.428 + ], + [ + 8.317, + 62.467 + ], + [ + 8.348, + 62.354 + ], + [ + 8.311, + 62.397 + ], + [ + 8.325, + 62.428 + ], + [ + 8.325, + 62.483 + ], + [ + 1.076, + 57.848 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 28, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.029, + -0.019 + ], + [ + -3.597, + -0.478 + ], + [ + 0, + 0 + ], + [ + -0.409, + -0.023 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.423, + 0.357 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.031, + -0.018 + ], + [ + 0, + 0 + ], + [ + 0.36, + 0.048 + ], + [ + 0.474, + 0.123 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.626, + -0.199 + ], + [ + 2.712, + -0.217 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.071, + 24.85 + ], + [ + 0.051, + 24.88 + ], + [ + -14.481, + 32.948 + ], + [ + -14.477, + 32.979 + ], + [ + -14.495, + 32.98 + ], + [ + -6.663, + 35.346 + ], + [ + -6.671, + 35.332 + ], + [ + -6.66, + 35.352 + ], + [ + -6.623, + 35.325 + ], + [ + -0.34, + 32.402 + ], + [ + 0.631, + 31.95 + ], + [ + 6.59, + 35.37 + ], + [ + 6.64, + 35.38 + ], + [ + 6.673, + 35.326 + ], + [ + 14.07, + 33.114 + ], + [ + 14.07, + 33.126 + ], + [ + 14.06, + 33.123 + ], + [ + 14.071, + 33.107 + ], + [ + 1.181, + 24.91 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 29, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.247, + -0.046 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.556, + 0.225 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.198, + 0.385 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.521, + -0.162 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.078, + 19.372 + ], + [ + 0.058, + 19.402 + ], + [ + -15.392, + 27.911 + ], + [ + -15.512, + 27.981 + ], + [ + -15.972, + 28.882 + ], + [ + -15.982, + 32.001 + ], + [ + -15.972, + 32.121 + ], + [ + -13.053, + 33.51 + ], + [ + -12.889, + 33.497 + ], + [ + -1.172, + 27.412 + ], + [ + 0.638, + 26.471 + ], + [ + 12.709, + 33.669 + ], + [ + 12.7, + 33.639 + ], + [ + 15.001, + 32.721 + ], + [ + 15.026, + 32.669 + ], + [ + 15.028, + 28.831 + ], + [ + 15.018, + 28.712 + ], + [ + 14.508, + 27.902 + ], + [ + 1.188, + 19.432 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 30, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.085, + 13.893 + ], + [ + 0.065, + 13.923 + ], + [ + -15.385, + 22.433 + ], + [ + -15.505, + 22.503 + ], + [ + -15.965, + 23.403 + ], + [ + -15.965, + 27.773 + ], + [ + -15.955, + 27.893 + ], + [ + -14.855, + 28.883 + ], + [ + -14.345, + 28.763 + ], + [ + -1.361, + 22.032 + ], + [ + 0.645, + 20.993 + ], + [ + 13.355, + 28.603 + ], + [ + 13.465, + 28.653 + ], + [ + 14.875, + 28.213 + ], + [ + 15.035, + 27.643 + ], + [ + 15.035, + 23.353 + ], + [ + 15.025, + 23.233 + ], + [ + 14.515, + 22.423 + ], + [ + 1.195, + 13.953 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 43, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.146, + -35.417 + ], + [ + 0.126, + -35.387 + ], + [ + -15.324, + -26.877 + ], + [ + -15.444, + -26.807 + ], + [ + -15.904, + -25.907 + ], + [ + -15.904, + -21.537 + ], + [ + -15.894, + -21.417 + ], + [ + -14.794, + -20.427 + ], + [ + -14.284, + -20.547 + ], + [ + -1.299, + -27.277 + ], + [ + 0.706, + -28.317 + ], + [ + 13.416, + -20.707 + ], + [ + 13.526, + -20.657 + ], + [ + 14.936, + -21.097 + ], + [ + 15.096, + -21.667 + ], + [ + 15.096, + -25.957 + ], + [ + 15.086, + -26.077 + ], + [ + 14.576, + -26.887 + ], + [ + 1.256, + -35.357 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 44, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.493, + 0.076 + ], + [ + 7.812, + -3.777 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.365, + 0.207 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.348, + -0.009 + ], + [ + 0, + 0 + ], + [ + -0.176, + 0.085 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + -6.604, + -3.027 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.293, + -35.945 + ], + [ + 0.005, + -35.992 + ], + [ + -15.314, + -32.585 + ], + [ + -15.439, + -32.503 + ], + [ + -15.897, + -31.386 + ], + [ + -15.897, + -27.016 + ], + [ + -15.887, + -26.896 + ], + [ + -14.787, + -25.906 + ], + [ + -14.277, + -26.026 + ], + [ + -1.293, + -32.756 + ], + [ + 0.713, + -33.796 + ], + [ + 13.423, + -26.186 + ], + [ + 13.533, + -26.136 + ], + [ + 14.943, + -26.576 + ], + [ + 15.103, + -27.146 + ], + [ + 15.103, + -31.436 + ], + [ + 15.093, + -31.556 + ], + [ + 14.591, + -32.927 + ], + [ + 1.301, + -35.949 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 45, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.493, + 0.076 + ], + [ + 4.778, + -2.653 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + -1.417, + -0.125 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.365, + 0.207 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -1.255, + -0.227 + ], + [ + 0, + 0 + ], + [ + -0.171, + 0.095 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.121, + 0.095 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + -4.692, + -2.092 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 4.248, + -35.835 + ], + [ + -3.439, + -35.937 + ], + [ + -15.819, + -32.366 + ], + [ + -15.916, + -32.448 + ], + [ + -15.923, + -32.265 + ], + [ + -15.935, + -31.191 + ], + [ + -15.925, + -31.07 + ], + [ + -14.825, + -30.081 + ], + [ + -14.315, + -30.201 + ], + [ + -3.424, + -35.913 + ], + [ + 4.136, + -35.911 + ], + [ + 13.385, + -30.361 + ], + [ + 13.495, + -30.311 + ], + [ + 14.905, + -30.751 + ], + [ + 15.065, + -31.32 + ], + [ + 15.069, + -32.699 + ], + [ + 15.058, + -32.627 + ], + [ + 15.019, + -32.735 + ], + [ + 4.229, + -35.894 + ] + ], + "c": true + } + ] + }, + { + "t": 46, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + -0.496, + -64.907 + ], + [ + -0.496, + -64.907 + ], + [ + -0.498, + -64.906 + ], + [ + -0.498, + -64.906 + ], + [ + -0.498, + -64.906 + ], + [ + -0.498, + -64.905 + ], + [ + -0.498, + -64.905 + ], + [ + -0.498, + -64.905 + ], + [ + -0.498, + -64.905 + ], + [ + -0.496, + -64.906 + ], + [ + -0.496, + -64.906 + ], + [ + -0.495, + -64.905 + ], + [ + -0.495, + -64.905 + ], + [ + -0.495, + -64.905 + ], + [ + -0.495, + -64.905 + ], + [ + -0.495, + -64.906 + ], + [ + -0.495, + -64.906 + ], + [ + -0.495, + -64.906 + ], + [ + -0.496, + -64.907 + ] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 7", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 1, + "ty": "sh", + "ix": 2, + "ks": { + "a": 1, + "k": [ + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 31, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + -0.566, + 87.151 + ], + [ + -0.566, + 87.151 + ], + [ + -0.568, + 87.152 + ], + [ + -0.568, + 87.152 + ], + [ + -0.568, + 87.152 + ], + [ + -0.568, + 87.153 + ], + [ + -0.568, + 87.153 + ], + [ + -0.568, + 87.153 + ], + [ + -0.567, + 87.153 + ], + [ + -0.566, + 87.152 + ], + [ + -0.566, + 87.152 + ], + [ + -0.564, + 87.153 + ], + [ + -0.564, + 87.153 + ], + [ + -0.564, + 87.153 + ], + [ + -0.564, + 87.153 + ], + [ + -0.564, + 87.152 + ], + [ + -0.564, + 87.152 + ], + [ + -0.564, + 87.152 + ], + [ + -0.566, + 87.151 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 32, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.318, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -3.045, + 0.176 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.008, + -0.02 + ], + [ + -0.172, + 0.027 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.148 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 1.604, + 0.469 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.053, + -0.027 + ], + [ + 0.229, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.523, + 0.109 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.006, + 30.288 + ], + [ + -0.013, + 30.319 + ], + [ + -8.478, + 34.968 + ], + [ + -8.496, + 34.96 + ], + [ + 0.395, + 35.937 + ], + [ + 0.412, + 35.937 + ], + [ + 0.385, + 35.937 + ], + [ + 0.387, + 35.929 + ], + [ + 0.407, + 35.929 + ], + [ + 0.424, + 35.929 + ], + [ + 0.426, + 35.929 + ], + [ + 0.42, + 35.937 + ], + [ + 0.403, + 35.929 + ], + [ + 8.356, + 34.968 + ], + [ + 8.387, + 34.855 + ], + [ + 8.35, + 34.898 + ], + [ + 8.364, + 34.929 + ], + [ + 8.364, + 34.983 + ], + [ + 1.115, + 30.349 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 33, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.029, + -0.019 + ], + [ + -3.597, + -0.478 + ], + [ + 0, + 0 + ], + [ + -0.409, + -0.023 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.423, + 0.357 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.031, + -0.018 + ], + [ + 0, + 0 + ], + [ + 0.36, + 0.048 + ], + [ + 0.474, + 0.123 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.626, + -0.199 + ], + [ + 2.712, + -0.217 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.071, + 24.85 + ], + [ + 0.051, + 24.88 + ], + [ + -14.481, + 32.948 + ], + [ + -14.477, + 32.979 + ], + [ + -14.495, + 32.98 + ], + [ + -6.663, + 35.346 + ], + [ + -6.671, + 35.332 + ], + [ + -6.66, + 35.352 + ], + [ + -6.623, + 35.325 + ], + [ + -0.34, + 32.402 + ], + [ + 0.631, + 31.95 + ], + [ + 6.59, + 35.37 + ], + [ + 6.64, + 35.38 + ], + [ + 6.673, + 35.326 + ], + [ + 14.07, + 33.114 + ], + [ + 14.07, + 33.126 + ], + [ + 14.06, + 33.123 + ], + [ + 14.071, + 33.107 + ], + [ + 1.181, + 24.91 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 34, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.247, + -0.046 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.556, + 0.225 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.198, + 0.385 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.521, + -0.162 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.078, + 19.372 + ], + [ + 0.058, + 19.402 + ], + [ + -15.392, + 27.911 + ], + [ + -15.512, + 27.981 + ], + [ + -15.972, + 28.882 + ], + [ + -15.982, + 32.001 + ], + [ + -15.972, + 32.121 + ], + [ + -13.053, + 33.51 + ], + [ + -12.889, + 33.497 + ], + [ + -1.172, + 27.412 + ], + [ + 0.638, + 26.471 + ], + [ + 12.709, + 33.669 + ], + [ + 12.7, + 33.639 + ], + [ + 15.001, + 32.721 + ], + [ + 15.026, + 32.669 + ], + [ + 15.028, + 28.831 + ], + [ + 15.018, + 28.712 + ], + [ + 14.508, + 27.902 + ], + [ + 1.188, + 19.432 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 35, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.085, + 13.893 + ], + [ + 0.065, + 13.923 + ], + [ + -15.385, + 22.433 + ], + [ + -15.505, + 22.503 + ], + [ + -15.965, + 23.403 + ], + [ + -15.965, + 27.773 + ], + [ + -15.955, + 27.893 + ], + [ + -14.855, + 28.883 + ], + [ + -14.345, + 28.763 + ], + [ + -1.361, + 22.032 + ], + [ + 0.645, + 20.993 + ], + [ + 13.355, + 28.603 + ], + [ + 13.465, + 28.653 + ], + [ + 14.875, + 28.213 + ], + [ + 15.035, + 27.643 + ], + [ + 15.035, + 23.353 + ], + [ + 15.025, + 23.233 + ], + [ + 14.515, + 22.423 + ], + [ + 1.195, + 13.953 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 48, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.146, + -35.417 + ], + [ + 0.126, + -35.387 + ], + [ + -15.324, + -26.877 + ], + [ + -15.444, + -26.807 + ], + [ + -15.904, + -25.907 + ], + [ + -15.904, + -21.537 + ], + [ + -15.894, + -21.417 + ], + [ + -14.794, + -20.427 + ], + [ + -14.284, + -20.547 + ], + [ + -1.299, + -27.277 + ], + [ + 0.706, + -28.317 + ], + [ + 13.416, + -20.707 + ], + [ + 13.526, + -20.657 + ], + [ + 14.936, + -21.097 + ], + [ + 15.096, + -21.667 + ], + [ + 15.096, + -25.957 + ], + [ + 15.086, + -26.077 + ], + [ + 14.576, + -26.887 + ], + [ + 1.256, + -35.357 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 49, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.493, + 0.076 + ], + [ + 7.812, + -3.777 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.365, + 0.207 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.348, + -0.009 + ], + [ + 0, + 0 + ], + [ + -0.176, + 0.085 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + -6.604, + -3.027 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.293, + -35.945 + ], + [ + 0.005, + -35.992 + ], + [ + -15.314, + -32.585 + ], + [ + -15.439, + -32.503 + ], + [ + -15.897, + -31.386 + ], + [ + -15.897, + -27.016 + ], + [ + -15.887, + -26.896 + ], + [ + -14.787, + -25.906 + ], + [ + -14.277, + -26.026 + ], + [ + -1.293, + -32.756 + ], + [ + 0.713, + -33.796 + ], + [ + 13.423, + -26.186 + ], + [ + 13.533, + -26.136 + ], + [ + 14.943, + -26.576 + ], + [ + 15.103, + -27.146 + ], + [ + 15.103, + -31.436 + ], + [ + 15.093, + -31.556 + ], + [ + 14.591, + -32.927 + ], + [ + 1.301, + -35.949 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 50, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.493, + 0.076 + ], + [ + 4.778, + -2.653 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + -1.417, + -0.125 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.365, + 0.207 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -1.255, + -0.227 + ], + [ + 0, + 0 + ], + [ + -0.171, + 0.095 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.121, + 0.095 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + -4.692, + -2.092 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 4.248, + -35.835 + ], + [ + -3.439, + -35.937 + ], + [ + -15.819, + -32.366 + ], + [ + -15.916, + -32.448 + ], + [ + -15.923, + -32.265 + ], + [ + -15.935, + -31.191 + ], + [ + -15.925, + -31.07 + ], + [ + -14.825, + -30.081 + ], + [ + -14.315, + -30.201 + ], + [ + -3.424, + -35.913 + ], + [ + 4.136, + -35.911 + ], + [ + 13.385, + -30.361 + ], + [ + 13.495, + -30.311 + ], + [ + 14.905, + -30.751 + ], + [ + 15.065, + -31.32 + ], + [ + 15.069, + -32.699 + ], + [ + 15.058, + -32.627 + ], + [ + 15.019, + -32.735 + ], + [ + 4.229, + -35.894 + ] + ], + "c": true + } + ] + }, + { + "t": 51, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + -0.496, + -64.867 + ], + [ + -0.496, + -64.867 + ], + [ + -0.498, + -64.866 + ], + [ + -0.498, + -64.866 + ], + [ + -0.498, + -64.866 + ], + [ + -0.498, + -64.865 + ], + [ + -0.498, + -64.865 + ], + [ + -0.498, + -64.865 + ], + [ + -0.498, + -64.865 + ], + [ + -0.496, + -64.866 + ], + [ + -0.496, + -64.866 + ], + [ + -0.495, + -64.865 + ], + [ + -0.495, + -64.865 + ], + [ + -0.495, + -64.865 + ], + [ + -0.495, + -64.865 + ], + [ + -0.495, + -64.866 + ], + [ + -0.495, + -64.866 + ], + [ + -0.495, + -64.866 + ], + [ + -0.496, + -64.867 + ] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 8", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 2, + "ty": "sh", + "ix": 3, + "ks": { + "a": 1, + "k": [ + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 36, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + -0.496, + 50.966 + ], + [ + -0.496, + 50.966 + ], + [ + -0.498, + 50.967 + ], + [ + -0.498, + 50.967 + ], + [ + -0.498, + 50.967 + ], + [ + -0.498, + 50.968 + ], + [ + -0.498, + 50.968 + ], + [ + -0.498, + 50.968 + ], + [ + -0.498, + 50.968 + ], + [ + -0.496, + 50.967 + ], + [ + -0.496, + 50.967 + ], + [ + -0.495, + 50.968 + ], + [ + -0.495, + 50.968 + ], + [ + -0.495, + 50.968 + ], + [ + -0.495, + 50.968 + ], + [ + -0.495, + 50.967 + ], + [ + -0.495, + 50.967 + ], + [ + -0.495, + 50.967 + ], + [ + -0.496, + 50.966 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 37, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.318, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -3.045, + 0.176 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.008, + -0.02 + ], + [ + -0.172, + 0.027 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.148 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 1.604, + 0.469 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.053, + -0.027 + ], + [ + 0.229, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.523, + 0.109 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0.873, + 30.146 + ], + [ + -0.146, + 30.177 + ], + [ + -8.611, + 34.825 + ], + [ + -8.629, + 34.818 + ], + [ + 0.262, + 35.794 + ], + [ + 0.279, + 35.794 + ], + [ + 0.252, + 35.794 + ], + [ + 0.254, + 35.786 + ], + [ + 0.274, + 35.786 + ], + [ + 0.291, + 35.786 + ], + [ + 0.293, + 35.786 + ], + [ + 0.287, + 35.794 + ], + [ + 0.27, + 35.786 + ], + [ + 8.223, + 34.825 + ], + [ + 8.254, + 34.712 + ], + [ + 8.217, + 34.755 + ], + [ + 8.231, + 34.786 + ], + [ + 8.231, + 34.841 + ], + [ + 0.983, + 30.206 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 38, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.029, + -0.019 + ], + [ + -3.597, + -0.478 + ], + [ + 0, + 0 + ], + [ + -0.409, + -0.023 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.423, + 0.357 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.031, + -0.018 + ], + [ + 0, + 0 + ], + [ + 0.36, + 0.048 + ], + [ + 0.474, + 0.123 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.626, + -0.199 + ], + [ + 2.712, + -0.217 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.071, + 24.85 + ], + [ + 0.051, + 24.88 + ], + [ + -14.481, + 32.948 + ], + [ + -14.477, + 32.979 + ], + [ + -14.495, + 32.98 + ], + [ + -6.663, + 35.346 + ], + [ + -6.671, + 35.332 + ], + [ + -6.66, + 35.352 + ], + [ + -6.623, + 35.325 + ], + [ + -0.34, + 32.402 + ], + [ + 0.631, + 31.95 + ], + [ + 6.59, + 35.37 + ], + [ + 6.64, + 35.38 + ], + [ + 6.673, + 35.326 + ], + [ + 14.07, + 33.114 + ], + [ + 14.07, + 33.126 + ], + [ + 14.06, + 33.123 + ], + [ + 14.071, + 33.107 + ], + [ + 1.181, + 24.91 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 39, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.247, + -0.046 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.556, + 0.225 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.198, + 0.385 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.521, + -0.162 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.078, + 19.372 + ], + [ + 0.058, + 19.402 + ], + [ + -15.392, + 27.911 + ], + [ + -15.512, + 27.981 + ], + [ + -15.972, + 28.882 + ], + [ + -15.982, + 32.001 + ], + [ + -15.972, + 32.121 + ], + [ + -13.053, + 33.51 + ], + [ + -12.889, + 33.497 + ], + [ + -1.172, + 27.412 + ], + [ + 0.638, + 26.471 + ], + [ + 12.709, + 33.669 + ], + [ + 12.7, + 33.639 + ], + [ + 15.001, + 32.721 + ], + [ + 15.026, + 32.669 + ], + [ + 15.028, + 28.831 + ], + [ + 15.018, + 28.712 + ], + [ + 14.508, + 27.902 + ], + [ + 1.188, + 19.432 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 40, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.085, + 13.893 + ], + [ + 0.065, + 13.923 + ], + [ + -15.385, + 22.433 + ], + [ + -15.505, + 22.503 + ], + [ + -15.965, + 23.403 + ], + [ + -15.965, + 27.773 + ], + [ + -15.955, + 27.893 + ], + [ + -14.855, + 28.883 + ], + [ + -14.345, + 28.763 + ], + [ + -1.361, + 22.032 + ], + [ + 0.645, + 20.993 + ], + [ + 13.355, + 28.603 + ], + [ + 13.465, + 28.653 + ], + [ + 14.875, + 28.213 + ], + [ + 15.035, + 27.643 + ], + [ + 15.035, + 23.353 + ], + [ + 15.025, + 23.233 + ], + [ + 14.515, + 22.423 + ], + [ + 1.195, + 13.953 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 53, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.146, + -35.417 + ], + [ + 0.126, + -35.387 + ], + [ + -15.324, + -26.877 + ], + [ + -15.444, + -26.807 + ], + [ + -15.904, + -25.907 + ], + [ + -15.904, + -21.537 + ], + [ + -15.894, + -21.417 + ], + [ + -14.794, + -20.427 + ], + [ + -14.284, + -20.547 + ], + [ + -1.299, + -27.277 + ], + [ + 0.706, + -28.317 + ], + [ + 13.416, + -20.707 + ], + [ + 13.526, + -20.657 + ], + [ + 14.936, + -21.097 + ], + [ + 15.096, + -21.667 + ], + [ + 15.096, + -25.957 + ], + [ + 15.086, + -26.077 + ], + [ + 14.576, + -26.887 + ], + [ + 1.256, + -35.357 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 54, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.493, + 0.076 + ], + [ + 7.812, + -3.777 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.365, + 0.207 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.348, + -0.009 + ], + [ + 0, + 0 + ], + [ + -0.176, + 0.085 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + -6.604, + -3.027 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.293, + -35.945 + ], + [ + 0.005, + -35.992 + ], + [ + -15.314, + -32.585 + ], + [ + -15.439, + -32.503 + ], + [ + -15.897, + -31.386 + ], + [ + -15.897, + -27.016 + ], + [ + -15.887, + -26.896 + ], + [ + -14.787, + -25.906 + ], + [ + -14.277, + -26.026 + ], + [ + -1.293, + -32.756 + ], + [ + 0.713, + -33.796 + ], + [ + 13.423, + -26.186 + ], + [ + 13.533, + -26.136 + ], + [ + 14.943, + -26.576 + ], + [ + 15.103, + -27.146 + ], + [ + 15.103, + -31.436 + ], + [ + 15.093, + -31.556 + ], + [ + 14.591, + -32.927 + ], + [ + 1.301, + -35.949 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 55, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.493, + 0.076 + ], + [ + 4.778, + -2.653 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + -1.417, + -0.125 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.365, + 0.207 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -1.255, + -0.227 + ], + [ + 0, + 0 + ], + [ + -0.171, + 0.095 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.121, + 0.095 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + -4.692, + -2.092 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 4.248, + -35.835 + ], + [ + -3.439, + -35.937 + ], + [ + -15.819, + -32.366 + ], + [ + -15.916, + -32.448 + ], + [ + -15.923, + -32.265 + ], + [ + -15.935, + -31.191 + ], + [ + -15.925, + -31.07 + ], + [ + -14.825, + -30.081 + ], + [ + -14.315, + -30.201 + ], + [ + -3.424, + -35.913 + ], + [ + 4.136, + -35.911 + ], + [ + 13.385, + -30.361 + ], + [ + 13.495, + -30.311 + ], + [ + 14.905, + -30.751 + ], + [ + 15.065, + -31.32 + ], + [ + 15.069, + -32.699 + ], + [ + 15.058, + -32.627 + ], + [ + 15.019, + -32.735 + ], + [ + 4.229, + -35.894 + ] + ], + "c": true + } + ] + }, + { + "t": 56, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + -0.496, + -64.756 + ], + [ + -0.496, + -64.756 + ], + [ + -0.498, + -64.755 + ], + [ + -0.498, + -64.755 + ], + [ + -0.498, + -64.755 + ], + [ + -0.498, + -64.754 + ], + [ + -0.498, + -64.754 + ], + [ + -0.498, + -64.754 + ], + [ + -0.498, + -64.754 + ], + [ + -0.496, + -64.755 + ], + [ + -0.496, + -64.755 + ], + [ + -0.495, + -64.754 + ], + [ + -0.495, + -64.754 + ], + [ + -0.495, + -64.754 + ], + [ + -0.495, + -64.754 + ], + [ + -0.495, + -64.755 + ], + [ + -0.495, + -64.755 + ], + [ + -0.495, + -64.755 + ], + [ + -0.496, + -64.756 + ] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 10", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 3, + "ty": "sh", + "ix": 4, + "ks": { + "a": 1, + "k": [ + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 41, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + -0.496, + 66.355 + ], + [ + -0.496, + 66.355 + ], + [ + -0.498, + 66.356 + ], + [ + -0.498, + 66.356 + ], + [ + -0.498, + 66.356 + ], + [ + -0.498, + 66.357 + ], + [ + -0.498, + 66.357 + ], + [ + -0.498, + 66.357 + ], + [ + -0.498, + 66.357 + ], + [ + -0.496, + 66.356 + ], + [ + -0.496, + 66.356 + ], + [ + -0.495, + 66.357 + ], + [ + -0.495, + 66.357 + ], + [ + -0.495, + 66.357 + ], + [ + -0.495, + 66.357 + ], + [ + -0.495, + 66.356 + ], + [ + -0.495, + 66.356 + ], + [ + -0.495, + 66.356 + ], + [ + -0.496, + 66.355 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 42, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.318, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -3.045, + 0.176 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.008, + -0.02 + ], + [ + -0.172, + 0.027 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.148 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 1.604, + 0.469 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.053, + -0.027 + ], + [ + 0.229, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.523, + 0.109 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0.951, + 30.36 + ], + [ + -0.069, + 30.391 + ], + [ + -8.534, + 35.039 + ], + [ + -8.551, + 35.031 + ], + [ + 0.339, + 36.008 + ], + [ + 0.357, + 36.008 + ], + [ + 0.329, + 36.008 + ], + [ + 0.331, + 36 + ], + [ + 0.351, + 36 + ], + [ + 0.369, + 36 + ], + [ + 0.371, + 36 + ], + [ + 0.365, + 36.008 + ], + [ + 0.347, + 36 + ], + [ + 8.3, + 35.039 + ], + [ + 8.331, + 34.926 + ], + [ + 8.294, + 34.969 + ], + [ + 8.308, + 35 + ], + [ + 8.308, + 35.055 + ], + [ + 1.06, + 30.42 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 43, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.029, + -0.019 + ], + [ + -3.597, + -0.478 + ], + [ + 0, + 0 + ], + [ + -0.409, + -0.023 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.423, + 0.357 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.031, + -0.018 + ], + [ + 0, + 0 + ], + [ + 0.36, + 0.048 + ], + [ + 0.474, + 0.123 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.626, + -0.199 + ], + [ + 2.712, + -0.217 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.071, + 24.85 + ], + [ + 0.051, + 24.88 + ], + [ + -14.481, + 32.948 + ], + [ + -14.477, + 32.979 + ], + [ + -14.495, + 32.98 + ], + [ + -6.663, + 35.346 + ], + [ + -6.671, + 35.332 + ], + [ + -6.66, + 35.352 + ], + [ + -6.623, + 35.325 + ], + [ + -0.34, + 32.402 + ], + [ + 0.631, + 31.95 + ], + [ + 6.59, + 35.37 + ], + [ + 6.64, + 35.38 + ], + [ + 6.673, + 35.326 + ], + [ + 14.07, + 33.114 + ], + [ + 14.07, + 33.126 + ], + [ + 14.06, + 33.123 + ], + [ + 14.071, + 33.107 + ], + [ + 1.181, + 24.91 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 44, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.247, + -0.046 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.556, + 0.225 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.198, + 0.385 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.521, + -0.162 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.078, + 19.372 + ], + [ + 0.058, + 19.402 + ], + [ + -15.392, + 27.911 + ], + [ + -15.512, + 27.981 + ], + [ + -15.972, + 28.882 + ], + [ + -15.982, + 32.001 + ], + [ + -15.972, + 32.121 + ], + [ + -13.053, + 33.51 + ], + [ + -12.889, + 33.497 + ], + [ + -1.172, + 27.412 + ], + [ + 0.638, + 26.471 + ], + [ + 12.709, + 33.669 + ], + [ + 12.7, + 33.639 + ], + [ + 15.001, + 32.721 + ], + [ + 15.026, + 32.669 + ], + [ + 15.028, + 28.831 + ], + [ + 15.018, + 28.712 + ], + [ + 14.508, + 27.902 + ], + [ + 1.188, + 19.432 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 45, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.085, + 13.893 + ], + [ + 0.065, + 13.923 + ], + [ + -15.385, + 22.433 + ], + [ + -15.505, + 22.503 + ], + [ + -15.965, + 23.403 + ], + [ + -15.965, + 27.773 + ], + [ + -15.955, + 27.893 + ], + [ + -14.855, + 28.883 + ], + [ + -14.345, + 28.763 + ], + [ + -1.361, + 22.032 + ], + [ + 0.645, + 20.993 + ], + [ + 13.355, + 28.603 + ], + [ + 13.465, + 28.653 + ], + [ + 14.875, + 28.213 + ], + [ + 15.035, + 27.643 + ], + [ + 15.035, + 23.353 + ], + [ + 15.025, + 23.233 + ], + [ + 14.515, + 22.423 + ], + [ + 1.195, + 13.953 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 58, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.146, + -35.417 + ], + [ + 0.126, + -35.387 + ], + [ + -15.324, + -26.877 + ], + [ + -15.444, + -26.807 + ], + [ + -15.904, + -25.907 + ], + [ + -15.904, + -21.537 + ], + [ + -15.894, + -21.417 + ], + [ + -14.794, + -20.427 + ], + [ + -14.284, + -20.547 + ], + [ + -1.299, + -27.277 + ], + [ + 0.706, + -28.317 + ], + [ + 13.416, + -20.707 + ], + [ + 13.526, + -20.657 + ], + [ + 14.936, + -21.097 + ], + [ + 15.096, + -21.667 + ], + [ + 15.096, + -25.957 + ], + [ + 15.086, + -26.077 + ], + [ + 14.576, + -26.887 + ], + [ + 1.256, + -35.357 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 59, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.493, + 0.076 + ], + [ + 7.812, + -3.777 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.365, + 0.207 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.348, + -0.009 + ], + [ + 0, + 0 + ], + [ + -0.176, + 0.085 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + -6.604, + -3.027 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.293, + -35.945 + ], + [ + 0.005, + -35.992 + ], + [ + -15.314, + -32.585 + ], + [ + -15.439, + -32.503 + ], + [ + -15.897, + -31.386 + ], + [ + -15.897, + -27.016 + ], + [ + -15.887, + -26.896 + ], + [ + -14.787, + -25.906 + ], + [ + -14.277, + -26.026 + ], + [ + -1.293, + -32.756 + ], + [ + 0.713, + -33.796 + ], + [ + 13.423, + -26.186 + ], + [ + 13.533, + -26.136 + ], + [ + 14.943, + -26.576 + ], + [ + 15.103, + -27.146 + ], + [ + 15.103, + -31.436 + ], + [ + 15.093, + -31.556 + ], + [ + 14.591, + -32.927 + ], + [ + 1.301, + -35.949 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 60, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.493, + 0.076 + ], + [ + 4.778, + -2.653 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + -1.417, + -0.125 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.365, + 0.207 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -1.255, + -0.227 + ], + [ + 0, + 0 + ], + [ + -0.171, + 0.095 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.121, + 0.095 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + -4.692, + -2.092 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 4.248, + -35.835 + ], + [ + -3.439, + -35.937 + ], + [ + -15.819, + -32.366 + ], + [ + -15.916, + -32.448 + ], + [ + -15.923, + -32.265 + ], + [ + -15.935, + -31.191 + ], + [ + -15.925, + -31.07 + ], + [ + -14.825, + -30.081 + ], + [ + -14.315, + -30.201 + ], + [ + -3.424, + -35.913 + ], + [ + 4.136, + -35.911 + ], + [ + 13.385, + -30.361 + ], + [ + 13.495, + -30.311 + ], + [ + 14.905, + -30.751 + ], + [ + 15.065, + -31.32 + ], + [ + 15.069, + -32.699 + ], + [ + 15.058, + -32.627 + ], + [ + 15.019, + -32.735 + ], + [ + 4.229, + -35.894 + ] + ], + "c": true + } + ] + }, + { + "t": 61, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + -0.496, + -64.751 + ], + [ + -0.496, + -64.751 + ], + [ + -0.498, + -64.75 + ], + [ + -0.498, + -64.75 + ], + [ + -0.498, + -64.75 + ], + [ + -0.498, + -64.75 + ], + [ + -0.498, + -64.75 + ], + [ + -0.498, + -64.75 + ], + [ + -0.498, + -64.75 + ], + [ + -0.496, + -64.751 + ], + [ + -0.496, + -64.751 + ], + [ + -0.495, + -64.75 + ], + [ + -0.495, + -64.75 + ], + [ + -0.495, + -64.75 + ], + [ + -0.495, + -64.75 + ], + [ + -0.495, + -64.75 + ], + [ + -0.495, + -64.75 + ], + [ + -0.495, + -64.75 + ], + [ + -0.496, + -64.751 + ] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 9", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 4, + "ty": "sh", + "ix": 5, + "ks": { + "a": 1, + "k": [ + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 46, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + -0.496, + 74.773 + ], + [ + -0.496, + 74.773 + ], + [ + -0.498, + 74.773 + ], + [ + -0.498, + 74.774 + ], + [ + -0.498, + 74.774 + ], + [ + -0.498, + 74.774 + ], + [ + -0.498, + 74.774 + ], + [ + -0.498, + 74.774 + ], + [ + -0.498, + 74.774 + ], + [ + -0.496, + 74.773 + ], + [ + -0.496, + 74.773 + ], + [ + -0.495, + 74.774 + ], + [ + -0.495, + 74.774 + ], + [ + -0.495, + 74.774 + ], + [ + -0.495, + 74.774 + ], + [ + -0.495, + 74.774 + ], + [ + -0.495, + 74.774 + ], + [ + -0.495, + 74.773 + ], + [ + -0.496, + 74.773 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 47, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.318, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -3.045, + 0.176 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.008, + -0.02 + ], + [ + -0.172, + 0.027 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.148 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 1.604, + 0.469 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.053, + -0.027 + ], + [ + 0.229, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.523, + 0.109 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0.96, + 30.213 + ], + [ + -0.06, + 30.245 + ], + [ + -8.525, + 34.893 + ], + [ + -8.542, + 34.885 + ], + [ + 0.348, + 35.862 + ], + [ + 0.366, + 35.862 + ], + [ + 0.339, + 35.862 + ], + [ + 0.341, + 35.854 + ], + [ + 0.36, + 35.854 + ], + [ + 0.378, + 35.854 + ], + [ + 0.38, + 35.854 + ], + [ + 0.374, + 35.862 + ], + [ + 0.356, + 35.854 + ], + [ + 8.309, + 34.893 + ], + [ + 8.341, + 34.78 + ], + [ + 8.303, + 34.823 + ], + [ + 8.317, + 34.854 + ], + [ + 8.317, + 34.909 + ], + [ + 1.069, + 30.274 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 48, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.029, + -0.019 + ], + [ + -3.597, + -0.478 + ], + [ + 0, + 0 + ], + [ + -0.409, + -0.023 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.423, + 0.357 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.031, + -0.018 + ], + [ + 0, + 0 + ], + [ + 0.36, + 0.048 + ], + [ + 0.474, + 0.123 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.626, + -0.199 + ], + [ + 2.712, + -0.217 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.071, + 24.85 + ], + [ + 0.051, + 24.88 + ], + [ + -14.481, + 32.948 + ], + [ + -14.477, + 32.979 + ], + [ + -14.495, + 32.98 + ], + [ + -6.663, + 35.346 + ], + [ + -6.671, + 35.332 + ], + [ + -6.66, + 35.352 + ], + [ + -6.623, + 35.325 + ], + [ + -0.34, + 32.402 + ], + [ + 0.631, + 31.95 + ], + [ + 6.59, + 35.37 + ], + [ + 6.64, + 35.38 + ], + [ + 6.673, + 35.326 + ], + [ + 14.07, + 33.114 + ], + [ + 14.07, + 33.126 + ], + [ + 14.06, + 33.123 + ], + [ + 14.071, + 33.107 + ], + [ + 1.181, + 24.91 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 49, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.247, + -0.046 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.556, + 0.225 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.198, + 0.385 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.521, + -0.162 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.078, + 19.372 + ], + [ + 0.058, + 19.402 + ], + [ + -15.392, + 27.911 + ], + [ + -15.512, + 27.981 + ], + [ + -15.972, + 28.882 + ], + [ + -15.982, + 32.001 + ], + [ + -15.972, + 32.121 + ], + [ + -13.053, + 33.51 + ], + [ + -12.889, + 33.497 + ], + [ + -1.172, + 27.412 + ], + [ + 0.638, + 26.471 + ], + [ + 12.709, + 33.669 + ], + [ + 12.7, + 33.639 + ], + [ + 15.001, + 32.721 + ], + [ + 15.026, + 32.669 + ], + [ + 15.028, + 28.831 + ], + [ + 15.018, + 28.712 + ], + [ + 14.508, + 27.902 + ], + [ + 1.188, + 19.432 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 50, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.085, + 13.893 + ], + [ + 0.065, + 13.923 + ], + [ + -15.385, + 22.433 + ], + [ + -15.505, + 22.503 + ], + [ + -15.965, + 23.403 + ], + [ + -15.965, + 27.773 + ], + [ + -15.955, + 27.893 + ], + [ + -14.855, + 28.883 + ], + [ + -14.345, + 28.763 + ], + [ + -1.361, + 22.032 + ], + [ + 0.645, + 20.993 + ], + [ + 13.355, + 28.603 + ], + [ + 13.465, + 28.653 + ], + [ + 14.875, + 28.213 + ], + [ + 15.035, + 27.643 + ], + [ + 15.035, + 23.353 + ], + [ + 15.025, + 23.233 + ], + [ + 14.515, + 22.423 + ], + [ + 1.195, + 13.953 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 71, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.127, + -28.28 + ], + [ + 0.107, + -28.25 + ], + [ + -15.343, + -19.74 + ], + [ + -15.463, + -19.67 + ], + [ + -15.923, + -18.77 + ], + [ + -15.923, + -14.4 + ], + [ + -15.913, + -14.28 + ], + [ + -14.813, + -13.29 + ], + [ + -14.303, + -13.41 + ], + [ + -1.318, + -20.141 + ], + [ + 0.687, + -21.18 + ], + [ + 13.397, + -13.57 + ], + [ + 13.507, + -13.52 + ], + [ + 14.917, + -13.96 + ], + [ + 15.077, + -14.53 + ], + [ + 15.077, + -18.82 + ], + [ + 15.067, + -18.94 + ], + [ + 14.557, + -19.75 + ], + [ + 1.237, + -28.22 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 87, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.127, + -28.28 + ], + [ + 0.107, + -28.25 + ], + [ + -15.343, + -19.74 + ], + [ + -15.463, + -19.67 + ], + [ + -15.923, + -18.77 + ], + [ + -15.923, + -14.4 + ], + [ + -15.913, + -14.28 + ], + [ + -14.813, + -13.29 + ], + [ + -14.303, + -13.41 + ], + [ + -1.318, + -20.141 + ], + [ + 0.687, + -21.18 + ], + [ + 13.397, + -13.57 + ], + [ + 13.507, + -13.52 + ], + [ + 14.917, + -13.96 + ], + [ + 15.077, + -14.53 + ], + [ + 15.077, + -18.82 + ], + [ + 15.067, + -18.94 + ], + [ + 14.557, + -19.75 + ], + [ + 1.237, + -28.22 + ] + ], + "c": true + } + ] + }, + { + "t": 108, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.127, + -20.245 + ], + [ + 0.107, + -20.215 + ], + [ + -15.343, + -11.705 + ], + [ + -15.463, + -11.635 + ], + [ + -15.923, + -10.735 + ], + [ + -15.923, + -6.365 + ], + [ + -15.913, + -6.245 + ], + [ + -14.813, + -5.255 + ], + [ + -14.303, + -5.375 + ], + [ + -1.318, + -12.105 + ], + [ + 0.687, + -13.145 + ], + [ + 13.397, + -5.535 + ], + [ + 13.507, + -5.485 + ], + [ + 14.917, + -5.925 + ], + [ + 15.077, + -6.495 + ], + [ + 15.077, + -10.785 + ], + [ + 15.067, + -10.905 + ], + [ + 14.557, + -11.715 + ], + [ + 1.237, + -20.185 + ] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 11", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 5, + "ty": "sh", + "ix": 6, + "ks": { + "a": 1, + "k": [ + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 51, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + -0.496, + 70.083 + ], + [ + -0.496, + 70.083 + ], + [ + -0.498, + 70.084 + ], + [ + -0.498, + 70.084 + ], + [ + -0.498, + 70.085 + ], + [ + -0.498, + 70.085 + ], + [ + -0.498, + 70.085 + ], + [ + -0.498, + 70.085 + ], + [ + -0.498, + 70.085 + ], + [ + -0.496, + 70.084 + ], + [ + -0.496, + 70.084 + ], + [ + -0.495, + 70.085 + ], + [ + -0.495, + 70.085 + ], + [ + -0.495, + 70.085 + ], + [ + -0.495, + 70.085 + ], + [ + -0.495, + 70.085 + ], + [ + -0.495, + 70.085 + ], + [ + -0.495, + 70.084 + ], + [ + -0.496, + 70.083 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 52, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.318, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -3.045, + 0.176 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.008, + -0.02 + ], + [ + -0.172, + 0.027 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.148 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 1.604, + 0.469 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.053, + -0.027 + ], + [ + 0.229, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.523, + 0.109 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0.96, + 30.213 + ], + [ + -0.06, + 30.245 + ], + [ + -8.525, + 34.893 + ], + [ + -8.542, + 34.885 + ], + [ + 0.348, + 35.862 + ], + [ + 0.366, + 35.862 + ], + [ + 0.339, + 35.862 + ], + [ + 0.341, + 35.854 + ], + [ + 0.36, + 35.854 + ], + [ + 0.378, + 35.854 + ], + [ + 0.38, + 35.854 + ], + [ + 0.374, + 35.862 + ], + [ + 0.356, + 35.854 + ], + [ + 8.309, + 34.893 + ], + [ + 8.341, + 34.78 + ], + [ + 8.303, + 34.823 + ], + [ + 8.317, + 34.854 + ], + [ + 8.317, + 34.909 + ], + [ + 1.069, + 30.274 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 53, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.029, + -0.019 + ], + [ + -3.597, + -0.478 + ], + [ + 0, + 0 + ], + [ + -0.409, + -0.023 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.423, + 0.357 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.031, + -0.018 + ], + [ + 0, + 0 + ], + [ + 0.36, + 0.048 + ], + [ + 0.474, + 0.123 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.626, + -0.199 + ], + [ + 2.712, + -0.217 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.071, + 24.85 + ], + [ + 0.051, + 24.88 + ], + [ + -14.481, + 32.948 + ], + [ + -14.477, + 32.979 + ], + [ + -14.495, + 32.98 + ], + [ + -6.663, + 35.346 + ], + [ + -6.671, + 35.332 + ], + [ + -6.66, + 35.352 + ], + [ + -6.623, + 35.325 + ], + [ + -0.34, + 32.402 + ], + [ + 0.631, + 31.95 + ], + [ + 6.59, + 35.37 + ], + [ + 6.64, + 35.38 + ], + [ + 6.673, + 35.326 + ], + [ + 14.07, + 33.114 + ], + [ + 14.07, + 33.126 + ], + [ + 14.06, + 33.123 + ], + [ + 14.071, + 33.107 + ], + [ + 1.181, + 24.91 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 54, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.247, + -0.046 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.556, + 0.225 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.198, + 0.385 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.521, + -0.162 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.078, + 19.372 + ], + [ + 0.058, + 19.402 + ], + [ + -15.392, + 27.911 + ], + [ + -15.512, + 27.981 + ], + [ + -15.972, + 28.882 + ], + [ + -15.982, + 32.001 + ], + [ + -15.972, + 32.121 + ], + [ + -13.053, + 33.51 + ], + [ + -12.889, + 33.497 + ], + [ + -1.172, + 27.412 + ], + [ + 0.638, + 26.471 + ], + [ + 12.709, + 33.669 + ], + [ + 12.7, + 33.639 + ], + [ + 15.001, + 32.721 + ], + [ + 15.026, + 32.669 + ], + [ + 15.028, + 28.831 + ], + [ + 15.018, + 28.712 + ], + [ + 14.508, + 27.902 + ], + [ + 1.188, + 19.432 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 55, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.085, + 13.893 + ], + [ + 0.065, + 13.923 + ], + [ + -15.385, + 22.433 + ], + [ + -15.505, + 22.503 + ], + [ + -15.965, + 23.403 + ], + [ + -15.965, + 27.773 + ], + [ + -15.955, + 27.893 + ], + [ + -14.855, + 28.883 + ], + [ + -14.345, + 28.763 + ], + [ + -1.361, + 22.032 + ], + [ + 0.645, + 20.993 + ], + [ + 13.355, + 28.603 + ], + [ + 13.465, + 28.653 + ], + [ + 14.875, + 28.213 + ], + [ + 15.035, + 27.643 + ], + [ + 15.035, + 23.353 + ], + [ + 15.025, + 23.233 + ], + [ + 14.515, + 22.423 + ], + [ + 1.195, + 13.953 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 75, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.113, + -15.696 + ], + [ + 0.093, + -15.666 + ], + [ + -15.357, + -7.156 + ], + [ + -15.477, + -7.086 + ], + [ + -15.937, + -6.186 + ], + [ + -15.937, + -1.816 + ], + [ + -15.927, + -1.696 + ], + [ + -14.827, + -0.706 + ], + [ + -14.317, + -0.826 + ], + [ + -1.333, + -7.556 + ], + [ + 0.673, + -8.596 + ], + [ + 13.383, + -0.986 + ], + [ + 13.493, + -0.936 + ], + [ + 14.903, + -1.376 + ], + [ + 15.063, + -1.946 + ], + [ + 15.063, + -6.236 + ], + [ + 15.053, + -6.356 + ], + [ + 14.543, + -7.166 + ], + [ + 1.223, + -15.636 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 83, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.113, + -15.696 + ], + [ + 0.093, + -15.666 + ], + [ + -15.357, + -7.156 + ], + [ + -15.477, + -7.086 + ], + [ + -15.937, + -6.186 + ], + [ + -15.937, + -1.816 + ], + [ + -15.927, + -1.696 + ], + [ + -14.827, + -0.706 + ], + [ + -14.317, + -0.826 + ], + [ + -1.333, + -7.556 + ], + [ + 0.673, + -8.596 + ], + [ + 13.383, + -0.986 + ], + [ + 13.493, + -0.936 + ], + [ + 14.903, + -1.376 + ], + [ + 15.063, + -1.946 + ], + [ + 15.063, + -6.236 + ], + [ + 15.053, + -6.356 + ], + [ + 14.543, + -7.166 + ], + [ + 1.223, + -15.636 + ] + ], + "c": true + } + ] + }, + { + "t": 104, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.113, + -7.66 + ], + [ + 0.093, + -7.63 + ], + [ + -15.357, + 0.88 + ], + [ + -15.477, + 0.95 + ], + [ + -15.937, + 1.85 + ], + [ + -15.937, + 6.22 + ], + [ + -15.927, + 6.34 + ], + [ + -14.827, + 7.33 + ], + [ + -14.317, + 7.21 + ], + [ + -1.333, + 0.479 + ], + [ + 0.673, + -0.56 + ], + [ + 13.383, + 7.05 + ], + [ + 13.493, + 7.1 + ], + [ + 14.903, + 6.66 + ], + [ + 15.063, + 6.09 + ], + [ + 15.063, + 1.8 + ], + [ + 15.053, + 1.68 + ], + [ + 14.543, + 0.87 + ], + [ + 1.223, + -7.6 + ] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 13", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 6, + "ty": "sh", + "ix": 7, + "ks": { + "a": 1, + "k": [ + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 56, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + -0.496, + 69.085 + ], + [ + -0.496, + 69.085 + ], + [ + -0.498, + 69.086 + ], + [ + -0.498, + 69.086 + ], + [ + -0.498, + 69.086 + ], + [ + -0.498, + 69.087 + ], + [ + -0.498, + 69.087 + ], + [ + -0.498, + 69.087 + ], + [ + -0.498, + 69.087 + ], + [ + -0.496, + 69.086 + ], + [ + -0.496, + 69.086 + ], + [ + -0.495, + 69.087 + ], + [ + -0.495, + 69.087 + ], + [ + -0.495, + 69.087 + ], + [ + -0.495, + 69.087 + ], + [ + -0.495, + 69.086 + ], + [ + -0.495, + 69.086 + ], + [ + -0.495, + 69.086 + ], + [ + -0.496, + 69.085 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 57, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.318, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -3.045, + 0.176 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.008, + -0.02 + ], + [ + -0.172, + 0.027 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.148 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 1.604, + 0.469 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.053, + -0.027 + ], + [ + 0.229, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.523, + 0.109 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0.96, + 30.314 + ], + [ + -0.06, + 30.345 + ], + [ + -8.525, + 34.994 + ], + [ + -8.542, + 34.986 + ], + [ + 0.348, + 35.962 + ], + [ + 0.366, + 35.962 + ], + [ + 0.339, + 35.962 + ], + [ + 0.341, + 35.955 + ], + [ + 0.36, + 35.955 + ], + [ + 0.378, + 35.955 + ], + [ + 0.38, + 35.955 + ], + [ + 0.374, + 35.962 + ], + [ + 0.356, + 35.955 + ], + [ + 8.309, + 34.994 + ], + [ + 8.341, + 34.88 + ], + [ + 8.303, + 34.923 + ], + [ + 8.317, + 34.955 + ], + [ + 8.317, + 35.009 + ], + [ + 1.069, + 30.374 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 58, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.029, + -0.019 + ], + [ + -3.597, + -0.478 + ], + [ + 0, + 0 + ], + [ + -0.409, + -0.023 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.423, + 0.357 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.031, + -0.018 + ], + [ + 0, + 0 + ], + [ + 0.36, + 0.048 + ], + [ + 0.474, + 0.123 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.626, + -0.199 + ], + [ + 2.712, + -0.217 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.071, + 24.85 + ], + [ + 0.051, + 24.88 + ], + [ + -14.481, + 32.948 + ], + [ + -14.477, + 32.979 + ], + [ + -14.495, + 32.98 + ], + [ + -6.663, + 35.346 + ], + [ + -6.671, + 35.332 + ], + [ + -6.66, + 35.352 + ], + [ + -6.623, + 35.325 + ], + [ + -0.34, + 32.402 + ], + [ + 0.631, + 31.95 + ], + [ + 6.59, + 35.37 + ], + [ + 6.64, + 35.38 + ], + [ + 6.673, + 35.326 + ], + [ + 14.07, + 33.114 + ], + [ + 14.07, + 33.126 + ], + [ + 14.06, + 33.123 + ], + [ + 14.071, + 33.107 + ], + [ + 1.181, + 24.91 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 59, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.247, + -0.046 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.556, + 0.225 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.198, + 0.385 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.521, + -0.162 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.078, + 19.372 + ], + [ + 0.058, + 19.402 + ], + [ + -15.392, + 27.911 + ], + [ + -15.512, + 27.981 + ], + [ + -15.972, + 28.882 + ], + [ + -15.982, + 32.001 + ], + [ + -15.972, + 32.121 + ], + [ + -13.053, + 33.51 + ], + [ + -12.889, + 33.497 + ], + [ + -1.172, + 27.412 + ], + [ + 0.638, + 26.471 + ], + [ + 12.709, + 33.669 + ], + [ + 12.7, + 33.639 + ], + [ + 15.001, + 32.721 + ], + [ + 15.026, + 32.669 + ], + [ + 15.028, + 28.831 + ], + [ + 15.018, + 28.712 + ], + [ + 14.508, + 27.902 + ], + [ + 1.188, + 19.432 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 60, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.085, + 13.893 + ], + [ + 0.065, + 13.923 + ], + [ + -15.385, + 22.433 + ], + [ + -15.505, + 22.503 + ], + [ + -15.965, + 23.403 + ], + [ + -15.965, + 27.773 + ], + [ + -15.955, + 27.893 + ], + [ + -14.855, + 28.883 + ], + [ + -14.345, + 28.763 + ], + [ + -1.361, + 22.032 + ], + [ + 0.645, + 20.993 + ], + [ + 13.355, + 28.603 + ], + [ + 13.465, + 28.653 + ], + [ + 14.875, + 28.213 + ], + [ + 15.035, + 27.643 + ], + [ + 15.035, + 23.353 + ], + [ + 15.025, + 23.233 + ], + [ + 14.515, + 22.423 + ], + [ + 1.195, + 13.953 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 79, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.104, + -3.74 + ], + [ + 0.084, + -3.71 + ], + [ + -15.366, + 4.8 + ], + [ + -15.486, + 4.87 + ], + [ + -15.946, + 5.77 + ], + [ + -15.946, + 10.14 + ], + [ + -15.936, + 10.26 + ], + [ + -14.836, + 11.25 + ], + [ + -14.326, + 11.13 + ], + [ + -1.342, + 4.399 + ], + [ + 0.664, + 3.36 + ], + [ + 13.374, + 10.97 + ], + [ + 13.484, + 11.02 + ], + [ + 14.894, + 10.58 + ], + [ + 15.054, + 10.01 + ], + [ + 15.054, + 5.72 + ], + [ + 15.044, + 5.6 + ], + [ + 14.534, + 4.79 + ], + [ + 1.214, + -3.68 + ] + ], + "c": true + } + ] + }, + { + "t": 100, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.32, + -0.18 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.36 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.57, + 0 + ], + [ + -0.16, + 0.08 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.49 + ], + [ + 0, + 0.2 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.29, + 0.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + -0.32, + -0.15 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.29, + 0.21 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.06, + 0.56 + ], + [ + 0.18, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.51, + 0.24 + ], + [ + 0.11, + -0.17 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.33 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 1.104, + 4.697 + ], + [ + 0.084, + 4.727 + ], + [ + -15.366, + 13.237 + ], + [ + -15.486, + 13.307 + ], + [ + -15.946, + 14.207 + ], + [ + -15.946, + 18.577 + ], + [ + -15.936, + 18.697 + ], + [ + -14.836, + 19.687 + ], + [ + -14.326, + 19.567 + ], + [ + -1.342, + 12.837 + ], + [ + 0.664, + 11.797 + ], + [ + 13.374, + 19.407 + ], + [ + 13.484, + 19.457 + ], + [ + 14.894, + 19.017 + ], + [ + 15.054, + 18.447 + ], + [ + 15.054, + 14.157 + ], + [ + 15.044, + 14.037 + ], + [ + 14.534, + 13.227 + ], + [ + 1.214, + 4.757 + ] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 12", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 10, + "ty": "sh", + "ix": 11, + "ks": { + "a": 1, + "k": [ + { + "i": { + "x": 0.667, + "y": 1 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 0, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + -19.87 + ], + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ] + ], + "o": [ + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ], + [ + 0, + -19.87 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0, + -36 + ], + [ + 36, + 0 + ], + [ + 0, + 36 + ], + [ + -36, + 0 + ], + [ + 0, + -36 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.667, + "y": 1 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 6, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + -15.455 + ], + [ + 19.87, + 0 + ], + [ + 0, + 15.455 + ], + [ + -28.454, + 0 + ] + ], + "o": [ + [ + 28.454, + 0 + ], + [ + 0, + 15.455 + ], + [ + -19.87, + 0 + ], + [ + 0, + -15.455 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0.18, + -35.646 + ], + [ + 51.021, + -11.359 + ], + [ + 0, + 60.456 + ], + [ + -52.082, + -11.359 + ], + [ + 0.18, + -35.646 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.667, + "y": 1 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 13, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + -2.599, + -59.775 + ], + [ + 73.157, + 0 + ], + [ + 2.765, + 64.966 + ], + [ + -73.157, + 0 + ] + ], + "o": [ + [ + 73.157, + 0 + ], + [ + 2.599, + 59.775 + ], + [ + -73.157, + 0 + ], + [ + -2.599, + -61.075 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0.095, + -42.483 + ], + [ + 132.64, + 15.048 + ], + [ + 0.095, + 72.579 + ], + [ + -132.896, + 16.348 + ], + [ + 0.095, + -42.483 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.667, + "y": 1 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 19, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 4.324, + -19.643 + ], + [ + 28.681, + 0 + ], + [ + 2.682, + 12.183 + ], + [ + -19.87, + 0 + ] + ], + "o": [ + [ + 19.87, + 0 + ], + [ + -2.889, + 13.125 + ], + [ + -28.681, + 0 + ], + [ + -4.324, + -19.643 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0, + -36 + ], + [ + 52.556, + 55.9 + ], + [ + -0.32, + 72.87 + ], + [ + -51.371, + 55.9 + ], + [ + 0, + -36 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.667, + "y": 1 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 33, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + -19.87 + ], + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ] + ], + "o": [ + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ], + [ + 0, + -19.87 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0, + -36 + ], + [ + 36, + 0 + ], + [ + 0, + 36 + ], + [ + -36, + 0 + ], + [ + 0, + -36 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.667, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 43, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + -19.87 + ], + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ] + ], + "o": [ + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ], + [ + 0, + -19.87 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0, + -36 + ], + [ + 36, + 0 + ], + [ + 0, + 36 + ], + [ + -36, + 0 + ], + [ + 0, + -36 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 58, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + -19.87 + ], + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ] + ], + "o": [ + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ], + [ + 0, + -19.87 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0, + -36 + ], + [ + 36, + 0 + ], + [ + 0, + 36 + ], + [ + -36, + 0 + ], + [ + 0, + -36 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.667, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 64, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + -19.87 + ], + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ] + ], + "o": [ + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ], + [ + 0, + -19.87 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0, + -36 + ], + [ + 35.839, + 7.232 + ], + [ + 0, + 38.411 + ], + [ + -36.161, + 7.232 + ], + [ + 0, + -36 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.333, + "y": 0 + }, + "t": 71, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + -19.87 + ], + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ] + ], + "o": [ + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ], + [ + 0, + -19.87 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0, + -36 + ], + [ + 36, + 0 + ], + [ + 0, + 36 + ], + [ + -36, + 0 + ], + [ + 0, + -36 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.29, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 81, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + -19.87 + ], + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ] + ], + "o": [ + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ], + [ + 0, + -19.87 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0, + -37.607 + ], + [ + 36.161, + -6.429 + ], + [ + 0, + 36 + ], + [ + -35.839, + -6.429 + ], + [ + 0, + -37.607 + ] + ], + "c": true + } + ] + }, + { + "t": 99, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + -19.87 + ], + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ] + ], + "o": [ + [ + 19.87, + 0 + ], + [ + 0, + 19.87 + ], + [ + -19.87, + 0 + ], + [ + 0, + -19.87 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0, + -36 + ], + [ + 36, + 0 + ], + [ + 0, + 36 + ], + [ + -36, + 0 + ], + [ + 0, + -36 + ] + ], + "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": [ + 1, + 1, + 1, + 1 + ], + "ix": 4 + }, + "o": { + "a": 0, + "k": 100, + "ix": 5 + }, + "r": 1, + "bm": 0, + "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": [ + 711.111, + 711.111 + ], + "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": "Fill 1", + "np": 13, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + } + ], + "markers": [] +} \ No newline at end of file diff --git a/TMessagesProj/src/main/res/raw/linkbroken.json b/TMessagesProj/src/main/res/raw/linkbroken.json new file mode 100644 index 000000000..14ff73524 --- /dev/null +++ b/TMessagesProj/src/main/res/raw/linkbroken.json @@ -0,0 +1,14123 @@ +{ + "v": "5.7.6", + "fr": 60, + "ip": 0, + "op": 120, + "w": 512, + "h": 512, + "nm": "linkbroken", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 3, + "nm": "scale2", + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 0, + "ix": 11 + }, + "r": { + "a": 0, + "k": 45, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 256, + 256, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 115, + 115, + 0 + ], + "ix": 1, + "l": 2 + }, + "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 + ] + }, + "t": 6, + "s": [ + 100, + 100, + 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 + ] + }, + "t": 57, + "s": [ + 94, + 106, + 100 + ] + }, + { + "t": 64, + "s": [ + 100, + 100, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 2, + "ty": 3, + "nm": "scale", + "parent": 1, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 0, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 114.786, + 115, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 115, + 115, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.45, + 0.45, + 0.45 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.55, + 0.55, + 0.55 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 0, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.45, + 0.45, + 0.45 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.55, + 0.55, + 0.55 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 6, + "s": [ + 110, + 90, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.55, + 0.55, + 0.55 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 27, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 32, + "s": [ + 102, + 98, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 37, + "s": [ + 98, + 102, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 42, + "s": [ + 102, + 98, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 47, + "s": [ + 98, + 102, + 100 + ] + }, + { + "i": { + "x": [ + 0.45, + 0.45, + 0.45 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 52, + "s": [ + 102, + 98, + 100 + ] + }, + { + "t": 57, + "s": [ + 100, + 100, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 3, + "ty": 3, + "nm": "top", + "parent": 2, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 0, + "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 + }, + "t": 22, + "s": [ + 115.214, + 30.147, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 57, + "s": [ + 115.214, + 1.863, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.81, + "y": 0 + }, + "t": 71, + "s": [ + 115.214, + -26.421, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "t": 83, + "s": [ + 115.214, + 30.147, + 0 + ] + } + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 115, + 115, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.3, + 0.3, + 0.3 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 0, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 0.833, + 0.833, + 1 + ] + }, + "o": { + "x": [ + 0.7, + 0.7, + 0.7 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 6, + "s": [ + 106, + 94, + 100 + ] + }, + { + "i": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0.167, + 0.167, + 0 + ] + }, + "t": 17, + "s": [ + 95, + 105, + 100 + ] + }, + { + "i": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 27, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 32, + "s": [ + 96, + 104, + 100 + ] + }, + { + "i": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 37, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 42, + "s": [ + 96, + 104, + 100 + ] + }, + { + "i": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 47, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 52, + "s": [ + 96, + 104, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 0.833, + 0.833, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 57, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0.167, + 0.167, + 0 + ] + }, + "t": 60, + "s": [ + 95, + 105, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 64, + "s": [ + 109, + 90, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 0.833, + 0.833, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 73, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0.167, + 0.167, + 0 + ] + }, + "t": 78, + "s": [ + 95, + 105, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 83, + "s": [ + 109, + 90, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 95, + "s": [ + 92, + 108, + 100 + ] + }, + { + "t": 105, + "s": [ + 100, + 100, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 4, + "ty": 4, + "nm": "top", + "parent": 3, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.2 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.74 + ], + "y": [ + 0 + ] + }, + "t": 0, + "s": [ + -45 + ] + }, + { + "i": { + "x": [ + 0.11 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0 + ] + }, + "t": 6, + "s": [ + -45 + ] + }, + { + "t": 83, + "s": [ + -45 + ] + } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.74, + "y": 0 + }, + "t": 0, + "s": [ + 114.786, + 145.351, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.7, + "y": 0 + }, + "t": 6, + "s": [ + 114.786, + 181.158, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 27, + "s": [ + 114.786, + 116.726, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.08, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 57, + "s": [ + 114.786, + 129.608, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.9, + "y": 0 + }, + "t": 69, + "s": [ + 114.786, + 150.274, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.9, + "y": 0 + }, + "t": 73, + "s": [ + 114.786, + 150.274, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.18, + "y": 1 + }, + "o": { + "x": 0.7, + "y": 0 + }, + "t": 83, + "s": [ + 114.786, + 181.158, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "t": 95, + "s": [ + 114.786, + 145.351, + 0 + ] + } + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 0, + 0, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 0, + "k": [ + 500, + 500, + 100 + ], + "ix": 6, + "l": 2 + } + }, + "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.74, + "y": 0 + }, + "t": 0, + "s": [ + { + "i": [ + [ + -5.467, + -5.467 + ], + [ + 5.467, + -5.467 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + 3.28 + ], + [ + 3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 5.467, + 5.467 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + -3.28 + ], + [ + -3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.467, + -5.467 + ] + ], + "v": [ + [ + 9.242, + -9.242 + ], + [ + 9.242, + 10.557 + ], + [ + 7.277, + 12.522 + ], + [ + 3.317, + 12.522 + ], + [ + 3.317, + 8.562 + ], + [ + 3.317, + 8.562 + ], + [ + 5.17, + 6.71 + ], + [ + 5.17, + -5.17 + ], + [ + -6.71, + -5.17 + ], + [ + -8.562, + -3.317 + ], + [ + -12.522, + -3.317 + ], + [ + -12.522, + -7.277 + ], + [ + -12.522, + -7.277 + ], + [ + -10.557, + -9.242 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 3, + "s": [ + { + "i": [ + [ + -5.467, + -5.467 + ], + [ + 5.467, + -5.467 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + 3.28 + ], + [ + 3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 5.467, + 5.467 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + -3.28 + ], + [ + -3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.467, + -5.467 + ] + ], + "v": [ + [ + 12.242, + -12.242 + ], + [ + 12.242, + 7.557 + ], + [ + 8.463, + 11.336 + ], + [ + 4.503, + 11.336 + ], + [ + 4.503, + 7.376 + ], + [ + 4.444, + 7.435 + ], + [ + 8.17, + 3.71 + ], + [ + 8.17, + -8.17 + ], + [ + -3.71, + -8.17 + ], + [ + -7.376, + -4.503 + ], + [ + -11.336, + -4.503 + ], + [ + -11.336, + -8.463 + ], + [ + -11.336, + -8.463 + ], + [ + -7.557, + -12.242 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.7, + "y": 0 + }, + "t": 6, + "s": [ + { + "i": [ + [ + -5.467, + -5.467 + ], + [ + 5.467, + -5.467 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + 3.28 + ], + [ + 3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 5.467, + 5.467 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + -3.28 + ], + [ + -3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.467, + -5.467 + ] + ], + "v": [ + [ + 9.242, + -9.242 + ], + [ + 9.242, + 10.557 + ], + [ + 9.277, + 10.522 + ], + [ + 5.317, + 10.522 + ], + [ + 5.317, + 6.562 + ], + [ + 5.217, + 6.662 + ], + [ + 5.17, + 6.71 + ], + [ + 5.17, + -5.17 + ], + [ + -6.71, + -5.17 + ], + [ + -6.562, + -5.317 + ], + [ + -10.522, + -5.317 + ], + [ + -10.522, + -9.277 + ], + [ + -10.522, + -9.277 + ], + [ + -10.557, + -9.242 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 22, + "s": [ + { + "i": [ + [ + -5.527, + -5.05 + ], + [ + 5.094, + -5.487 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.316, + 3.03 + ], + [ + 3.056, + -3.292 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -3.423, + 3.454 + ] + ], + "o": [ + [ + 5.527, + 5.05 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.056, + -3.292 + ], + [ + -3.316, + -3.03 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.306, + -5.354 + ] + ], + "v": [ + [ + 7.204, + -8.896 + ], + [ + 8.036, + 10.132 + ], + [ + 3.277, + 16.522 + ], + [ + -0.683, + 16.522 + ], + [ + -0.683, + 12.562 + ], + [ + -0.683, + 12.562 + ], + [ + 3.881, + 6.637 + ], + [ + 3.411, + -4.81 + ], + [ + -8.088, + -4.391 + ], + [ + -12.562, + 0.683 + ], + [ + -16.522, + 0.683 + ], + [ + -16.522, + -3.277 + ], + [ + -16.522, + -3.277 + ], + [ + -12.028, + -8.105 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 27, + "s": [ + { + "i": [ + [ + -4.832, + -5.719 + ], + [ + 5.758, + -4.786 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.899, + 3.432 + ], + [ + 3.455, + -2.871 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -3.839, + 2.985 + ] + ], + "o": [ + [ + 4.832, + 5.719 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.455, + -2.871 + ], + [ + -2.899, + -3.432 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.951, + -4.626 + ] + ], + "v": [ + [ + 9.034, + -6.262 + ], + [ + 7.41, + 12.716 + ], + [ + 3.277, + 16.522 + ], + [ + -0.683, + 16.522 + ], + [ + -0.683, + 12.562 + ], + [ + -0.683, + 12.562 + ], + [ + 3.74, + 8.715 + ], + [ + 4.746, + -2.697 + ], + [ + -6.711, + -3.762 + ], + [ + -12.562, + 0.683 + ], + [ + -16.522, + 0.683 + ], + [ + -16.522, + -3.277 + ], + [ + -16.522, + -3.277 + ], + [ + -10.14, + -7.952 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 32, + "s": [ + { + "i": [ + [ + -6.111, + -4.326 + ], + [ + 4.375, + -6.076 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.666, + 2.596 + ], + [ + 2.625, + -3.646 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -2.969, + 3.852 + ] + ], + "o": [ + [ + 6.111, + 4.326 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.625, + -3.646 + ], + [ + -3.666, + -2.596 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 4.602, + -5.97 + ] + ], + "v": [ + [ + 5.498, + -11.003 + ], + [ + 8.681, + 7.776 + ], + [ + 3.277, + 16.522 + ], + [ + -0.683, + 16.522 + ], + [ + -0.683, + 12.562 + ], + [ + -0.683, + 12.562 + ], + [ + 4.126, + 4.823 + ], + [ + 2.24, + -6.478 + ], + [ + -9.119, + -4.637 + ], + [ + -12.562, + 0.683 + ], + [ + -16.522, + 0.683 + ], + [ + -16.522, + -3.277 + ], + [ + -16.522, + -3.277 + ], + [ + -13.488, + -7.834 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 37, + "s": [ + { + "i": [ + [ + -4.832, + -5.719 + ], + [ + 5.758, + -4.786 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.899, + 3.432 + ], + [ + 3.455, + -2.871 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -3.839, + 2.985 + ] + ], + "o": [ + [ + 4.832, + 5.719 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.455, + -2.871 + ], + [ + -2.899, + -3.432 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.951, + -4.626 + ] + ], + "v": [ + [ + 9.064, + -6.292 + ], + [ + 7.44, + 12.686 + ], + [ + 2.756, + 17.043 + ], + [ + -1.204, + 17.043 + ], + [ + -1.204, + 13.083 + ], + [ + -1.204, + 13.083 + ], + [ + 3.77, + 8.685 + ], + [ + 4.776, + -2.727 + ], + [ + -6.681, + -3.792 + ], + [ + -13.083, + 1.204 + ], + [ + -17.043, + 1.204 + ], + [ + -17.043, + -2.756 + ], + [ + -17.043, + -2.756 + ], + [ + -10.11, + -7.982 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 42, + "s": [ + { + "i": [ + [ + -6.111, + -4.326 + ], + [ + 4.375, + -6.076 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.666, + 2.596 + ], + [ + 2.625, + -3.646 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -2.969, + 3.852 + ] + ], + "o": [ + [ + 6.111, + 4.326 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.625, + -3.646 + ], + [ + -3.666, + -2.596 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 4.602, + -5.97 + ] + ], + "v": [ + [ + 5.508, + -11.013 + ], + [ + 8.692, + 7.765 + ], + [ + 2.334, + 17.465 + ], + [ + -1.626, + 17.465 + ], + [ + -1.626, + 13.506 + ], + [ + -1.626, + 13.506 + ], + [ + 4.136, + 4.812 + ], + [ + 2.25, + -6.488 + ], + [ + -9.108, + -4.648 + ], + [ + -13.506, + 1.626 + ], + [ + -17.465, + 1.626 + ], + [ + -17.465, + -2.334 + ], + [ + -17.465, + -2.334 + ], + [ + -13.477, + -7.845 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 47, + "s": [ + { + "i": [ + [ + -4.832, + -5.719 + ], + [ + 5.758, + -4.786 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.899, + 3.432 + ], + [ + 3.455, + -2.871 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -3.839, + 2.985 + ] + ], + "o": [ + [ + 4.832, + 5.719 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.455, + -2.871 + ], + [ + -2.899, + -3.432 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.951, + -4.626 + ] + ], + "v": [ + [ + 9.075, + -6.302 + ], + [ + 7.451, + 12.675 + ], + [ + 1.698, + 18.101 + ], + [ + -2.262, + 18.101 + ], + [ + -2.262, + 14.141 + ], + [ + -2.262, + 14.141 + ], + [ + 3.781, + 8.674 + ], + [ + 4.787, + -2.738 + ], + [ + -6.67, + -3.802 + ], + [ + -14.141, + 2.262 + ], + [ + -18.101, + 2.262 + ], + [ + -18.101, + -1.698 + ], + [ + -18.101, + -1.698 + ], + [ + -10.099, + -7.992 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 52, + "s": [ + { + "i": [ + [ + -6.111, + -4.326 + ], + [ + 4.375, + -6.076 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.666, + 2.596 + ], + [ + 2.625, + -3.646 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -2.969, + 3.852 + ] + ], + "o": [ + [ + 6.111, + 4.326 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.625, + -3.646 + ], + [ + -3.666, + -2.596 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 4.602, + -5.97 + ] + ], + "v": [ + [ + 5.519, + -11.024 + ], + [ + 8.702, + 7.755 + ], + [ + 1.875, + 17.924 + ], + [ + -2.085, + 17.924 + ], + [ + -2.085, + 13.964 + ], + [ + -2.085, + 13.964 + ], + [ + 4.147, + 4.802 + ], + [ + 2.261, + -6.499 + ], + [ + -9.098, + -4.658 + ], + [ + -13.964, + 2.085 + ], + [ + -17.924, + 2.085 + ], + [ + -17.924, + -1.875 + ], + [ + -17.924, + -1.875 + ], + [ + -13.467, + -7.855 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 57, + "s": [ + { + "i": [ + [ + -4.962, + -5.607 + ], + [ + 5.646, + -4.916 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.977, + 3.364 + ], + [ + 3.388, + -2.95 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -3.77, + 3.072 + ] + ], + "o": [ + [ + 4.962, + 5.607 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.388, + -2.95 + ], + [ + -2.977, + -3.364 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.843, + -4.762 + ] + ], + "v": [ + [ + 9.407, + -7.478 + ], + [ + 8.219, + 11.531 + ], + [ + 1.172, + 18.627 + ], + [ + -2.788, + 18.627 + ], + [ + -2.788, + 14.667 + ], + [ + -2.788, + 14.667 + ], + [ + 4.458, + 7.616 + ], + [ + 5.202, + -3.817 + ], + [ + -6.276, + -4.618 + ], + [ + -14.667, + 2.788 + ], + [ + -18.627, + 2.788 + ], + [ + -18.627, + -1.172 + ], + [ + -18.627, + -1.172 + ], + [ + -9.8, + -8.728 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 60, + "s": [ + { + "i": [ + [ + -5.363, + -5.496 + ], + [ + 5.504, + -5.354 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.218, + 3.298 + ], + [ + 3.303, + -3.212 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -0.778, + 0.634 + ] + ], + "o": [ + [ + 5.363, + 5.496 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.303, + -3.212 + ], + [ + -3.218, + -3.298 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.545, + -5.322 + ] + ], + "v": [ + [ + 8.55, + -8.152 + ], + [ + 8.304, + 11.484 + ], + [ + 1.525, + 18.274 + ], + [ + -2.435, + 18.274 + ], + [ + -2.435, + 14.314 + ], + [ + 2.644, + 9.235 + ], + [ + 4.297, + 7.623 + ], + [ + 4.45, + -4.164 + ], + [ + -7.346, + -4.33 + ], + [ + -14.394, + 2.514 + ], + [ + -18.354, + 2.514 + ], + [ + -18.354, + -1.445 + ], + [ + -18.354, + -1.445 + ], + [ + -11.127, + -8.41 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 64, + "s": [ + { + "i": [ + [ + -5.467, + -5.467 + ], + [ + 5.467, + -5.467 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + 3.28 + ], + [ + 3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 5.467, + 5.467 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + -3.28 + ], + [ + -3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.467, + -5.467 + ] + ], + "v": [ + [ + 9.242, + -9.242 + ], + [ + 9.242, + 10.557 + ], + [ + 9.177, + 10.622 + ], + [ + 5.217, + 10.622 + ], + [ + 5.217, + 6.662 + ], + [ + 5.217, + 6.662 + ], + [ + 5.17, + 6.71 + ], + [ + 5.17, + -5.17 + ], + [ + -6.71, + -5.17 + ], + [ + -6.762, + -5.117 + ], + [ + -10.722, + -5.117 + ], + [ + -10.722, + -9.077 + ], + [ + -10.722, + -9.077 + ], + [ + -10.557, + -9.242 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.11, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 73, + "s": [ + { + "i": [ + [ + -5.467, + -5.467 + ], + [ + 5.467, + -5.467 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + 3.28 + ], + [ + 3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 5.467, + 5.467 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + -3.28 + ], + [ + -3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.467, + -5.467 + ] + ], + "v": [ + [ + 9.242, + -9.242 + ], + [ + 9.242, + 10.557 + ], + [ + 7.277, + 12.522 + ], + [ + 3.317, + 12.522 + ], + [ + 3.317, + 8.562 + ], + [ + 3.317, + 8.562 + ], + [ + 5.17, + 6.71 + ], + [ + 5.17, + -5.17 + ], + [ + -6.71, + -5.17 + ], + [ + -8.562, + -3.317 + ], + [ + -12.522, + -3.317 + ], + [ + -12.522, + -7.277 + ], + [ + -12.522, + -7.277 + ], + [ + -10.557, + -9.242 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.18, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 83, + "s": [ + { + "i": [ + [ + -5.467, + -5.467 + ], + [ + 4.715, + -6.128 + ], + [ + 0, + 0 + ], + [ + 1.226, + 0.943 + ], + [ + -0.943, + 1.226 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + 3.28 + ], + [ + 3.833, + -2.613 + ], + [ + 0, + 0 + ], + [ + 0.871, + 1.278 + ], + [ + -1.278, + 0.871 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 5.467, + 5.467 + ], + [ + 0, + 0 + ], + [ + -0.943, + 1.226 + ], + [ + -1.226, + -0.943 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.829, + -3.677 + ], + [ + -3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -0.871, + -1.278 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 6.389, + -4.355 + ] + ], + "v": [ + [ + 9.242, + -9.242 + ], + [ + 11.012, + 11.937 + ], + [ + 11.042, + 11.898 + ], + [ + 7.116, + 12.409 + ], + [ + 6.604, + 8.482 + ], + [ + 6.518, + 8.594 + ], + [ + 6.477, + 8.648 + ], + [ + 5.17, + -5.17 + ], + [ + -8.899, + -6.47 + ], + [ + -7.938, + -6.693 + ], + [ + -12.617, + -7.323 + ], + [ + -11.881, + -11.214 + ], + [ + -11.881, + -11.214 + ], + [ + -11.922, + -11.186 + ] + ], + "c": true + } + ] + }, + { + "t": 95, + "s": [ + { + "i": [ + [ + -5.467, + -5.467 + ], + [ + 5.467, + -5.467 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + 3.28 + ], + [ + 3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 5.467, + 5.467 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + -3.28 + ], + [ + -3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.467, + -5.467 + ] + ], + "v": [ + [ + 9.242, + -9.242 + ], + [ + 9.242, + 10.557 + ], + [ + 7.277, + 12.522 + ], + [ + 3.317, + 12.522 + ], + [ + 3.317, + 8.562 + ], + [ + 3.317, + 8.562 + ], + [ + 5.17, + 6.71 + ], + [ + 5.17, + -5.17 + ], + [ + -6.71, + -5.17 + ], + [ + -8.562, + -3.317 + ], + [ + -12.522, + -3.317 + ], + [ + -12.522, + -7.277 + ], + [ + -12.522, + -7.277 + ], + [ + -10.557, + -9.242 + ] + ], + "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, + "bm": 0, + "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": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 5, + "ty": 3, + "nm": "mid_2", + "parent": 2, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 0, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 115.214, + 115, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 115, + 115, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 22, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 54, + "s": [ + 100, + 109, + 100 + ] + }, + { + "t": 69, + "s": [ + 100, + 100, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 6, + "ty": 3, + "nm": "mid", + "parent": 5, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 0, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 115, + 115, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 115, + 115, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 0, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 0.833, + 0.833, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 6, + "s": [ + 146, + 126, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 12, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 22, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 25, + "s": [ + 104, + 96, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 27.4, + "s": [ + 96, + 104, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 29.801, + "s": [ + 104, + 96, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 32.199, + "s": [ + 96, + 104, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 34.6, + "s": [ + 104, + 96, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 37, + "s": [ + 104, + 96, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 39.4, + "s": [ + 96, + 104, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 41.801, + "s": [ + 104, + 96, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 44.199, + "s": [ + 96, + 104, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 46.6, + "s": [ + 104, + 96, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 49, + "s": [ + 96, + 104, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 51.4, + "s": [ + 104, + 96, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 54, + "s": [ + 96, + 104, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 57, + "s": [ + 104, + 96, + 100 + ] + }, + { + "t": 69, + "s": [ + 100, + 100, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 7, + "ty": 4, + "nm": "line 3", + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 230.383, + 157, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -25.617, + -99, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 0, + "k": [ + 100, + 100, + 100 + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [ + -24.406, + 0.601 + ], + [ + -1.935, + -89.301 + ] + ], + "o": [ + [ + 42.692, + -1.051 + ], + [ + 1.818, + 83.915 + ] + ], + "v": [ + [ + -0.692, + 7.051 + ], + [ + 92.935, + 134.301 + ] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 62, + "s": [ + 0 + ] + }, + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 69, + "s": [ + 0 + ] + }, + { + "t": 72, + "s": [ + 20 + ] + } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 62, + "s": [ + 0 + ] + }, + { + "t": 64, + "s": [ + 22 + ] + } + ], + "ix": 2 + }, + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 62, + "s": [ + 0 + ] + }, + { + "t": 74, + "s": [ + 255 + ] + } + ], + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [ + 1, + 1, + 1, + 1 + ], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 72, + "s": [ + 24 + ] + }, + { + "t": 75, + "s": [ + 0 + ] + } + ], + "ix": 5 + }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "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": 4, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 8, + "ty": 4, + "nm": "line 2", + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 230.383, + 157, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -25.617, + -99, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 0, + "k": [ + 100, + 100, + 100 + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [ + 16.748, + 17.763 + ], + [ + 86, + 15 + ] + ], + "o": [ + [ + -33, + -35 + ], + [ + -82.686, + -14.422 + ] + ], + "v": [ + [ + -5, + 0 + ], + [ + -160, + -89 + ] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 57, + "s": [ + 0 + ] + }, + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 70, + "s": [ + 0 + ] + }, + { + "t": 72, + "s": [ + 12 + ] + } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 57, + "s": [ + 0 + ] + }, + { + "t": 60, + "s": [ + 13 + ] + } + ], + "ix": 2 + }, + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 57, + "s": [ + 0 + ] + }, + { + "t": 73, + "s": [ + 284 + ] + } + ], + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [ + 1, + 1, + 1, + 1 + ], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 71, + "s": [ + 24 + ] + }, + { + "t": 74, + "s": [ + 0 + ] + } + ], + "ix": 5 + }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "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": 4, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 9, + "ty": 4, + "nm": "line", + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 230.383, + 157, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + -25.617, + -99, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 0, + "k": [ + 100, + 100, + 100 + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [ + 16.79, + 17.723 + ], + [ + -9, + 44 + ] + ], + "o": [ + [ + -18, + -19 + ], + [ + 16.82, + -82.232 + ] + ], + "v": [ + [ + -5, + 0 + ], + [ + -34, + -138 + ] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 59, + "s": [ + 0 + ] + }, + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 67, + "s": [ + 1 + ] + }, + { + "t": 70, + "s": [ + 5 + ] + } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 59, + "s": [ + 0 + ] + }, + { + "t": 62, + "s": [ + 6 + ] + } + ], + "ix": 2 + }, + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 59, + "s": [ + 0 + ] + }, + { + "t": 72, + "s": [ + 338 + ] + } + ], + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [ + 1, + 1, + 1, + 1 + ], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 69, + "s": [ + 24 + ] + }, + { + "t": 72, + "s": [ + 0 + ] + } + ], + "ix": 5 + }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "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": 4, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 10, + "ty": 4, + "nm": "middle_line 3", + "parent": 6, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": -45, + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.7, + "y": 0 + }, + "t": 57, + "s": [ + 113.439, + 117.591, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "t": 69, + "s": [ + 113.439, + 149.411, + 0 + ] + } + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 0, + 0, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 0, + "k": [ + 502.494, + 492.543, + 100 + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.74, + "y": 0 + }, + "t": 0, + "s": [ + { + "i": [ + [ + -1.107, + -1.107 + ], + [ + 1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + 1.107 + ], + [ + -1.107, + 1.107 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 1.107, + 1.107 + ], + [ + 0, + 0 + ], + [ + -1.107, + 1.107 + ], + [ + -1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + -1.107 + ] + ], + "v": [ + [ + 6.413, + -6.413 + ], + [ + 6.413, + -2.404 + ], + [ + -2.404, + 6.413 + ], + [ + -6.413, + 6.413 + ], + [ + -6.413, + 2.404 + ], + [ + 2.404, + -6.413 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.7, + "y": 0 + }, + "t": 6, + "s": [ + { + "i": [ + [ + -1.107, + -1.107 + ], + [ + 1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + 1.107 + ], + [ + -1.107, + 1.107 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 1.107, + 1.107 + ], + [ + 0, + 0 + ], + [ + -1.107, + 1.107 + ], + [ + -1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + -1.107 + ] + ], + "v": [ + [ + 2.105, + -2.091 + ], + [ + 2.105, + 1.918 + ], + [ + 1.904, + 2.091 + ], + [ + -2.105, + 2.091 + ], + [ + -2.105, + -1.918 + ], + [ + -1.904, + -2.091 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 22, + "s": [ + { + "i": [ + [ + -1.107, + -1.107 + ], + [ + 1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + 1.107 + ], + [ + -1.107, + 1.107 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 1.107, + 1.107 + ], + [ + 0, + 0 + ], + [ + -1.107, + 1.107 + ], + [ + -1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + -1.107 + ] + ], + "v": [ + [ + 8.413, + -8.413 + ], + [ + 8.413, + -4.404 + ], + [ + -4.404, + 8.413 + ], + [ + -8.413, + 8.413 + ], + [ + -8.413, + 4.404 + ], + [ + 4.404, + -8.413 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 27, + "s": [ + { + "i": [ + [ + -0.921, + -1.266 + ], + [ + 1.249, + -1.022 + ], + [ + 3.761, + -2.416 + ], + [ + 0.963, + 1.234 + ], + [ + -1.169, + 0.834 + ], + [ + -4.684, + 3.374 + ] + ], + "o": [ + [ + 0.921, + 1.266 + ], + [ + -4.222, + 3.455 + ], + [ + -0.991, + 0.637 + ], + [ + -0.963, + -1.234 + ], + [ + 3.446, + -2.461 + ], + [ + 1.441, + -1.038 + ] + ], + "v": [ + [ + 9.392, + -8.334 + ], + [ + 8.766, + -4.374 + ], + [ + -5.379, + 8.957 + ], + [ + -9.358, + 8.466 + ], + [ + -8.867, + 4.487 + ], + [ + 5.432, + -8.959 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 32, + "s": [ + { + "i": [ + [ + -1.315, + -0.85 + ], + [ + 0.731, + -1.439 + ], + [ + 2.23, + -4.137 + ], + [ + 1.316, + 0.848 + ], + [ + -0.752, + 1.223 + ], + [ + -2.455, + 4.91 + ] + ], + "o": [ + [ + 1.315, + 0.85 + ], + [ + -2.98, + 5.864 + ], + [ + -0.559, + 1.037 + ], + [ + -1.316, + -0.848 + ], + [ + 2.454, + -3.993 + ], + [ + 0.794, + -1.589 + ] + ], + "v": [ + [ + 8.285, + -10.161 + ], + [ + 9.127, + -6.242 + ], + [ + -3.759, + 9.74 + ], + [ + -7.677, + 10.588 + ], + [ + -8.525, + 6.669 + ], + [ + 4.365, + -9.319 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 37, + "s": [ + { + "i": [ + [ + -0.921, + -1.266 + ], + [ + 1.249, + -1.022 + ], + [ + 3.761, + -2.416 + ], + [ + 0.963, + 1.234 + ], + [ + -1.169, + 0.834 + ], + [ + -4.684, + 3.374 + ] + ], + "o": [ + [ + 0.921, + 1.266 + ], + [ + -4.222, + 3.455 + ], + [ + -0.991, + 0.637 + ], + [ + -0.963, + -1.234 + ], + [ + 3.446, + -2.461 + ], + [ + 1.441, + -1.038 + ] + ], + "v": [ + [ + 10.428, + -9.391 + ], + [ + 9.803, + -5.431 + ], + [ + -6.914, + 10.034 + ], + [ + -10.893, + 9.544 + ], + [ + -10.402, + 5.564 + ], + [ + 6.468, + -10.017 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 42, + "s": [ + { + "i": [ + [ + -1.315, + -0.85 + ], + [ + 0.731, + -1.439 + ], + [ + 2.23, + -4.137 + ], + [ + 1.316, + 0.848 + ], + [ + -0.752, + 1.223 + ], + [ + -2.455, + 4.91 + ] + ], + "o": [ + [ + 1.315, + 0.85 + ], + [ + -2.98, + 5.864 + ], + [ + -0.559, + 1.037 + ], + [ + -1.316, + -0.848 + ], + [ + 2.454, + -3.993 + ], + [ + 0.794, + -1.589 + ] + ], + "v": [ + [ + 9.242, + -11.137 + ], + [ + 10.084, + -7.218 + ], + [ + -4.716, + 10.716 + ], + [ + -8.634, + 11.564 + ], + [ + -9.482, + 7.645 + ], + [ + 5.322, + -10.295 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 47, + "s": [ + { + "i": [ + [ + -0.921, + -1.266 + ], + [ + 1.249, + -1.022 + ], + [ + 3.761, + -2.416 + ], + [ + 0.963, + 1.234 + ], + [ + -1.169, + 0.834 + ], + [ + -4.684, + 3.374 + ] + ], + "o": [ + [ + 0.921, + 1.266 + ], + [ + -4.222, + 3.455 + ], + [ + -0.991, + 0.637 + ], + [ + -0.963, + -1.234 + ], + [ + 3.446, + -2.461 + ], + [ + 1.441, + -1.038 + ] + ], + "v": [ + [ + 11.465, + -10.449 + ], + [ + 10.84, + -6.489 + ], + [ + -7.452, + 11.071 + ], + [ + -11.431, + 10.581 + ], + [ + -10.94, + 6.602 + ], + [ + 7.505, + -11.074 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 52, + "s": [ + { + "i": [ + [ + -1.315, + -0.85 + ], + [ + 0.731, + -1.439 + ], + [ + 2.23, + -4.137 + ], + [ + 1.316, + 0.848 + ], + [ + -0.752, + 1.223 + ], + [ + -2.455, + 4.91 + ] + ], + "o": [ + [ + 1.315, + 0.85 + ], + [ + -2.98, + 5.864 + ], + [ + -0.559, + 1.037 + ], + [ + -1.316, + -0.848 + ], + [ + 2.454, + -3.993 + ], + [ + 0.794, + -1.589 + ] + ], + "v": [ + [ + 10.198, + -12.113 + ], + [ + 11.041, + -8.194 + ], + [ + -5.672, + 11.692 + ], + [ + -9.591, + 12.54 + ], + [ + -10.439, + 8.622 + ], + [ + 6.279, + -11.271 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 57, + "s": [ + { + "i": [ + [ + -1.107, + -1.107 + ], + [ + 1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + 1.107 + ], + [ + -1.107, + 1.107 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 1.107, + 1.107 + ], + [ + 0, + 0 + ], + [ + -1.107, + 1.107 + ], + [ + -1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + -1.107 + ] + ], + "v": [ + [ + 3.749, + -3.655 + ], + [ + 3.749, + 0.355 + ], + [ + -6.339, + 10.387 + ], + [ + -10.348, + 10.387 + ], + [ + -10.348, + 6.378 + ], + [ + -0.26, + -3.655 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 64, + "s": [ + { + "i": [ + [ + -1.107, + -1.107 + ], + [ + 1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + 1.107 + ], + [ + -1.107, + 1.107 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 1.107, + 1.107 + ], + [ + 0, + 0 + ], + [ + -1.107, + 1.107 + ], + [ + -1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + -1.107 + ] + ], + "v": [ + [ + -6.616, + 6.92 + ], + [ + -6.616, + 10.929 + ], + [ + -8.032, + 12.114 + ], + [ + -12.041, + 12.114 + ], + [ + -12.041, + 8.105 + ], + [ + -10.625, + 6.92 + ] + ], + "c": true + } + ] + }, + { + "t": 73, + "s": [ + { + "i": [ + [ + -0.006, + -0.006 + ], + [ + 0.006, + -0.006 + ], + [ + 0, + 0 + ], + [ + 0.006, + 0.006 + ], + [ + -0.006, + 0.006 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0.006, + 0.006 + ], + [ + 0, + 0 + ], + [ + -0.006, + 0.006 + ], + [ + -0.006, + -0.006 + ], + [ + 0, + 0 + ], + [ + 0.006, + -0.006 + ] + ], + "v": [ + [ + -9.314, + 9.503 + ], + [ + -9.314, + 9.524 + ], + [ + -9.322, + 9.531 + ], + [ + -9.343, + 9.531 + ], + [ + -9.343, + 9.51 + ], + [ + -9.335, + 9.503 + ] + ], + "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, + "bm": 0, + "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": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 57, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 11, + "ty": 4, + "nm": "middle_line 2", + "parent": 6, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": -45, + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.7, + "y": 0 + }, + "t": 57, + "s": [ + 113.439, + 117.591, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "t": 69, + "s": [ + 113.439, + 85.772, + 0 + ] + } + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 0, + 0, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 0, + "k": [ + 502.494, + 492.543, + 100 + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.74, + "y": 0 + }, + "t": 0, + "s": [ + { + "i": [ + [ + -1.107, + -1.107 + ], + [ + 1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + 1.107 + ], + [ + -1.107, + 1.107 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 1.107, + 1.107 + ], + [ + 0, + 0 + ], + [ + -1.107, + 1.107 + ], + [ + -1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + -1.107 + ] + ], + "v": [ + [ + 6.413, + -6.413 + ], + [ + 6.413, + -2.404 + ], + [ + -2.404, + 6.413 + ], + [ + -6.413, + 6.413 + ], + [ + -6.413, + 2.404 + ], + [ + 2.404, + -6.413 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.7, + "y": 0 + }, + "t": 6, + "s": [ + { + "i": [ + [ + -1.107, + -1.107 + ], + [ + 1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + 1.107 + ], + [ + -1.107, + 1.107 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 1.107, + 1.107 + ], + [ + 0, + 0 + ], + [ + -1.107, + 1.107 + ], + [ + -1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + -1.107 + ] + ], + "v": [ + [ + 2.105, + -2.091 + ], + [ + 2.105, + 1.918 + ], + [ + 1.904, + 2.091 + ], + [ + -2.105, + 2.091 + ], + [ + -2.105, + -1.918 + ], + [ + -1.904, + -2.091 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 22, + "s": [ + { + "i": [ + [ + -1.107, + -1.107 + ], + [ + 1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + 1.107 + ], + [ + -1.107, + 1.107 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 1.107, + 1.107 + ], + [ + 0, + 0 + ], + [ + -1.107, + 1.107 + ], + [ + -1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + -1.107 + ] + ], + "v": [ + [ + 8.413, + -8.413 + ], + [ + 8.413, + -4.404 + ], + [ + -4.404, + 8.413 + ], + [ + -8.413, + 8.413 + ], + [ + -8.413, + 4.404 + ], + [ + 4.404, + -8.413 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 27, + "s": [ + { + "i": [ + [ + -0.921, + -1.266 + ], + [ + 1.249, + -1.022 + ], + [ + 3.761, + -2.416 + ], + [ + 0.963, + 1.234 + ], + [ + -1.169, + 0.834 + ], + [ + -4.684, + 3.374 + ] + ], + "o": [ + [ + 0.921, + 1.266 + ], + [ + -4.222, + 3.455 + ], + [ + -0.991, + 0.637 + ], + [ + -0.963, + -1.234 + ], + [ + 3.446, + -2.461 + ], + [ + 1.441, + -1.038 + ] + ], + "v": [ + [ + 9.392, + -8.334 + ], + [ + 8.766, + -4.374 + ], + [ + -5.379, + 8.957 + ], + [ + -9.358, + 8.466 + ], + [ + -8.867, + 4.487 + ], + [ + 5.432, + -8.959 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 32, + "s": [ + { + "i": [ + [ + -1.315, + -0.85 + ], + [ + 0.731, + -1.439 + ], + [ + 2.23, + -4.137 + ], + [ + 1.316, + 0.848 + ], + [ + -0.752, + 1.223 + ], + [ + -2.455, + 4.91 + ] + ], + "o": [ + [ + 1.315, + 0.85 + ], + [ + -2.98, + 5.864 + ], + [ + -0.559, + 1.037 + ], + [ + -1.316, + -0.848 + ], + [ + 2.454, + -3.993 + ], + [ + 0.794, + -1.589 + ] + ], + "v": [ + [ + 8.285, + -10.161 + ], + [ + 9.127, + -6.242 + ], + [ + -3.759, + 9.74 + ], + [ + -7.677, + 10.588 + ], + [ + -8.525, + 6.669 + ], + [ + 4.365, + -9.319 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 37, + "s": [ + { + "i": [ + [ + -0.921, + -1.266 + ], + [ + 1.249, + -1.022 + ], + [ + 3.761, + -2.416 + ], + [ + 0.963, + 1.234 + ], + [ + -1.169, + 0.834 + ], + [ + -4.684, + 3.374 + ] + ], + "o": [ + [ + 0.921, + 1.266 + ], + [ + -4.222, + 3.455 + ], + [ + -0.991, + 0.637 + ], + [ + -0.963, + -1.234 + ], + [ + 3.446, + -2.461 + ], + [ + 1.441, + -1.038 + ] + ], + "v": [ + [ + 10.428, + -9.391 + ], + [ + 9.803, + -5.431 + ], + [ + -6.914, + 10.034 + ], + [ + -10.893, + 9.544 + ], + [ + -10.402, + 5.564 + ], + [ + 6.468, + -10.017 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 42, + "s": [ + { + "i": [ + [ + -1.315, + -0.85 + ], + [ + 0.731, + -1.439 + ], + [ + 2.23, + -4.137 + ], + [ + 1.316, + 0.848 + ], + [ + -0.752, + 1.223 + ], + [ + -2.455, + 4.91 + ] + ], + "o": [ + [ + 1.315, + 0.85 + ], + [ + -2.98, + 5.864 + ], + [ + -0.559, + 1.037 + ], + [ + -1.316, + -0.848 + ], + [ + 2.454, + -3.993 + ], + [ + 0.794, + -1.589 + ] + ], + "v": [ + [ + 9.242, + -11.137 + ], + [ + 10.084, + -7.218 + ], + [ + -4.716, + 10.716 + ], + [ + -8.634, + 11.564 + ], + [ + -9.482, + 7.645 + ], + [ + 5.322, + -10.295 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 47, + "s": [ + { + "i": [ + [ + -0.921, + -1.266 + ], + [ + 1.249, + -1.022 + ], + [ + 3.761, + -2.416 + ], + [ + 0.963, + 1.234 + ], + [ + -1.169, + 0.834 + ], + [ + -4.684, + 3.374 + ] + ], + "o": [ + [ + 0.921, + 1.266 + ], + [ + -4.222, + 3.455 + ], + [ + -0.991, + 0.637 + ], + [ + -0.963, + -1.234 + ], + [ + 3.446, + -2.461 + ], + [ + 1.441, + -1.038 + ] + ], + "v": [ + [ + 11.465, + -10.449 + ], + [ + 10.84, + -6.489 + ], + [ + -7.452, + 11.071 + ], + [ + -11.431, + 10.581 + ], + [ + -10.94, + 6.602 + ], + [ + 7.505, + -11.074 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 52, + "s": [ + { + "i": [ + [ + -1.315, + -0.85 + ], + [ + 0.731, + -1.439 + ], + [ + 2.23, + -4.137 + ], + [ + 1.316, + 0.848 + ], + [ + -0.752, + 1.223 + ], + [ + -2.455, + 4.91 + ] + ], + "o": [ + [ + 1.315, + 0.85 + ], + [ + -2.98, + 5.864 + ], + [ + -0.559, + 1.037 + ], + [ + -1.316, + -0.848 + ], + [ + 2.454, + -3.993 + ], + [ + 0.794, + -1.589 + ] + ], + "v": [ + [ + 10.198, + -12.113 + ], + [ + 11.041, + -8.194 + ], + [ + -5.672, + 11.692 + ], + [ + -9.591, + 12.54 + ], + [ + -10.439, + 8.622 + ], + [ + 6.279, + -11.271 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 57, + "s": [ + { + "i": [ + [ + -1.107, + -1.107 + ], + [ + 1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + 1.107 + ], + [ + -1.107, + 1.107 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 1.107, + 1.107 + ], + [ + 0, + 0 + ], + [ + -1.107, + 1.107 + ], + [ + -1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + -1.107 + ] + ], + "v": [ + [ + 10.348, + -10.387 + ], + [ + 10.348, + -6.378 + ], + [ + 0.26, + 3.655 + ], + [ + -3.749, + 3.655 + ], + [ + -3.749, + -0.355 + ], + [ + 6.339, + -10.387 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 64, + "s": [ + { + "i": [ + [ + -1.107, + -1.107 + ], + [ + 1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + 1.107 + ], + [ + -1.107, + 1.107 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 1.107, + 1.107 + ], + [ + 0, + 0 + ], + [ + -1.107, + 1.107 + ], + [ + -1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + -1.107 + ] + ], + "v": [ + [ + 12.041, + -12.114 + ], + [ + 12.041, + -8.105 + ], + [ + 10.625, + -6.92 + ], + [ + 6.616, + -6.92 + ], + [ + 6.616, + -10.929 + ], + [ + 8.032, + -12.114 + ] + ], + "c": true + } + ] + }, + { + "t": 73, + "s": [ + { + "i": [ + [ + -0.001, + -0.001 + ], + [ + 0.001, + -0.001 + ], + [ + 0, + 0 + ], + [ + 0.001, + 0.001 + ], + [ + -0.001, + 0.001 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0.001, + 0.001 + ], + [ + 0, + 0 + ], + [ + -0.001, + 0.001 + ], + [ + -0.001, + -0.001 + ], + [ + 0, + 0 + ], + [ + 0.001, + -0.001 + ] + ], + "v": [ + [ + 9.331, + -9.52 + ], + [ + 9.331, + -9.516 + ], + [ + 9.33, + -9.514 + ], + [ + 9.326, + -9.514 + ], + [ + 9.326, + -9.518 + ], + [ + 9.327, + -9.52 + ] + ], + "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, + "bm": 0, + "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": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 57, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 12, + "ty": 4, + "nm": "middle_line", + "parent": 6, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": -45, + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 113.439, + 117.591, + 0 + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 0, + 0, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 0, + "k": [ + 502.494, + 492.543, + 100 + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.74, + "y": 0 + }, + "t": 0, + "s": [ + { + "i": [ + [ + -1.107, + -1.107 + ], + [ + 1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + 1.107 + ], + [ + -1.107, + 1.107 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 1.107, + 1.107 + ], + [ + 0, + 0 + ], + [ + -1.107, + 1.107 + ], + [ + -1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + -1.107 + ] + ], + "v": [ + [ + 6.413, + -6.413 + ], + [ + 6.413, + -2.404 + ], + [ + -2.404, + 6.413 + ], + [ + -6.413, + 6.413 + ], + [ + -6.413, + 2.404 + ], + [ + 2.404, + -6.413 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.7, + "y": 0 + }, + "t": 6, + "s": [ + { + "i": [ + [ + -1.107, + -1.107 + ], + [ + 1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + 1.107 + ], + [ + -1.107, + 1.107 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 1.107, + 1.107 + ], + [ + 0, + 0 + ], + [ + -1.107, + 1.107 + ], + [ + -1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + -1.107 + ] + ], + "v": [ + [ + 2.105, + -2.091 + ], + [ + 2.105, + 1.918 + ], + [ + 1.904, + 2.091 + ], + [ + -2.105, + 2.091 + ], + [ + -2.105, + -1.918 + ], + [ + -1.904, + -2.091 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 22, + "s": [ + { + "i": [ + [ + -1.107, + -1.107 + ], + [ + 1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + 1.107 + ], + [ + -1.107, + 1.107 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 1.107, + 1.107 + ], + [ + 0, + 0 + ], + [ + -1.107, + 1.107 + ], + [ + -1.107, + -1.107 + ], + [ + 0, + 0 + ], + [ + 1.107, + -1.107 + ] + ], + "v": [ + [ + 8.413, + -8.413 + ], + [ + 8.413, + -4.404 + ], + [ + -4.404, + 8.413 + ], + [ + -8.413, + 8.413 + ], + [ + -8.413, + 4.404 + ], + [ + 4.404, + -8.413 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 27, + "s": [ + { + "i": [ + [ + -0.921, + -1.266 + ], + [ + 1.249, + -1.022 + ], + [ + 3.761, + -2.416 + ], + [ + 0.963, + 1.234 + ], + [ + -1.169, + 0.834 + ], + [ + -4.684, + 3.374 + ] + ], + "o": [ + [ + 0.921, + 1.266 + ], + [ + -4.222, + 3.455 + ], + [ + -0.991, + 0.637 + ], + [ + -0.963, + -1.234 + ], + [ + 3.446, + -2.461 + ], + [ + 1.441, + -1.038 + ] + ], + "v": [ + [ + 9.392, + -8.334 + ], + [ + 8.766, + -4.374 + ], + [ + -5.379, + 8.957 + ], + [ + -9.358, + 8.466 + ], + [ + -8.867, + 4.487 + ], + [ + 5.432, + -8.959 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 32, + "s": [ + { + "i": [ + [ + -1.233, + -0.965 + ], + [ + 0.858, + -1.367 + ], + [ + 2.532, + -3.96 + ], + [ + 1.25, + 0.943 + ], + [ + -0.841, + 1.164 + ], + [ + -2.888, + 4.669 + ] + ], + "o": [ + [ + 1.233, + 0.965 + ], + [ + -3.497, + 5.571 + ], + [ + -0.635, + 0.993 + ], + [ + -1.25, + -0.943 + ], + [ + 2.744, + -3.799 + ], + [ + 0.934, + -1.511 + ] + ], + "v": [ + [ + 8.678, + -9.927 + ], + [ + 9.164, + -5.947 + ], + [ + -3.963, + 9.855 + ], + [ + -7.934, + 10.409 + ], + [ + -8.488, + 6.438 + ], + [ + 4.698, + -9.441 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 37, + "s": [ + { + "i": [ + [ + -0.921, + -1.266 + ], + [ + 1.249, + -1.022 + ], + [ + 3.761, + -2.416 + ], + [ + 0.963, + 1.234 + ], + [ + -1.169, + 0.834 + ], + [ + -4.684, + 3.374 + ] + ], + "o": [ + [ + 0.921, + 1.266 + ], + [ + -4.222, + 3.455 + ], + [ + -0.991, + 0.637 + ], + [ + -0.963, + -1.234 + ], + [ + 3.446, + -2.461 + ], + [ + 1.441, + -1.038 + ] + ], + "v": [ + [ + 9.392, + -8.334 + ], + [ + 8.766, + -4.374 + ], + [ + -5.379, + 8.957 + ], + [ + -9.358, + 8.466 + ], + [ + -8.867, + 4.487 + ], + [ + 5.432, + -8.959 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 42, + "s": [ + { + "i": [ + [ + -1.233, + -0.965 + ], + [ + 0.858, + -1.367 + ], + [ + 2.532, + -3.96 + ], + [ + 1.25, + 0.943 + ], + [ + -0.841, + 1.164 + ], + [ + -2.888, + 4.669 + ] + ], + "o": [ + [ + 1.233, + 0.965 + ], + [ + -3.497, + 5.571 + ], + [ + -0.635, + 0.993 + ], + [ + -1.25, + -0.943 + ], + [ + 2.744, + -3.799 + ], + [ + 0.934, + -1.511 + ] + ], + "v": [ + [ + 8.678, + -9.927 + ], + [ + 9.164, + -5.947 + ], + [ + -3.963, + 9.855 + ], + [ + -7.934, + 10.409 + ], + [ + -8.488, + 6.438 + ], + [ + 4.698, + -9.441 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 47, + "s": [ + { + "i": [ + [ + -0.921, + -1.266 + ], + [ + 1.249, + -1.022 + ], + [ + 3.761, + -2.416 + ], + [ + 0.963, + 1.234 + ], + [ + -1.169, + 0.834 + ], + [ + -4.684, + 3.374 + ] + ], + "o": [ + [ + 0.921, + 1.266 + ], + [ + -4.222, + 3.455 + ], + [ + -0.991, + 0.637 + ], + [ + -0.963, + -1.234 + ], + [ + 3.446, + -2.461 + ], + [ + 1.441, + -1.038 + ] + ], + "v": [ + [ + 9.392, + -8.334 + ], + [ + 8.766, + -4.374 + ], + [ + -5.379, + 8.957 + ], + [ + -9.358, + 8.466 + ], + [ + -8.867, + 4.487 + ], + [ + 5.432, + -8.959 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 52, + "s": [ + { + "i": [ + [ + -1.233, + -0.965 + ], + [ + 0.858, + -1.367 + ], + [ + 2.532, + -3.96 + ], + [ + 1.25, + 0.943 + ], + [ + -0.841, + 1.164 + ], + [ + -2.888, + 4.669 + ] + ], + "o": [ + [ + 1.233, + 0.965 + ], + [ + -3.497, + 5.571 + ], + [ + -0.635, + 0.993 + ], + [ + -1.25, + -0.943 + ], + [ + 2.744, + -3.799 + ], + [ + 0.934, + -1.511 + ] + ], + "v": [ + [ + 8.678, + -9.927 + ], + [ + 9.164, + -5.947 + ], + [ + -3.963, + 9.855 + ], + [ + -7.934, + 10.409 + ], + [ + -8.488, + 6.438 + ], + [ + 4.698, + -9.441 + ] + ], + "c": true + } + ] + }, + { + "t": 57, + "s": [ + { + "i": [ + [ + -0.921, + -1.266 + ], + [ + 1.249, + -1.022 + ], + [ + 3.761, + -2.416 + ], + [ + 0.963, + 1.234 + ], + [ + -1.169, + 0.834 + ], + [ + -4.684, + 3.374 + ] + ], + "o": [ + [ + 0.921, + 1.266 + ], + [ + -4.222, + 3.455 + ], + [ + -0.991, + 0.637 + ], + [ + -0.963, + -1.234 + ], + [ + 3.446, + -2.461 + ], + [ + 1.441, + -1.038 + ] + ], + "v": [ + [ + 11.084, + -10.061 + ], + [ + 10.459, + -6.1 + ], + [ + -7.072, + 10.683 + ], + [ + -11.051, + 10.193 + ], + [ + -10.56, + 6.213 + ], + [ + 7.124, + -10.686 + ] + ], + "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, + "bm": 0, + "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": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 58, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 13, + "ty": 3, + "nm": "top 3", + "parent": 2, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 0, + "ix": 11 + }, + "r": { + "a": 0, + "k": 180, + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 22, + "s": [ + 115.214, + 199.853, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 57, + "s": [ + 115.214, + 201.454, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.19, + "y": 1 + }, + "o": { + "x": 0.81, + "y": 0 + }, + "t": 71, + "s": [ + 115.214, + 256.421, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "t": 83, + "s": [ + 115.214, + 199.853, + 0 + ] + } + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 115, + 115, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.3, + 0.3, + 0.3 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 0, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 0.833, + 0.833, + 1 + ] + }, + "o": { + "x": [ + 0.7, + 0.7, + 0.7 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 6, + "s": [ + 106, + 94, + 100 + ] + }, + { + "i": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0.167, + 0.167, + 0 + ] + }, + "t": 17, + "s": [ + 95, + 105, + 100 + ] + }, + { + "i": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 27, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 32, + "s": [ + 96, + 104, + 100 + ] + }, + { + "i": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 37, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 42, + "s": [ + 96, + 104, + 100 + ] + }, + { + "i": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 47, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 52, + "s": [ + 96, + 104, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 0.833, + 0.833, + 1 + ] + }, + "o": { + "x": [ + 0.5, + 0.5, + 0.5 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 57, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0.167, + 0.167, + 0 + ] + }, + "t": 60, + "s": [ + 95, + 105, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 64, + "s": [ + 109, + 90, + 100 + ] + }, + { + "i": { + "x": [ + 0.833, + 0.833, + 0.833 + ], + "y": [ + 0.833, + 0.833, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 73, + "s": [ + 100, + 100, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.167, + 0.167, + 0.167 + ], + "y": [ + 0.167, + 0.167, + 0 + ] + }, + "t": 78, + "s": [ + 95, + 105, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 83, + "s": [ + 109, + 90, + 100 + ] + }, + { + "i": { + "x": [ + 0.667, + 0.667, + 0.667 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.333, + 0.333, + 0.333 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 95, + "s": [ + 92, + 108, + 100 + ] + }, + { + "t": 105, + "s": [ + 100, + 100, + 100 + ] + } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 14, + "ty": 4, + "nm": "top 2", + "parent": 13, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.2 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.74 + ], + "y": [ + 0 + ] + }, + "t": 0, + "s": [ + -45 + ] + }, + { + "i": { + "x": [ + 0.11 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0 + ] + }, + "t": 6, + "s": [ + -45 + ] + }, + { + "t": 83, + "s": [ + -45 + ] + } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.74, + "y": 0 + }, + "t": 0, + "s": [ + 114.786, + 145.351, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.7, + "y": 0 + }, + "t": 6, + "s": [ + 114.786, + 181.158, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 27, + "s": [ + 114.786, + 116.726, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.08, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 57, + "s": [ + 114.786, + 102.925, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.9, + "y": 0 + }, + "t": 69, + "s": [ + 114.786, + 150.274, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.9, + "y": 0 + }, + "t": 73, + "s": [ + 114.786, + 150.274, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.18, + "y": 1 + }, + "o": { + "x": 0.7, + "y": 0 + }, + "t": 83, + "s": [ + 114.786, + 181.158, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "t": 95, + "s": [ + 114.786, + 145.351, + 0 + ] + } + ], + "ix": 2, + "l": 2 + }, + "a": { + "a": 0, + "k": [ + 0, + 0, + 0 + ], + "ix": 1, + "l": 2 + }, + "s": { + "a": 0, + "k": [ + 500, + 500, + 100 + ], + "ix": 6, + "l": 2 + } + }, + "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.74, + "y": 0 + }, + "t": 0, + "s": [ + { + "i": [ + [ + -5.467, + -5.467 + ], + [ + 5.467, + -5.467 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + 3.28 + ], + [ + 3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 5.467, + 5.467 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + -3.28 + ], + [ + -3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.467, + -5.467 + ] + ], + "v": [ + [ + 9.242, + -9.242 + ], + [ + 9.242, + 10.557 + ], + [ + 7.277, + 12.522 + ], + [ + 3.317, + 12.522 + ], + [ + 3.317, + 8.562 + ], + [ + 3.317, + 8.562 + ], + [ + 5.17, + 6.71 + ], + [ + 5.17, + -5.17 + ], + [ + -6.71, + -5.17 + ], + [ + -8.562, + -3.317 + ], + [ + -12.522, + -3.317 + ], + [ + -12.522, + -7.277 + ], + [ + -12.522, + -7.277 + ], + [ + -10.557, + -9.242 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.2, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 3, + "s": [ + { + "i": [ + [ + -5.467, + -5.467 + ], + [ + 5.467, + -5.467 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + 3.28 + ], + [ + 3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 5.467, + 5.467 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + -3.28 + ], + [ + -3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.467, + -5.467 + ] + ], + "v": [ + [ + 12.242, + -12.242 + ], + [ + 12.242, + 7.557 + ], + [ + 8.463, + 11.336 + ], + [ + 4.503, + 11.336 + ], + [ + 4.503, + 7.376 + ], + [ + 4.444, + 7.435 + ], + [ + 8.17, + 3.71 + ], + [ + 8.17, + -8.17 + ], + [ + -3.71, + -8.17 + ], + [ + -7.376, + -4.503 + ], + [ + -11.336, + -4.503 + ], + [ + -11.336, + -8.463 + ], + [ + -11.336, + -8.463 + ], + [ + -7.557, + -12.242 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.7, + "y": 0 + }, + "t": 6, + "s": [ + { + "i": [ + [ + -5.467, + -5.467 + ], + [ + 5.467, + -5.467 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + 3.28 + ], + [ + 3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 5.467, + 5.467 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + -3.28 + ], + [ + -3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.467, + -5.467 + ] + ], + "v": [ + [ + 9.242, + -9.242 + ], + [ + 9.242, + 10.557 + ], + [ + 9.277, + 10.522 + ], + [ + 5.317, + 10.522 + ], + [ + 5.317, + 6.562 + ], + [ + 5.217, + 6.662 + ], + [ + 5.17, + 6.71 + ], + [ + 5.17, + -5.17 + ], + [ + -6.71, + -5.17 + ], + [ + -6.562, + -5.317 + ], + [ + -10.522, + -5.317 + ], + [ + -10.522, + -9.277 + ], + [ + -10.522, + -9.277 + ], + [ + -10.557, + -9.242 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 22, + "s": [ + { + "i": [ + [ + -5.527, + -5.05 + ], + [ + 5.094, + -5.487 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.316, + 3.03 + ], + [ + 3.056, + -3.292 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -3.423, + 3.454 + ] + ], + "o": [ + [ + 5.527, + 5.05 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.056, + -3.292 + ], + [ + -3.316, + -3.03 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.306, + -5.354 + ] + ], + "v": [ + [ + 7.204, + -8.896 + ], + [ + 8.036, + 10.132 + ], + [ + 3.277, + 16.522 + ], + [ + -0.683, + 16.522 + ], + [ + -0.683, + 12.562 + ], + [ + -0.683, + 12.562 + ], + [ + 3.881, + 6.637 + ], + [ + 3.411, + -4.81 + ], + [ + -8.088, + -4.391 + ], + [ + -12.562, + 0.683 + ], + [ + -16.522, + 0.683 + ], + [ + -16.522, + -3.277 + ], + [ + -16.522, + -3.277 + ], + [ + -12.028, + -8.105 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 27, + "s": [ + { + "i": [ + [ + -4.832, + -5.719 + ], + [ + 5.758, + -4.786 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.899, + 3.432 + ], + [ + 3.455, + -2.871 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -3.839, + 2.985 + ] + ], + "o": [ + [ + 4.832, + 5.719 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.455, + -2.871 + ], + [ + -2.899, + -3.432 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.951, + -4.626 + ] + ], + "v": [ + [ + 9.034, + -6.262 + ], + [ + 7.41, + 12.716 + ], + [ + 3.277, + 16.522 + ], + [ + -0.683, + 16.522 + ], + [ + -0.683, + 12.562 + ], + [ + -0.683, + 12.562 + ], + [ + 3.74, + 8.715 + ], + [ + 4.746, + -2.697 + ], + [ + -6.711, + -3.762 + ], + [ + -12.562, + 0.683 + ], + [ + -16.522, + 0.683 + ], + [ + -16.522, + -3.277 + ], + [ + -16.522, + -3.277 + ], + [ + -10.14, + -7.952 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 32, + "s": [ + { + "i": [ + [ + -6.111, + -4.326 + ], + [ + 4.375, + -6.076 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.666, + 2.596 + ], + [ + 2.625, + -3.646 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -2.969, + 3.852 + ] + ], + "o": [ + [ + 6.111, + 4.326 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.625, + -3.646 + ], + [ + -3.666, + -2.596 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 4.602, + -5.97 + ] + ], + "v": [ + [ + 5.498, + -11.003 + ], + [ + 8.681, + 7.776 + ], + [ + 3.277, + 16.522 + ], + [ + -0.683, + 16.522 + ], + [ + -0.683, + 12.562 + ], + [ + -0.683, + 12.562 + ], + [ + 4.126, + 4.823 + ], + [ + 2.24, + -6.478 + ], + [ + -9.119, + -4.637 + ], + [ + -12.562, + 0.683 + ], + [ + -16.522, + 0.683 + ], + [ + -16.522, + -3.277 + ], + [ + -16.522, + -3.277 + ], + [ + -13.488, + -7.834 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 37, + "s": [ + { + "i": [ + [ + -4.832, + -5.719 + ], + [ + 5.758, + -4.786 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.899, + 3.432 + ], + [ + 3.455, + -2.871 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -3.839, + 2.985 + ] + ], + "o": [ + [ + 4.832, + 5.719 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.455, + -2.871 + ], + [ + -2.899, + -3.432 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.951, + -4.626 + ] + ], + "v": [ + [ + 9.064, + -6.292 + ], + [ + 7.44, + 12.686 + ], + [ + 2.756, + 17.043 + ], + [ + -1.204, + 17.043 + ], + [ + -1.204, + 13.083 + ], + [ + -1.204, + 13.083 + ], + [ + 3.77, + 8.685 + ], + [ + 4.776, + -2.727 + ], + [ + -6.681, + -3.792 + ], + [ + -13.083, + 1.204 + ], + [ + -17.043, + 1.204 + ], + [ + -17.043, + -2.756 + ], + [ + -17.043, + -2.756 + ], + [ + -10.11, + -7.982 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 42, + "s": [ + { + "i": [ + [ + -6.111, + -4.326 + ], + [ + 4.375, + -6.076 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.666, + 2.596 + ], + [ + 2.625, + -3.646 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -2.969, + 3.852 + ] + ], + "o": [ + [ + 6.111, + 4.326 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.625, + -3.646 + ], + [ + -3.666, + -2.596 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 4.602, + -5.97 + ] + ], + "v": [ + [ + 5.508, + -11.013 + ], + [ + 8.692, + 7.765 + ], + [ + 2.334, + 17.465 + ], + [ + -1.626, + 17.465 + ], + [ + -1.626, + 13.506 + ], + [ + -1.626, + 13.506 + ], + [ + 4.136, + 4.812 + ], + [ + 2.25, + -6.488 + ], + [ + -9.108, + -4.648 + ], + [ + -13.506, + 1.626 + ], + [ + -17.465, + 1.626 + ], + [ + -17.465, + -2.334 + ], + [ + -17.465, + -2.334 + ], + [ + -13.477, + -7.845 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 47, + "s": [ + { + "i": [ + [ + -4.832, + -5.719 + ], + [ + 5.758, + -4.786 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.899, + 3.432 + ], + [ + 3.455, + -2.871 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -3.839, + 2.985 + ] + ], + "o": [ + [ + 4.832, + 5.719 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.455, + -2.871 + ], + [ + -2.899, + -3.432 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.951, + -4.626 + ] + ], + "v": [ + [ + 9.075, + -6.302 + ], + [ + 7.451, + 12.675 + ], + [ + 1.698, + 18.101 + ], + [ + -2.262, + 18.101 + ], + [ + -2.262, + 14.141 + ], + [ + -2.262, + 14.141 + ], + [ + 3.781, + 8.674 + ], + [ + 4.787, + -2.738 + ], + [ + -6.67, + -3.802 + ], + [ + -14.141, + 2.262 + ], + [ + -18.101, + 2.262 + ], + [ + -18.101, + -1.698 + ], + [ + -18.101, + -1.698 + ], + [ + -10.099, + -7.992 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 52, + "s": [ + { + "i": [ + [ + -6.111, + -4.326 + ], + [ + 4.375, + -6.076 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.666, + 2.596 + ], + [ + 2.625, + -3.646 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -2.969, + 3.852 + ] + ], + "o": [ + [ + 6.111, + 4.326 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.625, + -3.646 + ], + [ + -3.666, + -2.596 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 4.602, + -5.97 + ] + ], + "v": [ + [ + 5.519, + -11.024 + ], + [ + 8.702, + 7.755 + ], + [ + 1.875, + 17.924 + ], + [ + -2.085, + 17.924 + ], + [ + -2.085, + 13.964 + ], + [ + -2.085, + 13.964 + ], + [ + 4.147, + 4.802 + ], + [ + 2.261, + -6.499 + ], + [ + -9.098, + -4.658 + ], + [ + -13.964, + 2.085 + ], + [ + -17.924, + 2.085 + ], + [ + -17.924, + -1.875 + ], + [ + -17.924, + -1.875 + ], + [ + -13.467, + -7.855 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 57, + "s": [ + { + "i": [ + [ + -4.962, + -5.607 + ], + [ + 5.646, + -4.916 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.977, + 3.364 + ], + [ + 3.388, + -2.95 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -3.77, + 3.072 + ] + ], + "o": [ + [ + 4.962, + 5.607 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.388, + -2.95 + ], + [ + -2.977, + -3.364 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.843, + -4.762 + ] + ], + "v": [ + [ + 9.407, + -7.478 + ], + [ + 8.219, + 11.531 + ], + [ + 1.172, + 18.627 + ], + [ + -2.788, + 18.627 + ], + [ + -2.788, + 14.667 + ], + [ + -2.788, + 14.667 + ], + [ + 4.458, + 7.616 + ], + [ + 5.202, + -3.817 + ], + [ + -6.276, + -4.618 + ], + [ + -14.667, + 2.788 + ], + [ + -18.627, + 2.788 + ], + [ + -18.627, + -1.172 + ], + [ + -18.627, + -1.172 + ], + [ + -9.8, + -8.728 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 60, + "s": [ + { + "i": [ + [ + -5.363, + -5.496 + ], + [ + 5.504, + -5.354 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.218, + 3.298 + ], + [ + 3.303, + -3.212 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + -0.778, + 0.634 + ] + ], + "o": [ + [ + 5.363, + 5.496 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.303, + -3.212 + ], + [ + -3.218, + -3.298 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.545, + -5.322 + ] + ], + "v": [ + [ + 8.55, + -8.152 + ], + [ + 8.304, + 11.484 + ], + [ + 1.525, + 18.274 + ], + [ + -2.435, + 18.274 + ], + [ + -2.435, + 14.314 + ], + [ + 2.644, + 9.235 + ], + [ + 4.297, + 7.623 + ], + [ + 4.45, + -4.164 + ], + [ + -7.346, + -4.33 + ], + [ + -14.394, + 2.514 + ], + [ + -18.354, + 2.514 + ], + [ + -18.354, + -1.445 + ], + [ + -18.354, + -1.445 + ], + [ + -11.127, + -8.41 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 64, + "s": [ + { + "i": [ + [ + -5.467, + -5.467 + ], + [ + 5.467, + -5.467 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + 3.28 + ], + [ + 3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 5.467, + 5.467 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + -3.28 + ], + [ + -3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.467, + -5.467 + ] + ], + "v": [ + [ + 9.242, + -9.242 + ], + [ + 9.242, + 10.557 + ], + [ + 9.177, + 10.622 + ], + [ + 5.217, + 10.622 + ], + [ + 5.217, + 6.662 + ], + [ + 5.217, + 6.662 + ], + [ + 5.17, + 6.71 + ], + [ + 5.17, + -5.17 + ], + [ + -6.71, + -5.17 + ], + [ + -6.762, + -5.117 + ], + [ + -10.722, + -5.117 + ], + [ + -10.722, + -9.077 + ], + [ + -10.722, + -9.077 + ], + [ + -10.557, + -9.242 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.11, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 73, + "s": [ + { + "i": [ + [ + -5.467, + -5.467 + ], + [ + 5.467, + -5.467 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + 3.28 + ], + [ + 3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 5.467, + 5.467 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + -3.28 + ], + [ + -3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.467, + -5.467 + ] + ], + "v": [ + [ + 9.242, + -9.242 + ], + [ + 9.242, + 10.557 + ], + [ + 7.277, + 12.522 + ], + [ + 3.317, + 12.522 + ], + [ + 3.317, + 8.562 + ], + [ + 3.317, + 8.562 + ], + [ + 5.17, + 6.71 + ], + [ + 5.17, + -5.17 + ], + [ + -6.71, + -5.17 + ], + [ + -8.562, + -3.317 + ], + [ + -12.522, + -3.317 + ], + [ + -12.522, + -7.277 + ], + [ + -12.522, + -7.277 + ], + [ + -10.557, + -9.242 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.18, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0 + }, + "t": 83, + "s": [ + { + "i": [ + [ + -5.467, + -5.467 + ], + [ + 4.715, + -6.128 + ], + [ + 0, + 0 + ], + [ + 1.226, + 0.943 + ], + [ + -0.943, + 1.226 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + 3.28 + ], + [ + 3.833, + -2.613 + ], + [ + 0, + 0 + ], + [ + 0.871, + 1.278 + ], + [ + -1.278, + 0.871 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 5.467, + 5.467 + ], + [ + 0, + 0 + ], + [ + -0.943, + 1.226 + ], + [ + -1.226, + -0.943 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 2.829, + -3.677 + ], + [ + -3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -0.871, + -1.278 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 6.389, + -4.355 + ] + ], + "v": [ + [ + 9.242, + -9.242 + ], + [ + 11.012, + 11.937 + ], + [ + 11.042, + 11.898 + ], + [ + 7.116, + 12.409 + ], + [ + 6.604, + 8.482 + ], + [ + 6.518, + 8.594 + ], + [ + 6.477, + 8.648 + ], + [ + 5.17, + -5.17 + ], + [ + -8.899, + -6.47 + ], + [ + -7.938, + -6.693 + ], + [ + -12.617, + -7.323 + ], + [ + -11.881, + -11.214 + ], + [ + -11.881, + -11.214 + ], + [ + -11.922, + -11.186 + ] + ], + "c": true + } + ] + }, + { + "t": 95, + "s": [ + { + "i": [ + [ + -5.467, + -5.467 + ], + [ + 5.467, + -5.467 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + 3.28 + ], + [ + 3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + 1.093, + 1.093 + ], + [ + -1.093, + 1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 5.467, + 5.467 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 3.28, + -3.28 + ], + [ + -3.28, + -3.28 + ], + [ + 0, + 0 + ], + [ + -1.093, + 1.093 + ], + [ + -1.093, + -1.093 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 5.467, + -5.467 + ] + ], + "v": [ + [ + 9.242, + -9.242 + ], + [ + 9.242, + 10.557 + ], + [ + 7.277, + 12.522 + ], + [ + 3.317, + 12.522 + ], + [ + 3.317, + 8.562 + ], + [ + 3.317, + 8.562 + ], + [ + 5.17, + 6.71 + ], + [ + 5.17, + -5.17 + ], + [ + -6.71, + -5.17 + ], + [ + -8.562, + -3.317 + ], + [ + -12.522, + -3.317 + ], + [ + -12.522, + -7.277 + ], + [ + -12.522, + -7.277 + ], + [ + -10.557, + -9.242 + ] + ], + "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, + "bm": 0, + "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": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + } + ], + "markers": [] +} \ No newline at end of file diff --git a/TMessagesProj/src/main/res/raw/qr_code_logo.tgs b/TMessagesProj/src/main/res/raw/qr_code_logo.tgs new file mode 100644 index 000000000..5b92c8539 --- /dev/null +++ b/TMessagesProj/src/main/res/raw/qr_code_logo.tgs @@ -0,0 +1 @@ +{"layers": [{"ddd": 0, "ty": 3, "nm": "Null 2", "sr": 1, "ks": {"p": {"a": 1, "k": [{"t": 20, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [253.375, 252.125, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 24, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [260.5, 258.625, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 28, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [253.375, 252.125, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 33, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [260.5, 258.625, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 38, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [253.375, 252.125, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 42, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [260.5, 258.625, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 47, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [253.375, 252.125, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 51, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [260.5, 258.625, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 55, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [253.375, 252.125, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 60, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [260.5, 258.625, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 64, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [253.375, 252.125, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 69, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [260.5, 258.625, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 73, "s": [253.375, 252.125, 0]}]}, "o": {"k": 0, "a": 0}}, "ao": 0, "ip": 0, "op": 180, "st": 0, "bm": 0, "ind": 1}, {"ddd": 0, "ty": 3, "nm": "Null 1", "parent": 1, "sr": 1, "ks": {"p": {"a": 1, "k": [{"t": 20, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [-1, -22.5, 0], "ti": [8.25, -6.75, 0], "to": [11, -5.75, 0]}, {"t": 42.084, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [19, 1.25, 0], "ti": [5, 7, 0], "to": [-8.25, 6.75, 0]}, {"t": 52.684, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [0, 0, 0], "ti": [-11, 5.75, 0], "to": [-5, -7, 0]}, {"t": 73, "s": [-1, -22.5, 0]}]}, "o": {"k": 0, "a": 0}}, "ao": 0, "ip": 0, "op": 180, "st": 0, "bm": 0, "ind": 2}, {"ddd": 0, "ty": 4, "nm": "Plane", "parent": 2, "sr": 1, "ks": {"a": {"k": [12.637, 41.19, 0], "a": 0}, "p": {"a": 1, "k": [{"t": 20, "i": {"x": [0.69], "y": [0.452]}, "o": {"x": [0.31], "y": [0]}, "s": [13.035, 0.078, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 42, "i": {"x": [0.69], "y": [1]}, "o": {"x": [0.31], "y": [0.253]}, "s": [15.045, -3.387, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 68, "i": {"x": [0.69], "y": [1]}, "o": {"x": [0.31], "y": [0]}, "s": [10.025, 5.541, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 73, "s": [13.035, 0.078, 0]}]}, "r": {"k": [{"t": 22, "i": {"x": [0.69], "y": [1]}, "o": {"x": [0.31], "y": [0]}, "s": [-52]}, {"t": 47, "i": {"x": [0.69], "y": [1]}, "o": {"x": [0.31], "y": [0]}, "s": [-46]}, {"t": 73, "s": [-52]}], "a": 1}}, "ao": 0, "ip": 0, "op": 180, "st": 0, "bm": 0, "ind": 3, "shapes": [{"hd": false, "nm": "Group 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Path 1", "ty": "sh", "ks": {"k": [{"t": 20, "i": {"x": [0.5], "y": [1]}, "o": {"x": [0.5], "y": [0]}, "s": [{"c": true, "i": [[-9.785, -2.748], [0, 0], [10.073, -3.525], [0, 0], [2.014, 8.701], [0, 0], [-10.841, -0.565], [0, 0], [4.226, 0.677], [0, 0], [4.908, 4.225], [5.646, 8.06]], "o": [[0, 0], [10.58, 2.999], [0, 0], [-12.974, 4.687], [0, 0], [-0.722, -6.213], [0, 0], [4.378, 0.17], [0, 0], [-8.58, -1.284], [-8.728, -7.514], [-4.055, -5.788]], "v": [[-86.852, -21.107], [121.04, 37.828], [121.043, 49.217], [-1.939, 95.039], [-35.635, 89.169], [-66.913, 39.948], [-49.277, 27.303], [43.295, 34.291], [44.526, 30.201], [-61.21, 11.74], [-83.062, 5.284], [-99.928, -14.021]]}]}, {"t": 44.732, "i": {"x": [0.5], "y": [1]}, "o": {"x": [0.5], "y": [0]}, "s": [{"c": true, "i": [[-9.785, -5.623], [0, 0], [10.073, -7.212], [0, 0], [2.014, 17.803], [0, 0], [-10.841, -1.157], [0, 0], [4.225, 1.386], [0, 0], [4.908, 8.645], [4.363, 17.802]], "o": [[0, 0], [10.58, 6.137], [0, 0], [-12.974, 9.59], [0, 0], [1.88, -12.095], [0, 0], [4.378, 0.348], [0, 0], [-8.58, -2.628], [-8.728, -15.375], [-2.98, -12.157]], "v": [[-80.291, -79.452], [116.546, 26.896], [117.812, 56.207], [-25.252, 167.906], [-57.833, 157.377], [-63.507, 81.884], [-38.439, 58.15], [33.696, 48.095], [32.959, 37.461], [-54.013, 17.63], [-75.012, 0.191], [-96.665, -61.799]]}]}, {"t": 73, "s": [{"c": true, "i": [[-9.785, -2.748], [0, 0], [10.073, -3.525], [0, 0], [2.014, 8.701], [0, 0], [-10.841, -0.565], [0, 0], [4.226, 0.677], [0, 0], [4.908, 4.225], [5.646, 8.06]], "o": [[0, 0], [10.58, 2.999], [0, 0], [-12.974, 4.687], [0, 0], [-0.722, -6.213], [0, 0], [4.378, 0.17], [0, 0], [-8.58, -1.284], [-8.728, -7.514], [-4.055, -5.788]], "v": [[-86.852, -21.107], [121.04, 37.828], [121.043, 49.217], [-1.939, 95.039], [-35.635, 89.169], [-66.913, 39.948], [-49.277, 27.303], [43.295, 34.291], [44.526, 30.201], [-61.21, 11.74], [-83.062, 5.284], [-99.928, -14.021]]}]}], "a": 1}, "ind": 0}, {"hd": false, "nm": "Fill 1", "ty": "fl", "bm": 0, "o": {"k": 100, "a": 0}, "c": {"k": [0.996, 1, 0.992, 1], "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [0, 0], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}, {"ddd": 0, "ty": 4, "nm": "Shape Layer 15", "sr": 1, "ks": {"a": {"k": [-48, 115.75, 0], "a": 0}, "p": {"a": 1, "k": [{"t": 60, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [306, 219.75, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 78, "s": [156, 433.75, 0]}]}, "r": {"k": -26, "a": 0}, "o": {"k": [{"t": 60, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [0]}, {"t": 63, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 74, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 76, "s": [0]}], "a": 1}}, "ao": 0, "ip": 63, "op": 79, "st": 58, "bm": 0, "ind": 4, "shapes": [{"hd": false, "nm": "Shape 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Path 1", "ty": "sh", "ks": {"k": {"c": true, "i": [[-48.764, 37.839], [0, 0]], "o": [[-52.592, 18.536], [0, 0]], "v": [[15.662, 84.004], [-90.5, 140.75]]}, "a": 0}, "ind": 0}, {"hd": false, "nm": "Fill 1", "ty": "fl", "bm": 0, "o": {"k": 100, "a": 0}, "c": {"k": [1, 1, 1, 1], "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [0, 0], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}, {"ddd": 0, "ty": 4, "nm": "Shape Layer 14", "sr": 1, "ks": {"a": {"k": [-48, 115.75, 0], "a": 0}, "p": {"a": 1, "k": [{"t": 61, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [295, 115.75, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 78, "s": [61, 251.75, 0]}]}, "r": {"k": -2, "a": 0}, "o": {"k": [{"t": 61, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [0]}, {"t": 64, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 75, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 77, "s": [0]}], "a": 1}}, "ao": 0, "ip": 58, "op": 79, "st": 58, "bm": 0, "ind": 5, "shapes": [{"hd": false, "nm": "Shape 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Path 1", "ty": "sh", "ks": {"k": {"c": true, "i": [[-48.764, 37.839], [0, 0]], "o": [[-52.592, 18.536], [0, 0]], "v": [[15.662, 84.004], [-90.5, 140.75]]}, "a": 0}, "ind": 0}, {"hd": false, "nm": "Fill 1", "ty": "fl", "bm": 0, "o": {"k": 100, "a": 0}, "c": {"k": [1, 1, 1, 1], "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [0, 0], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}, {"ddd": 0, "ty": 4, "nm": "Shape Layer 13", "sr": 1, "ks": {"a": {"k": [-48, 115.75, 0], "a": 0}, "p": {"a": 1, "k": [{"t": 70, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [425.5, 256.75, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 88, "s": [330, 420.75, 0]}]}, "r": {"k": -30, "a": 0}, "o": {"k": [{"t": 71, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [0]}, {"t": 73, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 86, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 88, "s": [0]}], "a": 1}}, "ao": 0, "ip": 69, "op": 89, "st": 57, "bm": 0, "ind": 6, "shapes": [{"hd": false, "nm": "Shape 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Path 1", "ty": "sh", "ks": {"k": {"c": true, "i": [[-48.764, 37.839], [0, 0]], "o": [[-52.592, 18.536], [0, 0]], "v": [[15.662, 84.004], [-90.5, 140.75]]}, "a": 0}, "ind": 0}, {"hd": false, "nm": "Fill 1", "ty": "fl", "bm": 0, "o": {"k": 100, "a": 0}, "c": {"k": [1, 1, 1, 1], "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [0, 0], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}, {"ddd": 0, "ty": 4, "nm": "Shape Layer 7", "sr": 1, "ks": {"a": {"k": [-48, 115.75, 0], "a": 0}, "p": {"a": 1, "k": [{"t": 19, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [342, 179.75, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 24, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [198.222, 265.139, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 37, "s": [91, 347.75, 0]}]}, "r": {"k": -10, "a": 0}, "o": {"k": [{"t": 19, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [0]}, {"t": 22, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 33, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 35, "s": [0]}], "a": 1}}, "ao": 0, "ip": 24, "op": 38, "st": 10, "bm": 0, "ind": 7, "shapes": [{"hd": false, "nm": "Shape 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Path 1", "ty": "sh", "ks": {"k": {"c": true, "i": [[-37.553, 32.937], [0, 0]], "o": [[-49.159, 17.891], [0, 0]], "v": [[-19.012, 99.623], [-91.313, 140.068]]}, "a": 0}, "ind": 0}, {"hd": false, "nm": "Fill 1", "ty": "fl", "bm": 0, "o": {"k": 100, "a": 0}, "c": {"k": [1, 1, 1, 1], "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [0, 0], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}, {"ddd": 0, "ty": 4, "nm": "Shape Layer 6", "sr": 1, "ks": {"a": {"k": [-48, 115.75, 0], "a": 0}, "p": {"a": 1, "k": [{"t": 34, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [307, 75.75, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 52, "s": [80, 166.75, 0]}]}, "r": {"k": 8, "a": 0}, "o": {"k": [{"t": 34, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [0]}, {"t": 37, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 46, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 48, "s": [0]}], "a": 1}}, "ao": 0, "ip": 33, "op": 53, "st": 4, "bm": 0, "ind": 8, "shapes": [{"hd": false, "nm": "Shape 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Path 1", "ty": "sh", "ks": {"k": {"c": true, "i": [[-37.553, 32.937], [0, 0]], "o": [[-49.159, 17.891], [0, 0]], "v": [[-19.012, 99.623], [-91.313, 140.068]]}, "a": 0}, "ind": 0}, {"hd": false, "nm": "Fill 1", "ty": "fl", "bm": 0, "o": {"k": 100, "a": 0}, "c": {"k": [1, 1, 1, 1], "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [0, 0], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}, {"ddd": 0, "ty": 4, "nm": "Shape Layer 5", "sr": 1, "ks": {"a": {"k": [-48, 115.75, 0], "a": 0}, "p": {"a": 1, "k": [{"t": 6, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [306, 219.75, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 24, "s": [156, 433.75, 0]}]}, "r": {"k": -26, "a": 0}, "o": {"k": [{"t": 6, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [0]}, {"t": 9, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 20, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 22, "s": [0]}], "a": 1}}, "ao": 0, "ip": 9, "op": 25, "st": 4, "bm": 0, "ind": 9, "shapes": [{"hd": false, "nm": "Shape 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Path 1", "ty": "sh", "ks": {"k": {"c": true, "i": [[-48.764, 37.839], [0, 0]], "o": [[-52.592, 18.536], [0, 0]], "v": [[15.662, 84.004], [-90.5, 140.75]]}, "a": 0}, "ind": 0}, {"hd": false, "nm": "Fill 1", "ty": "fl", "bm": 0, "o": {"k": 100, "a": 0}, "c": {"k": [1, 1, 1, 1], "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [0, 0], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}, {"ddd": 0, "ty": 4, "nm": "Shape Layer 4", "sr": 1, "ks": {"a": {"k": [-48, 115.75, 0], "a": 0}, "p": {"a": 1, "k": [{"t": 7, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [295, 115.75, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 24, "s": [61, 251.75, 0]}]}, "r": {"k": -2, "a": 0}, "o": {"k": [{"t": 7, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [0]}, {"t": 10, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 21, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 23, "s": [0]}], "a": 1}}, "ao": 0, "ip": 4, "op": 25, "st": 4, "bm": 0, "ind": 10, "shapes": [{"hd": false, "nm": "Shape 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Path 1", "ty": "sh", "ks": {"k": {"c": true, "i": [[-48.764, 37.839], [0, 0]], "o": [[-52.592, 18.536], [0, 0]], "v": [[15.662, 84.004], [-90.5, 140.75]]}, "a": 0}, "ind": 0}, {"hd": false, "nm": "Fill 1", "ty": "fl", "bm": 0, "o": {"k": 100, "a": 0}, "c": {"k": [1, 1, 1, 1], "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [0, 0], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}, {"ddd": 0, "ty": 4, "nm": "Shape Layer 3", "sr": 1, "ks": {"a": {"k": [-48, 115.75, 0], "a": 0}, "p": {"a": 1, "k": [{"t": 26, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [421, 171.75, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 45, "s": [206, 447.75, 0]}]}, "r": {"k": -22, "a": 0}, "o": {"k": [{"t": 28, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [0]}, {"t": 31, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 42, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 44, "s": [0]}], "a": 1}}, "ao": 0, "ip": 25, "op": 46, "st": 4, "bm": 0, "ind": 11, "shapes": [{"hd": false, "nm": "Shape 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Path 1", "ty": "sh", "ks": {"k": {"c": true, "i": [[-48.764, 37.839], [0, 0]], "o": [[-52.592, 18.536], [0, 0]], "v": [[15.662, 84.004], [-90.5, 140.75]]}, "a": 0}, "ind": 0}, {"hd": false, "nm": "Fill 1", "ty": "fl", "bm": 0, "o": {"k": 100, "a": 0}, "c": {"k": [1, 1, 1, 1], "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [0, 0], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}, {"ddd": 0, "ty": 4, "nm": "Shape Layer 2", "sr": 1, "ks": {"a": {"k": [-48, 115.75, 0], "a": 0}, "p": {"a": 1, "k": [{"t": 20, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [274, 94.75, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 37, "s": [98, 197.75, 0]}]}, "o": {"k": [{"t": 20, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [0]}, {"t": 23, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 35, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 37, "s": [0]}], "a": 1}}, "ao": 0, "ip": 20, "op": 38, "st": 4, "bm": 0, "ind": 12, "shapes": [{"hd": false, "nm": "Shape 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Path 1", "ty": "sh", "ks": {"k": {"c": true, "i": [[-48.764, 37.839], [0, 0]], "o": [[-52.592, 18.536], [0, 0]], "v": [[15.662, 84.004], [-90.5, 140.75]]}, "a": 0}, "ind": 0}, {"hd": false, "nm": "Fill 1", "ty": "fl", "bm": 0, "o": {"k": 100, "a": 0}, "c": {"k": [1, 1, 1, 1], "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [0, 0], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}, {"ddd": 0, "ty": 4, "nm": "Shape Layer 1", "sr": 1, "ks": {"a": {"k": [-48, 115.75, 0], "a": 0}, "p": {"a": 1, "k": [{"t": 16, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [425.5, 256.75, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 34, "s": [330, 420.75, 0]}]}, "r": {"k": -30, "a": 0}, "o": {"k": [{"t": 17, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [0]}, {"t": 19, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 32, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 34, "s": [0]}], "a": 1}}, "ao": 0, "ip": 15, "op": 35, "st": 3, "bm": 0, "ind": 13, "shapes": [{"hd": false, "nm": "Shape 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Path 1", "ty": "sh", "ks": {"k": {"c": true, "i": [[-48.764, 37.839], [0, 0]], "o": [[-52.592, 18.536], [0, 0]], "v": [[15.662, 84.004], [-90.5, 140.75]]}, "a": 0}, "ind": 0}, {"hd": false, "nm": "Fill 1", "ty": "fl", "bm": 0, "o": {"k": 100, "a": 0}, "c": {"k": [1, 1, 1, 1], "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [0, 0], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}, {"ddd": 0, "ty": 4, "nm": "Shape Layer 16", "sr": 1, "ks": {"a": {"k": [-48, 115.75, 0], "a": 0}, "p": {"a": 1, "k": [{"t": 53, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [419, 205.75, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 70, "s": [231, 452.75, 0]}]}, "r": {"k": -27, "a": 0}, "o": {"k": [{"t": 53, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [0]}, {"t": 56, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 67, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 69, "s": [0]}], "a": 1}}, "ao": 0, "ip": 52, "op": 71, "st": 50, "bm": 0, "ind": 14, "shapes": [{"hd": false, "nm": "Shape 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Path 1", "ty": "sh", "ks": {"k": {"c": true, "i": [[-48.764, 37.839], [0, 0]], "o": [[-52.592, 18.536], [0, 0]], "v": [[15.662, 84.004], [-90.5, 140.75]]}, "a": 0}, "ind": 0}, {"hd": false, "nm": "Fill 1", "ty": "fl", "bm": 0, "o": {"k": 100, "a": 0}, "c": {"k": [1, 1, 1, 1], "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [0, 0], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}, {"ddd": 0, "ty": 4, "nm": "Shape Layer 11", "sr": 1, "ks": {"a": {"k": [-48, 115.75, 0], "a": 0}, "p": {"a": 1, "k": [{"t": 47, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [331, 123.75, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 64, "s": [59, 254.75, 0]}]}, "r": {"k": 2, "a": 0}, "o": {"k": [{"t": 47, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [0]}, {"t": 50, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 61, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 63, "s": [0]}], "a": 1}}, "ao": 0, "ip": 46, "op": 65, "st": 44, "bm": 0, "ind": 15, "shapes": [{"hd": false, "nm": "Shape 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Path 1", "ty": "sh", "ks": {"k": {"c": true, "i": [[-48.764, 37.839], [0, 0]], "o": [[-52.592, 18.536], [0, 0]], "v": [[15.662, 84.004], [-90.5, 140.75]]}, "a": 0}, "ind": 0}, {"hd": false, "nm": "Fill 1", "ty": "fl", "bm": 0, "o": {"k": 100, "a": 0}, "c": {"k": [1, 1, 1, 1], "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [0, 0], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}, {"ddd": 0, "ty": 4, "nm": "Shape Layer 8", "sr": 1, "ks": {"a": {"k": [-48, 115.75, 0], "a": 0}, "p": {"a": 1, "k": [{"t": 39, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [443, 285.75, 0], "ti": [0, 0, 0], "to": [0, 0, 0]}, {"t": 57, "s": [354, 427.25, 0]}]}, "r": {"k": -30, "a": 0}, "o": {"k": [{"t": 40, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [0]}, {"t": 42, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 55, "i": {"x": [0.833], "y": [0.833]}, "o": {"x": [0.167], "y": [0.167]}, "s": [25]}, {"t": 57, "s": [0]}], "a": 1}}, "ao": 0, "ip": 38, "op": 58, "st": 26, "bm": 0, "ind": 16, "shapes": [{"hd": false, "nm": "Shape 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Path 1", "ty": "sh", "ks": {"k": {"c": true, "i": [[-36.444, 30.329], [0, 0]], "o": [[-39.336, 11.339], [0, 0]], "v": [[-1.115, 91.061], [-77.087, 130.019]]}, "a": 0}, "ind": 0}, {"hd": false, "nm": "Fill 1", "ty": "fl", "bm": 0, "o": {"k": 100, "a": 0}, "c": {"k": [1, 1, 1, 1], "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [0, 0], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}, {"ddd": 0, "ty": 4, "nm": "Shape Layer 17", "sr": 1, "ks": {"p": {"k": [256, 256, 0], "a": 0}}, "ao": 0, "ip": 0, "op": 180, "st": 0, "bm": 0, "ind": 17, "shapes": [{"hd": false, "nm": "Ellipse 1", "ty": "gr", "bm": 0, "it": [{"hd": false, "nm": "Ellipse Path 1", "ty": "el", "d": 1, "p": {"k": [2, 6], "a": 0}, "s": {"k": [414, 414], "a": 0}}, {"hd": false, "nm": "Stroke 1", "ty": "st", "bm": 0, "lc": 1, "lj": 1, "ml": 4, "o": {"k": 100, "a": 0}, "w": {"k": 0, "a": 0}, "c": {"k": [1, 1, 1, 1], "a": 0}}, {"hd": false, "nm": "Gradient Fill 1", "ty": "gf", "bm": 0, "s": {"k": [0, 0], "a": 0}, "e": {"k": [0, 100], "a": 0}, "t": 1, "g": {"k": {"k": [0, 0.165, 0.671, 0.933, 0.5, 0.149, 0.645, 0.892, 1, 0.133, 0.62, 0.851], "a": 0}, "p": 3}, "o": {"k": 100, "a": 0}, "r": 1}, {"nm": "Transform", "ty": "tr", "a": {"k": [0, 0], "a": 0}, "p": {"k": [-1.711, -0.949], "a": 0}, "s": {"k": [100, 100], "a": 0}, "r": {"k": 0, "a": 0}, "o": {"k": 100, "a": 0}, "sk": {"k": 0, "a": 0}, "sa": {"k": 0, "a": 0}}]}]}], "v": "5.5.2", "fr": 60, "ip": 20, "op": 74, "w": 512, "h": 512, "nm": "4", "ddd": 0, "assets": []} \ No newline at end of file diff --git a/TMessagesProj/src/main/res/raw/report_police.tgs b/TMessagesProj/src/main/res/raw/report_police.tgs new file mode 100644 index 000000000..a7c9a5f3c --- /dev/null +++ b/TMessagesProj/src/main/res/raw/report_police.tgs @@ -0,0 +1 @@ +{"tgs":1,"v":"5.5.2","fr":60,"ip":0,"op":180,"w":512,"h":512,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"NULL FACE","parent":15,"sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[-0.637,-8.514,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.337,"y":0.766},"o":{"x":0.342,"y":0},"t":14,"s":[-1.748,-29.425,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0.55},"t":40,"s":[15.63,-1.183,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[17.728,0.075,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[18.078,-8.462,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[20.858,11.093,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[19.643,-0.903,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[21.174,4.203,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[-0.637,-19.514,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[-0.637,3.486,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[-0.621,-15.764,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[-0.637,-8.514,0]}]},"a":{"a":0,"k":[50,50,0]}},"ao":0,"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Tablet","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.7],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":39,"s":[0]},{"i":{"x":[0.7],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":49,"s":[-2]},{"i":{"x":[0.7],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":57,"s":[0]},{"i":{"x":[0.7],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":65,"s":[-2]},{"i":{"x":[0.7],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":73,"s":[0]},{"i":{"x":[0.7],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":81,"s":[-2]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":96,"s":[0]},{"t":127,"s":[-10]}]},"p":{"a":1,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":5,"s":[243.45,655.226,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.481,"y":0},"t":38,"s":[316.45,531.226,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.685,"y":0.944},"o":{"x":0.3,"y":0},"t":45,"s":[316.45,526.226,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":52,"s":[316.45,533.821,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":59,"s":[316.45,530.226,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":67,"s":[316.45,534.821,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":75,"s":[316.45,530.226,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":83,"s":[316.45,534.821,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.588,"y":0},"t":96,"s":[316.45,532.226,0],"to":[0,0,0],"ti":[0,0,0]},{"t":135,"s":[263.45,669.226,0]}]},"a":{"a":0,"k":[26.45,402.226,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":5,"s":[{"i":[[5.957,0],[0,0],[0,5.957],[0,0],[-5.957,0],[0,0],[0,-5.957],[0,0]],"o":[[0,0],[-5.957,0],[0,0],[0,-5.957],[0,0],[5.957,0],[0,0],[0,5.957]],"v":[[106.888,519.529],[-53.989,519.529],[-64.776,508.743],[-64.776,323.619],[-53.989,312.833],[106.888,312.833],[117.675,323.619],[117.675,508.743]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":20,"s":[{"i":[[5.957,0],[0,0],[0,5.957],[0,0],[-5.957,0],[0,0],[0,-5.957],[0,0]],"o":[[0,0],[-5.957,0],[0,0],[0,-5.957],[0,0],[5.957,0],[0,0],[0,5.957]],"v":[[88.888,518.529],[-60.989,517.529],[-71.776,506.743],[-48.026,304.369],[-37.239,293.583],[106.638,324.583],[117.425,335.369],[99.675,507.743]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":38,"s":[{"i":[[4.995,0],[0,0],[0,5.957],[0,0],[-10.646,0.167],[0,0],[0,-5.957],[0,0]],"o":[[0,0],[-4.995,0],[0,0],[1.762,-5.869],[0,0],[4.995,0],[0,0],[0,5.957]],"v":[[79.591,508.029],[-79.634,510.529],[-88.679,499.743],[-31.49,319.869],[-15.459,306.333],[134.45,311.583],[143.236,319.119],[88.635,497.243]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":47,"s":[{"i":[[4.995,0],[0,0],[0,5.957],[0,0],[-10.646,0.167],[0,0],[0,-5.957],[0,0]],"o":[[0,0],[-4.995,0],[0,0],[1.762,-5.869],[0,0],[4.995,0],[0,0],[0,5.957]],"v":[[79.591,508.029],[-79.634,510.529],[-88.679,499.743],[-31.49,319.869],[-15.459,306.333],[134.45,311.583],[143.236,319.119],[88.635,497.243]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":54,"s":[{"i":[[5.223,0],[0,0],[0,5.957],[0,0],[-9.538,0.128],[0,0],[0,-5.957],[0,0]],"o":[[0,0],[-5.223,0],[0,0],[1.346,-5.89],[0,0],[5.223,0],[0,0],[0,5.957]],"v":[[81.788,510.511],[-75.228,512.183],[-84.684,501.397],[-35.398,316.206],[-20.606,303.32],[127.878,314.655],[137.136,322.959],[91.244,499.724]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":61,"s":[{"i":[[4.995,0],[0,0],[0,5.957],[0,0],[-10.646,0.167],[0,0],[0,-5.957],[0,0]],"o":[[0,0],[-4.995,0],[0,0],[1.762,-5.869],[0,0],[4.995,0],[0,0],[0,5.957]],"v":[[79.591,508.029],[-79.634,510.529],[-88.679,499.743],[-31.49,319.869],[-15.459,306.333],[134.45,311.583],[143.236,319.119],[88.635,497.243]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":69,"s":[{"i":[[5.144,0],[0,0],[0,5.957],[0,0],[-9.922,0.141],[0,0],[0,-5.957],[0,0]],"o":[[0,0],[-5.144,0],[0,0],[1.49,-5.883],[0,0],[5.144,0],[0,0],[0,5.957]],"v":[[81.027,509.651],[-76.754,511.611],[-86.068,500.824],[-34.045,317.475],[-18.823,304.363],[130.154,313.591],[139.249,321.629],[90.34,498.865]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":77,"s":[{"i":[[4.995,0],[0,0],[0,5.957],[0,0],[-10.646,0.167],[0,0],[0,-5.957],[0,0]],"o":[[0,0],[-4.995,0],[0,0],[1.762,-5.869],[0,0],[4.995,0],[0,0],[0,5.957]],"v":[[79.591,508.029],[-79.634,510.529],[-88.679,499.743],[-31.49,319.869],[-15.459,306.333],[134.45,311.583],[143.236,319.119],[88.635,497.243]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":85,"s":[{"i":[[5.144,0],[0,0],[0,5.957],[0,0],[-9.922,0.141],[0,0],[0,-5.957],[0,0]],"o":[[0,0],[-5.144,0],[0,0],[1.49,-5.883],[0,0],[5.144,0],[0,0],[0,5.957]],"v":[[81.027,509.651],[-76.754,511.611],[-86.068,500.824],[-34.045,317.475],[-18.823,304.363],[130.154,313.591],[139.249,321.629],[90.34,498.865]],"c":true}]},{"i":{"x":0.4,"y":1},"o":{"x":0.532,"y":0},"t":96,"s":[{"i":[[4.995,0],[0,0],[0,5.957],[0,0],[-10.646,0.167],[0,0],[0,-5.957],[0,0]],"o":[[0,0],[-4.995,0],[0,0],[1.762,-5.869],[0,0],[4.995,0],[0,0],[0,5.957]],"v":[[79.591,508.029],[-79.634,510.529],[-88.679,499.743],[-31.49,319.869],[-15.459,306.333],[134.45,311.583],[143.236,319.119],[88.635,497.243]],"c":true}]},{"t":127,"s":[{"i":[[5.957,0],[0,0],[0,5.957],[0,0],[-5.957,0],[0,0],[0,-5.957],[0,0]],"o":[[0,0],[-5.957,0],[0,0],[0,-5.957],[0,0],[5.957,0],[0,0],[0,5.957]],"v":[[106.888,519.529],[-53.989,519.529],[-64.776,508.743],[-64.776,323.619],[-53.989,312.833],[106.888,312.833],[117.675,323.619],[117.675,508.743]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.717647075653,0.388235300779,0.164705887437,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":5,"s":[{"i":[[6.105,0],[0,0],[0,6.105],[0,0],[-6.105,0],[0,0],[0,-6.105],[0,0]],"o":[[0,0],[-6.105,0],[0,0],[0,-6.105],[0,0],[6.105,0],[0,0],[0,6.105]],"v":[[122.109,540.076],[-69.21,540.076],[-80.264,529.022],[-80.264,309.34],[-69.21,298.286],[122.109,298.286],[133.163,309.34],[133.163,529.022]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":20,"s":[{"i":[[6.105,0],[0,0],[0,6.105],[0,0],[-6.105,0],[0,0],[0,-6.105],[0,0]],"o":[[0,0],[-6.105,0],[0,0],[0,-6.105],[0,0],[6.105,0],[0,0],[0,6.105]],"v":[[104.109,539.076],[-76.21,538.076],[-87.264,527.022],[-63.514,290.09],[-52.46,279.036],[122.609,314.786],[133.663,325.84],[115.163,528.022]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":38,"s":[{"i":[[5.119,0],[0,0],[0,6.105],[0,0],[-5.119,0],[0,0],[0,-6.105],[0,0]],"o":[[0,0],[-5.119,0],[0,0],[2.07,-5.84],[0,0],[5.119,0],[0,0],[0,6.105]],"v":[[81.485,530.576],[-102.231,530.576],[-111.5,519.522],[-43.702,303.59],[-30.81,292.536],[147.731,300.036],[157,311.09],[90.755,519.522]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":47,"s":[{"i":[[5.119,0],[0,0],[0,6.105],[0,0],[-5.119,0],[0,0],[0,-6.105],[0,0]],"o":[[0,0],[-5.119,0],[0,0],[2.07,-5.84],[0,0],[5.119,0],[0,0],[0,6.105]],"v":[[81.485,530.576],[-102.231,530.576],[-111.5,519.522],[-43.702,303.59],[-30.81,292.536],[147.731,300.036],[157,311.09],[90.755,519.522]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":54,"s":[{"i":[[5.352,0],[0,0],[0,6.105],[0,0],[-5.352,0],[0,0],[0,-6.105],[0,0]],"o":[[0,0],[-5.352,0],[0,0],[1.581,-5.903],[0,0],[5.352,0],[0,0],[0,6.105]],"v":[[86.832,532.585],[-96.082,532.349],[-105.773,521.294],[-48.384,300.4],[-35.926,289.346],[141.794,303.521],[151.485,314.576],[96.523,521.531]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":61,"s":[{"i":[[5.119,0],[0,0],[0,6.105],[0,0],[-5.119,0],[0,0],[0,-6.105],[0,0]],"o":[[0,0],[-5.119,0],[0,0],[2.07,-5.84],[0,0],[5.119,0],[0,0],[0,6.105]],"v":[[81.485,530.576],[-102.231,530.576],[-111.5,519.522],[-43.702,303.59],[-30.81,292.536],[147.731,300.036],[157,311.09],[90.755,519.522]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":69,"s":[{"i":[[5.272,0],[0,0],[0,6.105],[0,0],[-5.272,0],[0,0],[0,-6.105],[0,0]],"o":[[0,0],[-5.272,0],[0,0],[1.75,-5.881],[0,0],[5.272,0],[0,0],[0,6.105]],"v":[[84.98,531.889],[-98.211,531.735],[-107.756,520.681],[-46.762,301.505],[-34.154,290.45],[143.85,302.314],[153.395,313.368],[94.525,520.835]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":77,"s":[{"i":[[5.119,0],[0,0],[0,6.105],[0,0],[-5.119,0],[0,0],[0,-6.105],[0,0]],"o":[[0,0],[-5.119,0],[0,0],[2.07,-5.84],[0,0],[5.119,0],[0,0],[0,6.105]],"v":[[81.485,530.576],[-102.231,530.576],[-111.5,519.522],[-43.702,303.59],[-30.81,292.536],[147.731,300.036],[157,311.09],[90.755,519.522]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":85,"s":[{"i":[[5.272,0],[0,0],[0,6.105],[0,0],[-5.272,0],[0,0],[0,-6.105],[0,0]],"o":[[0,0],[-5.272,0],[0,0],[1.75,-5.881],[0,0],[5.272,0],[0,0],[0,6.105]],"v":[[84.98,531.889],[-98.211,531.735],[-107.756,520.681],[-46.762,301.505],[-34.154,290.45],[143.85,302.314],[153.395,313.368],[94.525,520.835]],"c":true}]},{"i":{"x":0.4,"y":1},"o":{"x":0.532,"y":0},"t":96,"s":[{"i":[[5.119,0],[0,0],[0,6.105],[0,0],[-5.119,0],[0,0],[0,-6.105],[0,0]],"o":[[0,0],[-5.119,0],[0,0],[2.07,-5.84],[0,0],[5.119,0],[0,0],[0,6.105]],"v":[[81.485,530.576],[-102.231,530.576],[-111.5,519.522],[-43.702,303.59],[-30.81,292.536],[147.731,300.036],[157,311.09],[90.755,519.522]],"c":true}]},{"t":127,"s":[{"i":[[6.105,0],[0,0],[0,6.105],[0,0],[-6.105,0],[0,0],[0,-6.105],[0,0]],"o":[[0,0],[-6.105,0],[0,0],[0,-6.105],[0,0],[6.105,0],[0,0],[0,6.105]],"v":[[122.109,540.076],[-69.21,540.076],[-80.264,529.022],[-80.264,309.34],[-69.21,298.286],[122.109,298.286],[133.163,309.34],[133.163,529.022]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.466666668653,0.192156866193,0.074509806931,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.800000011921,0.478431373835,0.211764708161,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":5,"s":[{"i":[[0,0],[-0.667,-4.859]],"o":[[6.181,0],[0,0]],"v":[[49.993,272.656],[60.675,281.643]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":20,"s":[{"i":[[0,0],[0.042,-4.904]],"o":[[6.117,0.893],[0,0]],"v":[[59.583,279.421],[69.48,289.857]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":38,"s":[{"i":[[0,0],[-0.559,-4.859]],"o":[[5.183,0],[0,0]],"v":[[85.448,274.781],[94.275,282.893]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":47,"s":[{"i":[[0,0],[-0.559,-4.859]],"o":[[5.183,0],[0,0]],"v":[[85.448,274.781],[94.275,282.893]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":54,"s":[{"i":[[0,0],[-0.417,-4.87]],"o":[[5.404,0.211],[0,0]],"v":[[79.336,275.877],[88.416,284.538]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":61,"s":[{"i":[[0,0],[-0.559,-4.859]],"o":[[5.183,0],[0,0]],"v":[[85.448,274.781],[94.275,282.893]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":69,"s":[{"i":[[0,0],[-0.466,-4.866]],"o":[[5.327,0.138],[0,0]],"v":[[81.453,275.497],[90.445,283.968]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":77,"s":[{"i":[[0,0],[-0.559,-4.859]],"o":[[5.183,0],[0,0]],"v":[[85.448,274.781],[94.275,282.893]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":85,"s":[{"i":[[0,0],[-0.466,-4.866]],"o":[[5.327,0.138],[0,0]],"v":[[81.453,275.497],[90.445,283.968]],"c":false}]},{"i":{"x":0.4,"y":1},"o":{"x":0.532,"y":0},"t":96,"s":[{"i":[[0,0],[-0.559,-4.859]],"o":[[5.183,0],[0,0]],"v":[[85.448,274.781],[94.275,282.893]],"c":false}]},{"t":127,"s":[{"i":[[0,0],[-0.667,-4.859]],"o":[[6.181,0],[0,0]],"v":[[49.993,272.656],[60.675,281.643]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":5,"s":[{"i":[[4.411,0],[0,4.411],[-4.411,0],[0,-4.411]],"o":[[-4.411,0],[0,-4.411],[4.411,0],[0,4.411]],"v":[[26.449,289.629],[18.463,281.643],[26.449,273.656],[34.436,281.643]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":20,"s":[{"i":[[3.719,0.637],[-0.543,4.365],[-3.719,-0.637],[0.543,-4.365]],"o":[[-3.719,-0.637],[0.543,-4.365],[3.719,0.637],[-0.543,4.365]],"v":[[36.117,290.817],[30.366,281.76],[38.083,275.01],[43.834,284.067]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":38,"s":[{"i":[[3.657,0.536],[-0.685,4.361],[-3.657,-0.536],[0.685,-4.361]],"o":[[-3.657,-0.536],[0.685,-4.361],[3.657,0.536],[-0.685,4.361]],"v":[[63.181,288.009],[57.981,281.318],[65.529,274.725],[70.329,283.128]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":47,"s":[{"i":[[3.657,0.536],[-0.685,4.361],[-3.657,-0.536],[0.685,-4.361]],"o":[[-3.657,-0.536],[0.685,-4.361],[3.657,0.536],[-0.685,4.361]],"v":[[63.181,288.009],[57.981,281.318],[65.529,274.725],[70.329,283.128]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":54,"s":[{"i":[[3.672,0.56],[-0.651,4.362],[-3.672,-0.56],[0.651,-4.362]],"o":[[-3.672,-0.56],[0.651,-4.362],[3.672,0.56],[-0.651,4.362]],"v":[[56.786,288.673],[51.455,281.423],[59.043,274.793],[64.068,283.35]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":61,"s":[{"i":[[3.657,0.536],[-0.685,4.361],[-3.657,-0.536],[0.685,-4.361]],"o":[[-3.657,-0.536],[0.685,-4.361],[3.657,0.536],[-0.685,4.361]],"v":[[63.181,288.009],[57.981,281.318],[65.529,274.725],[70.329,283.128]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":69,"s":[{"i":[[3.667,0.551],[-0.663,4.362],[-3.667,-0.552],[0.663,-4.362]],"o":[[-3.667,-0.551],[0.663,-4.362],[3.667,0.552],[-0.663,4.362]],"v":[[59.001,288.443],[53.716,281.387],[61.289,274.769],[66.236,283.273]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":77,"s":[{"i":[[3.657,0.536],[-0.685,4.361],[-3.657,-0.536],[0.685,-4.361]],"o":[[-3.657,-0.536],[0.685,-4.361],[3.657,0.536],[-0.685,4.361]],"v":[[63.181,288.009],[57.981,281.318],[65.529,274.725],[70.329,283.128]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":85,"s":[{"i":[[3.667,0.551],[-0.663,4.362],[-3.667,-0.552],[0.663,-4.362]],"o":[[-3.667,-0.551],[0.663,-4.362],[3.667,0.552],[-0.663,4.362]],"v":[[59.001,288.443],[53.716,281.387],[61.289,274.769],[66.236,283.273]],"c":true}]},{"i":{"x":0.4,"y":1},"o":{"x":0.532,"y":0},"t":96,"s":[{"i":[[3.657,0.536],[-0.685,4.361],[-3.657,-0.536],[0.685,-4.361]],"o":[[-3.657,-0.536],[0.685,-4.361],[3.657,0.536],[-0.685,4.361]],"v":[[63.181,288.009],[57.981,281.318],[65.529,274.725],[70.329,283.128]],"c":true}]},{"t":127,"s":[{"i":[[4.411,0],[0,4.411],[-4.411,0],[0,-4.411]],"o":[[-4.411,0],[0,-4.411],[4.411,0],[0,4.411]],"v":[[26.449,289.629],[18.463,281.643],[26.449,273.656],[34.436,281.643]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.709803938866,0.466666668653,0.035294119269,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":5,"s":[{"i":[[11.267,0],[0,0],[0,-11.267],[0,0],[0,0],[0,0]],"o":[[0,0],[-11.267,0],[0,0],[0,0],[0,0],[0,-11.267]],"v":[[49.966,264.376],[2.933,264.376],[-17.467,284.776],[-37.467,298.909],[90.366,298.909],[70.366,284.776]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":20,"s":[{"i":[[11.148,1.627],[0,0],[0.67,-8.421],[0,0],[0,0],[0,0]],"o":[[0,0],[-11.148,-1.627],[0,0],[0,0],[0,0],[0.633,-8.982]],"v":[[60.252,271.35],[15.962,263.306],[-3.67,275.546],[-30.752,290.642],[95.616,310.606],[78.617,294.357]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":38,"s":[{"i":[[12.55,0.348],[0,0],[0.391,-8.802],[0,0],[0,0],[0,0]],"o":[[0,0],[-6.882,-0.027],[0,0],[0,0],[0,0],[2.043,-13.427]],"v":[[85.425,266.902],[41.846,265.152],[19.824,282.302],[-4.581,294.81],[118.267,299.935],[103.437,284.927]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":47,"s":[{"i":[[12.55,0.348],[0,0],[0.391,-8.802],[0,0],[0,0],[0,0]],"o":[[0,0],[-6.882,-0.027],[0,0],[0,0],[0,0],[2.043,-13.427]],"v":[[85.425,266.902],[41.846,265.152],[19.824,282.302],[-4.581,294.81],[118.267,299.935],[103.437,284.927]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":54,"s":[{"i":[[12.219,0.65],[0,0],[0.457,-8.712],[0,0],[0,0],[0,0]],"o":[[0,0],[-7.89,-0.405],[0,0],[0,0],[0,0],[1.71,-12.377]],"v":[[79.477,267.953],[35.73,264.716],[14.272,280.705],[-10.765,293.825],[112.914,302.457],[97.572,287.155]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":61,"s":[{"i":[[12.55,0.348],[0,0],[0.391,-8.802],[0,0],[0,0],[0,0]],"o":[[0,0],[-6.882,-0.027],[0,0],[0,0],[0,0],[2.043,-13.427]],"v":[[85.425,266.902],[41.846,265.152],[19.824,282.302],[-4.581,294.81],[118.267,299.935],[103.437,284.927]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":69,"s":[{"i":[[12.333,0.546],[0,0],[0.434,-8.743],[0,0],[0,0],[0,0]],"o":[[0,0],[-7.541,-0.274],[0,0],[0,0],[0,0],[1.825,-12.74]],"v":[[81.537,267.589],[37.848,264.867],[16.195,281.258],[-8.623,294.166],[114.768,301.583],[99.603,286.384]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":77,"s":[{"i":[[12.55,0.348],[0,0],[0.391,-8.802],[0,0],[0,0],[0,0]],"o":[[0,0],[-6.882,-0.027],[0,0],[0,0],[0,0],[2.043,-13.427]],"v":[[85.425,266.902],[41.846,265.152],[19.824,282.302],[-4.581,294.81],[118.267,299.935],[103.437,284.927]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":85,"s":[{"i":[[12.333,0.546],[0,0],[0.434,-8.743],[0,0],[0,0],[0,0]],"o":[[0,0],[-7.541,-0.274],[0,0],[0,0],[0,0],[1.825,-12.74]],"v":[[81.537,267.589],[37.848,264.867],[16.195,281.258],[-8.623,294.166],[114.768,301.583],[99.603,286.384]],"c":true}]},{"i":{"x":0.4,"y":1},"o":{"x":0.532,"y":0},"t":96,"s":[{"i":[[12.55,0.348],[0,0],[0.391,-8.802],[0,0],[0,0],[0,0]],"o":[[0,0],[-6.882,-0.027],[0,0],[0,0],[0,0],[2.043,-13.427]],"v":[[85.425,266.902],[41.846,265.152],[19.824,282.302],[-4.581,294.81],[118.267,299.935],[103.437,284.927]],"c":true}]},{"t":127,"s":[{"i":[[11.267,0],[0,0],[0,-11.267],[0,0],[0,0],[0,0]],"o":[[0,0],[-11.267,0],[0,0],[0,0],[0,0],[0,-11.267]],"v":[[49.966,264.376],[2.933,264.376],[-17.467,284.776],[-37.467,298.909],[90.366,298.909],[70.366,284.776]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.709803938866,0.466666668653,0.035294119269,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":5,"s":[{"i":[[4.411,0],[0,4.411],[-4.411,0],[0,-4.411]],"o":[[-4.411,0],[0,-4.411],[4.411,0],[0,4.411]],"v":[[26.449,288.629],[18.463,280.643],[26.449,272.656],[34.436,280.643]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":20,"s":[{"i":[[3.719,0.637],[-0.543,4.365],[-3.719,-0.637],[0.543,-4.365]],"o":[[-3.719,-0.637],[0.543,-4.365],[3.719,0.637],[-0.543,4.365]],"v":[[36.24,289.827],[30.489,280.77],[38.206,274.021],[43.957,283.078]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":38,"s":[{"i":[[3.657,0.536],[-0.685,4.361],[-3.657,-0.536],[0.685,-4.361]],"o":[[-3.657,-0.536],[0.685,-4.361],[3.657,0.536],[-0.685,4.361]],"v":[[63.557,288.949],[58.175,280.083],[65.362,274.954],[71.419,282.023]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":47,"s":[{"i":[[3.657,0.536],[-0.685,4.361],[-3.657,-0.536],[0.685,-4.361]],"o":[[-3.657,-0.536],[0.685,-4.361],[3.657,0.536],[-0.685,4.361]],"v":[[63.557,288.949],[58.175,280.083],[65.362,274.954],[71.419,282.023]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":54,"s":[{"i":[[3.672,0.56],[-0.651,4.362],[-3.672,-0.56],[0.651,-4.362]],"o":[[-3.672,-0.56],[0.651,-4.362],[3.672,0.56],[-0.651,4.362]],"v":[[57.102,289.157],[51.633,280.245],[58.944,274.733],[64.929,282.272]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":61,"s":[{"i":[[3.657,0.536],[-0.685,4.361],[-3.657,-0.536],[0.685,-4.361]],"o":[[-3.657,-0.536],[0.685,-4.361],[3.657,0.536],[-0.685,4.361]],"v":[[63.557,288.949],[58.175,280.083],[65.362,274.954],[71.419,282.023]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":69,"s":[{"i":[[3.667,0.551],[-0.663,4.362],[-3.667,-0.552],[0.663,-4.362]],"o":[[-3.667,-0.551],[0.663,-4.362],[3.667,0.551],[-0.663,4.362]],"v":[[59.338,289.085],[53.899,280.189],[61.167,274.809],[67.177,282.186]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":77,"s":[{"i":[[3.657,0.536],[-0.685,4.361],[-3.657,-0.536],[0.685,-4.361]],"o":[[-3.657,-0.536],[0.685,-4.361],[3.657,0.536],[-0.685,4.361]],"v":[[63.557,288.949],[58.175,280.083],[65.362,274.954],[71.419,282.023]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":85,"s":[{"i":[[3.667,0.551],[-0.663,4.362],[-3.667,-0.552],[0.663,-4.362]],"o":[[-3.667,-0.551],[0.663,-4.362],[3.667,0.551],[-0.663,4.362]],"v":[[59.338,289.085],[53.899,280.189],[61.167,274.809],[67.177,282.186]],"c":true}]},{"i":{"x":0.4,"y":1},"o":{"x":0.532,"y":0},"t":96,"s":[{"i":[[3.657,0.536],[-0.685,4.361],[-3.657,-0.536],[0.685,-4.361]],"o":[[-3.657,-0.536],[0.685,-4.361],[3.657,0.536],[-0.685,4.361]],"v":[[63.557,288.949],[58.175,280.083],[65.362,274.954],[71.419,282.023]],"c":true}]},{"t":127,"s":[{"i":[[4.411,0],[0,4.411],[-4.411,0],[0,-4.411]],"o":[[-4.411,0],[0,-4.411],[4.411,0],[0,4.411]],"v":[[26.449,288.629],[18.463,280.643],[26.449,272.656],[34.436,280.643]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":5,"s":[{"i":[[0,0],[11.267,0],[0,0],[0,-11.267],[0,0],[0,0]],"o":[[0,-11.267],[0,0],[-11.267,0],[0,0],[0,0],[0,0]],"v":[[70.366,284.776],[49.966,264.376],[2.933,264.376],[-17.467,284.776],[-37.467,302.909],[90.366,302.909]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":20,"s":[{"i":[[0,0],[11.148,1.627],[0,0],[1.627,-11.148],[0,0],[0,0]],"o":[[1.627,-11.148],[0,0],[-11.149,-1.627],[0,0],[0,0],[0,0]],"v":[[78.617,294.357],[60.752,271.225],[15.962,263.306],[-3.67,275.546],[-31.33,294.6],[93.663,314.189]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":38,"s":[{"i":[[0,0],[9.447,0],[0,0],[0,-11.267],[0,0],[0,0]],"o":[[1.137,-17.302],[0,0],[-9.447,0],[0,0],[0,0],[0,0]],"v":[[104.084,286.302],[83.743,267.152],[41.717,264.277],[19.824,282.302],[-7.039,296.31],[118.396,300.06]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":47,"s":[{"i":[[0,0],[9.447,0],[0,0],[0,-11.267],[0,0],[0,0]],"o":[[1.137,-17.302],[0,0],[-9.447,0],[0,0],[0,0],[0,0]],"v":[[104.084,286.302],[83.743,267.152],[41.717,264.277],[19.824,282.302],[-7.039,296.31],[118.396,300.06]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":54,"s":[{"i":[[0,0],[9.849,0.385],[0,0],[0.385,-11.239],[0,0],[0,0]],"o":[[1.253,-15.848],[0,0],[-9.849,-0.385],[0,0],[0,0],[0,0]],"v":[[98.066,288.206],[78.31,268.114],[35.631,264.047],[14.272,280.705],[-12.779,295.906],[112.551,303.399]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":61,"s":[{"i":[[0,0],[9.447,0],[0,0],[0,-11.267],[0,0],[0,0]],"o":[[1.137,-17.302],[0,0],[-9.447,0],[0,0],[0,0],[0,0]],"v":[[104.084,286.302],[83.743,267.152],[41.717,264.277],[19.824,282.302],[-7.039,296.31],[118.396,300.06]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":69,"s":[{"i":[[0,0],[9.71,0.251],[0,0],[0.251,-11.248],[0,0],[0,0]],"o":[[1.213,-16.351],[0,0],[-9.71,-0.251],[0,0],[0,0],[0,0]],"v":[[100.15,287.546],[80.192,267.781],[37.739,264.127],[16.195,281.258],[-10.791,296.046],[114.576,302.243]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":77,"s":[{"i":[[0,0],[9.447,0],[0,0],[0,-11.267],[0,0],[0,0]],"o":[[1.137,-17.302],[0,0],[-9.447,0],[0,0],[0,0],[0,0]],"v":[[104.084,286.302],[83.743,267.152],[41.717,264.277],[19.824,282.302],[-7.039,296.31],[118.396,300.06]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":85,"s":[{"i":[[0,0],[9.71,0.251],[0,0],[0.251,-11.248],[0,0],[0,0]],"o":[[1.213,-16.351],[0,0],[-9.71,-0.251],[0,0],[0,0],[0,0]],"v":[[100.15,287.546],[80.192,267.781],[37.739,264.127],[16.195,281.258],[-10.791,296.046],[114.576,302.243]],"c":true}]},{"i":{"x":0.4,"y":1},"o":{"x":0.532,"y":0},"t":96,"s":[{"i":[[0,0],[9.447,0],[0,0],[0,-11.267],[0,0],[0,0]],"o":[[1.137,-17.302],[0,0],[-9.447,0],[0,0],[0,0],[0,0]],"v":[[104.084,286.302],[83.743,267.152],[41.717,264.277],[19.824,282.302],[-7.039,296.31],[118.396,300.06]],"c":true}]},{"t":127,"s":[{"i":[[0,0],[11.267,0],[0,0],[0,-11.267],[0,0],[0,0]],"o":[[0,-11.267],[0,0],[-11.267,0],[0,0],[0,0],[0,0]],"v":[[70.366,284.776],[49.966,264.376],[2.933,264.376],[-17.467,284.776],[-37.467,302.909],[90.366,302.909]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.874509811401,0.176470592618,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[26.45,402.226]},"a":{"a":0,"k":[26.45,402.226]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Pen","parent":2,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.7],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":13,"s":[3.283]},{"i":{"x":[0.648],"y":[0.919]},"o":{"x":[0.311],"y":[0]},"t":39,"s":[34.283]},{"i":{"x":[0.658],"y":[1.166]},"o":{"x":[0.32],"y":[-0.107]},"t":44,"s":[27]},{"i":{"x":[0.672],"y":[0.92]},"o":{"x":[0.334],"y":[0.094]},"t":51,"s":[34]},{"i":{"x":[0.694],"y":[1]},"o":{"x":[0.353],"y":[-0.208]},"t":58,"s":[22]},{"i":{"x":[0.7],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":65,"s":[27]},{"i":{"x":[0.649],"y":[0.802]},"o":{"x":[0.31],"y":[0]},"t":78,"s":[38]},{"i":{"x":[0.664],"y":[1.542]},"o":{"x":[0.326],"y":[-0.428]},"t":84,"s":[31]},{"i":{"x":[0.676],"y":[0.895]},"o":{"x":[0.338],"y":[0.149]},"t":90,"s":[34]},{"i":{"x":[0.687],"y":[1]},"o":{"x":[0.35],"y":[-0.932]},"t":96,"s":[23]},{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":105,"s":[25]},{"t":117,"s":[7.283]}]},"p":{"a":1,"k":[{"i":{"x":0.341,"y":0.754},"o":{"x":0.378,"y":0},"t":13,"s":[88.902,425.7,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.593,"y":1},"o":{"x":0.266,"y":0.285},"t":34,"s":[106.591,323.512,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":44,"s":[103.818,340.505,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.3,"y":0},"t":65,"s":[25.874,336.965,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":78,"s":[87.632,347.006,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.535,"y":0.557},"o":{"x":0.402,"y":0},"t":105,"s":[23.479,340.601,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.538,"y":1},"o":{"x":0.229,"y":0.413},"t":117,"s":[105.555,402.946,0],"to":[0,0,0],"ti":[0,0,0]},{"t":129,"s":[131.09,450.952,0]}]},"a":{"a":0,"k":[211.308,106.131,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.039,0.878],[-0.771,4.436],[-4.794,1.557]],"o":[[-0.274,-6.143],[2.201,-12.667],[0.542,-0.176]],"v":[[198.67,35.156],[200.329,11.972],[209.457,-10.554]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.280292346431,0.227150157854,0.361568555645,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.985,-15.564],[2.811,-1.71],[4.699,-8.808],[-1.089,6.27],[-6.046,0]],"o":[[0.843,6.614],[-4.338,-9.091],[-2.606,-1.105],[2.45,-14.1],[6.046,0]],"v":[[222.884,12.277],[222.864,37.83],[199.856,37.692],[200.329,11.972],[211.191,-10.82]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.137254908681,0.070588238537,0.239215686917,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,1,1,0.5,0.557,0.514,0.579,1,0.114,0.028,0.158]}},"s":{"a":0,"k":[198.955,17.759]},"e":{"a":0,"k":[222.02,19.151]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.384,5.388],[0,0],[0,0]],"o":[[-0.466,5.516],[0,0],[0,0],[0,0]],"v":[[221.345,75.756],[201.333,75.756],[200.933,28.784],[221.746,28.784]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.137254908681,0.070588238537,0.239215686917,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,1,1,0.5,0.557,0.514,0.579,1,0.114,0.028,0.158]}},"s":{"a":0,"k":[198.377,69.837]},"e":{"a":0,"k":[220.058,71.188]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.149,3.49],[0,0],[0.802,-3.709]],"o":[[-1.3,3.179],[0,0],[-0.831,-4.214],[0,0]],"v":[[216.1,103.629],[206.578,103.629],[203.313,76.177],[219.365,76.177]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.137254908681,0.070588238537,0.239215686917,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,1,1,0.5,0.557,0.514,0.579,1,0.114,0.028,0.158]}},"s":{"a":0,"k":[200.377,112.837]},"e":{"a":0,"k":[216.477,114.188]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Mark","parent":8,"sr":1,"ks":{"p":{"a":0,"k":[2.016,-168.136,0]},"a":{"a":0,"k":[2.016,-168.136,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[1.225,1.615],[14.854,10.734],[-6.745,-17.421],[-8.524,-4.97],[0,0],[-6.69,3.771],[-4.271,11.788]],"o":[[-16.171,11.234],[-1.225,1.615],[0,0],[4.349,11.234],[6.79,3.959],[0,0],[8.581,-4.836],[6.396,-17.654]],"v":[[34.671,-201.484],[2.784,-206.385],[-29.104,-201.484],[-31.52,-167.09],[-9.68,-144.272],[2.784,-136.397],[15.025,-143.902],[37.088,-167.09]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[1.305,1.594],[14.103,0.277],[-10.224,-16.003],[-8.765,-4.663],[0,0],[-6.491,4.204],[-5.28,11.642]],"o":[[-12.039,3.382],[-1.141,1.718],[0,0],[6.354,9.945],[6.982,3.715],[0,0],[8.325,-5.392],[7.9,-17.418]],"v":[[24.208,-213.602],[-8.037,-219.336],[-39.487,-210.373],[-37.812,-176.963],[-16.119,-154.223],[-4.676,-148.623],[6.051,-154.704],[25.877,-178.859]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[1.079,1.387],[12.438,5.912],[-6.045,-14.767],[-7.564,-4.334],[0,0],[-5.665,3.778],[-4.401,8.851]],"o":[[-10.698,3.147],[-3.504,2.623],[0,0],[3.882,9.497],[6.026,3.453],[0,0],[7.278,-4.854],[7.091,-14.252]],"v":[[69.778,-166.713],[43.382,-172.946],[7.374,-171.617],[7.871,-139.445],[27.079,-119.757],[37.761,-113.645],[48.952,-119.072],[66.576,-138.812]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[1.079,1.534],[12.438,6.538],[-6.037,-16.332],[-7.564,-4.793],[0,0],[-5.665,4.178],[-4.403,9.787]],"o":[[-10.698,3.48],[-3.504,2.901],[0,0],[3.882,10.502],[6.026,3.818],[0,0],[7.278,-5.367],[7.091,-15.76]],"v":[[67.582,-179.476],[41.185,-186.368],[5.177,-184.899],[5.674,-149.322],[24.883,-127.552],[35.565,-120.793],[46.755,-126.794],[64.379,-148.623]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[1.063,1.31],[12.318,6.033],[-5.744,-14.017],[-7.478,-4.116],[0,0],[-5.605,3.578],[-4.338,8.261]],"o":[[-10.602,2.989],[-3.674,2.567],[0,0],[3.704,9.039],[5.957,3.279],[0,0],[7.203,-4.598],[7.032,-13.392]],"v":[[74.121,-151.303],[48.146,-157.289],[11.81,-156.545],[12.222,-125.906],[31.252,-107.316],[41.879,-101.443],[53.103,-106.581],[70.569,-125.129]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[1.072,1.381],[12.39,6.072],[-5.921,-14.734],[-7.53,-4.325],[0,0],[-5.641,3.766],[-4.377,8.771]],"o":[[-10.66,3.14],[-3.572,2.649],[0,0],[3.812,9.485],[5.998,3.445],[0,0],[7.248,-4.838],[7.068,-14.162]],"v":[[72.154,-166.598],[45.924,-172.845],[9.786,-171.734],[10.25,-139.596],[29.388,-119.996],[40.048,-113.869],[51.252,-119.277],[68.813,-138.892]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[1.063,1.372],[12.318,6.318],[-5.744,-14.678],[-7.478,-4.311],[0,0],[-5.605,3.747],[-4.338,8.651]],"o":[[-10.602,3.13],[-3.674,2.688],[0,0],[3.704,9.465],[5.957,3.434],[0,0],[7.203,-4.815],[7.032,-14.024]],"v":[[72.638,-160.393],[46.662,-166.662],[10.326,-165.882],[10.739,-133.799],[29.768,-114.331],[40.396,-108.181],[51.619,-113.562],[69.085,-132.984]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[1.305,1.532],[14.103,0.266],[-10.224,-15.38],[-8.765,-4.481],[0,0],[-6.491,4.04],[-5.28,11.189]],"o":[[-12.039,3.25],[-1.141,1.651],[0,0],[6.354,9.557],[6.982,3.57],[0,0],[8.325,-5.182],[7.9,-16.74]],"v":[[30.852,-207.985],[-1.392,-213.496],[-32.842,-204.882],[-31.168,-172.773],[-9.474,-150.919],[1.313,-147.533],[12.696,-151.381],[32.522,-174.596]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[1.225,1.495],[18.557,4.002],[-6.745,-16.121],[-8.524,-4.599],[0,0],[-6.69,3.489],[-4.271,10.908]],"o":[[-19.479,2.942],[-1.225,1.495],[0,0],[4.349,10.396],[6.79,3.664],[0,0],[8.581,-4.475],[6.396,-16.337]],"v":[[35.723,-163.504],[3.835,-168.039],[-28.052,-163.504],[-30.468,-131.676],[-8.628,-110.56],[3.556,-105.202],[16.076,-110.218],[38.139,-131.676]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[1.225,1.668],[14.854,11.086],[-6.745,-17.992],[-8.524,-5.133],[0,0],[-6.69,3.894],[-4.271,12.174]],"o":[[-16.171,11.602],[-1.225,1.668],[0,0],[4.349,11.602],[6.79,4.089],[0,0],[8.581,-4.995],[6.396,-18.233]],"v":[[34.525,-211.463],[2.638,-216.524],[-29.249,-211.463],[-31.666,-175.941],[-9.826,-152.376],[2.638,-144.242],[14.879,-151.994],[36.942,-175.941]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[1.225,1.615],[14.854,10.734],[-6.745,-17.421],[-8.524,-4.97],[0,0],[-6.69,3.771],[-4.271,11.788]],"o":[[-16.171,11.234],[-1.225,1.615],[0,0],[4.349,11.234],[6.79,3.959],[0,0],[8.581,-4.836],[6.396,-17.654]],"v":[[34.671,-201.484],[2.784,-206.385],[-29.104,-201.484],[-31.52,-167.09],[-9.68,-144.272],[2.784,-136.397],[15.025,-143.902],[37.088,-167.09]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.764705896378,0.635294139385,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[-6.172,6.421],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-3.388,-199.964],[-3.388,-140.443],[-21.805,-154.991],[-21.805,-197.754]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[-4.885,-2.099],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-6.735,-217.079],[-3.468,-155.634],[-21.587,-152.796],[-23.564,-211.77]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[-6.472,3.459],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[24.973,-168.06],[14.384,-128.166],[5.395,-141.42],[10.827,-171.662]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[-6.472,4.041],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[30.434,-180.51],[19.845,-133.903],[9.591,-146.812],[16.288,-184.717]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[-6.586,3.685],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23.768,-153.544],[13.127,-118.432],[6.253,-134.85],[9.816,-157.596]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[-6.517,3.617],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[30.728,-166.903],[19.745,-127.622],[11.016,-141.335],[16.659,-170.758]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-6.586,3.859],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[26.835,-161.587],[15.249,-123.243],[6.917,-137.656],[12.882,-165.829]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-4.885,-2.017],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8.898,-210.856],[12.165,-151.803],[-5.954,-149.076],[-7.93,-205.754]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-9.7,-2.683],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-5.117,-163.226],[-5.117,-108.146],[-23.533,-121.609],[-23.533,-161.181]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[-6.172,6.631],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2.484,-212.094],[2.464,-148.123],[-16.225,-160.4],[-15.953,-207.312]],"c":true}]},{"t":179,"s":[{"i":[[-6.172,6.421],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-3.388,-199.964],[-3.388,-140.443],[-21.805,-154.991],[-21.805,-197.754]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":60},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[1.225,1.615],[17.683,15.184],[-5.443,-17.87],[0,0],[-5.246,17.079]],"o":[[-17.683,15.184],[-1.225,1.615],[0,0],[4.694,15.412],[0,0],[5.514,-17.95]],"v":[[34.671,-201.484],[2.784,-206.385],[-29.104,-201.484],[-31.52,-167.09],[2.784,-136.397],[37.088,-167.09]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[1.305,1.594],[15.489,8.324],[-6.341,-18.042],[0,0],[-4.375,17.772]],"o":[[-11.309,10.323],[-1.141,1.718],[0,0],[5.468,15.56],[0,0],[4.599,-18.678]],"v":[[24.208,-213.602],[-7.888,-217.011],[-39.487,-210.373],[-40.16,-174.994],[-4.346,-145.269],[28.361,-178.468]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[1.079,1.387],[14.98,2.78],[-4.705,-15.232],[0,0],[-4.827,14.411]],"o":[[-12.025,3.896],[-1.106,1.353],[0,0],[4.057,13.136],[0,0],[5.073,-15.146]],"v":[[69.667,-167.244],[38.66,-172.158],[7.208,-168.448],[7.713,-139.312],[38.062,-112.802],[68.935,-138.353]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[1.079,1.534],[14.98,3.074],[-4.705,-16.843],[0,0],[-4.827,15.935]],"o":[[-12.025,4.309],[-1.106,1.496],[0,0],[4.057,14.526],[0,0],[5.073,-16.748]],"v":[[67.47,-180.063],[36.463,-185.497],[5.012,-181.394],[5.516,-149.176],[35.865,-119.861],[66.739,-148.115]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[1.063,1.31],[14.944,2.274],[-4.587,-14.352],[0,0],[-4.86,13.531]],"o":[[-12.076,3.279],[-1.104,1.267],[0,0],[3.956,12.378],[0,0],[5.108,-14.221]],"v":[[74.002,-151.847],[43.073,-156.643],[11.632,-153.301],[12.222,-125.906],[42.178,-100.811],[72.919,-124.686]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[1.072,1.381],[14.966,2.622],[-4.658,-15.152],[0,0],[-4.84,14.315]],"o":[[-12.045,3.713],[-1.105,1.342],[0,0],[4.017,13.067],[0,0],[5.087,-15.045]],"v":[[72.04,-167.144],[41.063,-172.101],[9.616,-168.474],[10.154,-139.516],[40.348,-113.098],[71.169,-138.431]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[1.063,1.372],[14.944,2.381],[-4.587,-15.029],[0,0],[-4.86,14.169]],"o":[[-12.076,3.434],[-1.104,1.326],[0,0],[3.956,12.962],[0,0],[5.108,-14.892]],"v":[[72.519,-160.962],[41.59,-165.985],[10.149,-162.485],[10.739,-133.799],[40.694,-107.52],[71.435,-132.52]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[1.305,1.532],[15.489,8],[-6.341,-17.34],[0,0],[-4.375,17.08]],"o":[[-11.309,9.921],[-1.141,1.651],[0,0],[5.468,14.955],[0,0],[4.599,-17.951]],"v":[[30.852,-207.985],[-1.243,-211.262],[-32.842,-204.882],[-33.515,-170.881],[2.299,-142.314],[35.006,-174.22]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[1.225,1.495],[15.984,-1.584],[-5.443,-16.537],[0,0],[-5.246,15.805]],"o":[[-14.463,0.827],[-1.225,1.495],[0,0],[4.694,14.262],[0,0],[5.514,-16.611]],"v":[[35.723,-163.504],[3.835,-168.039],[-28.052,-163.504],[-30.468,-131.676],[3.835,-103.272],[38.139,-131.676]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[1.225,1.668],[17.683,15.681],[-5.443,-18.456],[0,0],[-5.246,17.638]],"o":[[-17.683,15.681],[-1.225,1.668],[0,0],[4.694,15.917],[0,0],[5.514,-18.538]],"v":[[34.525,-211.463],[2.638,-216.524],[-29.249,-211.463],[-31.666,-175.941],[2.638,-144.242],[36.942,-175.941]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[1.225,1.615],[17.683,15.184],[-5.443,-17.87],[0,0],[-5.246,17.079]],"o":[[-17.683,15.184],[-1.225,1.615],[0,0],[4.694,15.412],[0,0],[5.514,-17.95]],"v":[[34.671,-201.484],[2.784,-206.385],[-29.104,-201.484],[-31.52,-167.09],[2.784,-136.397],[37.088,-167.09]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.945098042488,0.86274510622,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Shine","parent":15,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":3,"s":[0]},{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.356],"y":[0]},"t":17,"s":[7]},{"i":{"x":[0.63],"y":[1.01]},"o":{"x":[0.3],"y":[0]},"t":50,"s":[-18]},{"i":{"x":[0.633],"y":[0.873]},"o":{"x":[0.301],"y":[0.01]},"t":59,"s":[-21]},{"i":{"x":[0.645],"y":[1.006]},"o":{"x":[0.312],"y":[-0.088]},"t":70,"s":[-17]},{"i":{"x":[0.628],"y":[1]},"o":{"x":[0.288],"y":[0.015]},"t":79,"s":[-19.373]},{"i":{"x":[0.374],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":99,"s":[-20]},{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":125,"s":[3]},{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":142,"s":[-8]},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":157,"s":[1]},{"t":179,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":3,"s":[70.571,-189.101,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.356,"y":0},"t":17,"s":[86.629,-185.005,0],"to":[-17.163,-9.904,0],"ti":[17.783,-2.842,0]},{"i":{"x":0.63,"y":0.991},"o":{"x":0.3,"y":0},"t":50,"s":[17.234,-188.328,0],"to":[-2.349,0.375,0],"ti":[0.937,-0.136,0]},{"i":{"x":0.633,"y":0.873},"o":{"x":0.301,"y":0.01},"t":59,"s":[21.152,-197.995,0],"to":[-0.926,0.135,0],"ti":[3.023,-3.074,0]},{"i":{"x":0.645,"y":0.994},"o":{"x":0.312,"y":0.079},"t":70,"s":[10.318,-178.495,0],"to":[-2.094,2.13,0],"ti":[0.641,-0.147,0]},{"i":{"x":0.628,"y":1},"o":{"x":0.288,"y":0.015},"t":79,"s":[9.107,-186.983,0],"to":[-1.187,0.272,0],"ti":[0,0,0]},{"i":{"x":0.374,"y":1},"o":{"x":0.5,"y":0},"t":99,"s":[6.491,-183.258,0],"to":[40.548,-5.464,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":125,"s":[91.264,-180.386,0],"to":[-8.656,6.609,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.355,"y":0},"t":142,"s":[66.42,-177.96,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[74.02,-192.394,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[70.571,-189.101,0]}]},"a":{"a":0,"k":[70.571,-189.101,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-4.832,-1.659]],"o":[[0,0],[0,0]],"v":[[61.15,-192.382],[68.163,-189.963]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.994,-0.386]],"o":[[0.529,0.2],[0,0]],"v":[[78.998,-186.205],[79.992,-185.82]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Visor","parent":8,"sr":1,"ks":{"p":{"a":0,"k":[1.962,-96.368,0]},"a":{"a":0,"k":[1.962,-96.368,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[119.119,-118.66],[119.119,-116.66]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[118.71,-109.266],[118.609,-106.897]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[124.513,-105.69],[124.474,-103.307]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[123.82,-105.317],[123.813,-102.934]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[124.93,-105.432],[124.896,-103.048]],"c":false}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[124.678,-106.588],[124.641,-104.204]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[124.93,-105.432],[124.896,-103.048]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[118.59,-112.952],[118.549,-110.8]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[117.97,-104.846],[117.948,-102.608]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[118.798,-116.6],[118.81,-114.439]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[119.119,-118.66],[119.119,-116.66]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.803921580315,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[119.119,-118.657],[119.119,-107.5]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[118.71,-109.262],[118.145,-96.045]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[124.513,-105.686],[124.296,-92.392]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[123.82,-105.314],[123.783,-92.018]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[124.93,-105.428],[124.739,-92.129]],"c":false}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[124.678,-106.584],[124.471,-93.288]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[124.93,-105.428],[124.739,-92.129]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[118.59,-112.949],[118.357,-100.943]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[117.97,-104.842],[117.848,-92.357]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[118.798,-116.596],[118.866,-104.543]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[119.119,-118.657],[119.119,-107.5]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.800000011921,0.549019634724,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 6","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-115.195,-118.657],[-115.195,-116.657]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-117.197,-106.531],[-117.145,-104.241]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-95.942,-110.825],[-95.97,-108.447]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-94.952,-103.959],[-94.948,-101.581]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-94.412,-111.134],[-94.446,-108.75]],"c":false}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-95.337,-111.947],[-95.368,-109.567]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-94.412,-111.134],[-94.446,-108.75]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-116.265,-112.001],[-116.17,-109.886]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-115.175,-103.205],[-115.159,-100.978]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-115.267,-112.095],[-115.255,-109.934]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-115.195,-118.657],[-115.195,-116.657]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.803921580315,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-115.195,-118.657],[-115.195,-107.5]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-117.197,-106.531],[-116.907,-93.758]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-95.942,-110.825],[-96.101,-97.561]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-94.952,-103.959],[-94.932,-90.693]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-94.412,-111.134],[-94.603,-97.835]],"c":false}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-95.337,-111.947],[-95.508,-98.669]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-94.412,-111.134],[-94.603,-97.835]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-116.265,-112.001],[-115.738,-100.203]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-115.175,-103.205],[-115.085,-90.779]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-115.267,-112.095],[-115.2,-100.041]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-115.195,-118.657],[-115.195,-107.5]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.800000011921,0.549019634724,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 7","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[-30.406,0]],"o":[[18.219,-1.727],[0,0]],"v":[[-70.739,-114.218],[1.962,-117.327]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[-30.381,1.275]],"o":[[19.184,-6.206],[0,0]],"v":[[-74.27,-112.995],[-5.452,-123.347]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[-24.427,-0.236]],"o":[[17.499,-0.311],[0,0]],"v":[[-52.978,-97.879],[27.403,-95.913]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[-24.428,0.093]],"o":[[26.21,-3.731],[0,0]],"v":[[-53.381,-95.288],[27.745,-99.35]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[-23.998,-0.345]],"o":[[18.6,3.753],[0,0]],"v":[[-50.647,-90.721],[28.974,-84.665]],"c":false}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[-24.257,-0.279]],"o":[[17.452,-0.143],[0,0]],"v":[[-52.372,-98.448],[28.339,-96.132]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[-23.998,-0.345]],"o":[[17.221,2.148],[0,0]],"v":[[-50.702,-94.338],[29.54,-91.292]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[-30.396,0.525]],"o":[[19.075,-3.105],[0,0]],"v":[[-71.79,-113.577],[-0.754,-120.747]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[-30.403,0.01]],"o":[[17.944,1.189],[0,0]],"v":[[-70.935,-88.98],[0.723,-87.722]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[-30.405,0.199]],"o":[[20.415,-4.631],[0,0]],"v":[[-70.653,-114.409],[1.979,-121.148]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[-30.406,0]],"o":[[18.219,-1.727],[0,0]],"v":[[-70.739,-114.218],[1.962,-117.327]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.113725490868,0.113725490868,0.105882354081,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[37.608,-4.052]],"o":[[0,0],[0,0]],"v":[[1.962,-127.814],[-69.4,-124.096]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[34.383,-10.653]],"o":[[0,0],[0,0]],"v":[[-7.551,-134.893],[-73.843,-123.158]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[33.625,-0.775]],"o":[[0,0],[0,0]],"v":[[26.918,-107.572],[-52.261,-109.182]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[38.09,-5.025]],"o":[[0,0],[0,0]],"v":[[27.102,-111.002],[-52.648,-107.021]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[35.706,3.755]],"o":[[0,0],[0,0]],"v":[[28.604,-96.332],[-50.015,-102.603]],"c":false}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[33.603,-0.494]],"o":[[0,0],[0,0]],"v":[[27.899,-107.795],[-51.646,-109.784]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[32.547,1.731]],"o":[[0,0],[0,0]],"v":[[29.171,-102.959],[-50.357,-106.425]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[38.011,-7.387]],"o":[[0,0],[0,0]],"v":[[-1.768,-130.75],[-71.36,-122.115]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[35.121,0.126]],"o":[[0,0],[0,0]],"v":[[0.494,-99.101],[-70.943,-100.108]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[36.493,-8.249]],"o":[[0,0],[0,0]],"v":[[1.67,-133.019],[-69.313,-124.752]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[37.608,-4.052]],"o":[[0,0],[0,0]],"v":[[1.962,-127.814],[-69.4,-124.096]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.113725490868,0.113725490868,0.105882354081,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[50.357,-11.817],[0,0],[-81.082,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[81.082,0],[0,0],[-50.357,-11.817]],"v":[[1.962,-127.814],[-115.195,-116.657],[-115.195,-107.5],[1.962,-117.327],[119.119,-107.5],[119.119,-116.657]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[38.323,-31.184],[0,0],[-81.056,2.191],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[74.44,-2.012],[0,0],[-51.966,-29.352]],"v":[[-6.791,-135.076],[-117.802,-100.755],[-117.201,-91.137],[-5.945,-123.405],[118.319,-96.803],[117.644,-107.07]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[40.023,-2.015],[0,0],[-65.141,-0.711],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[64.697,0.723],[0,0],[-42.731,-4.62]],"v":[[26.969,-107.585],[-95.911,-108.135],[-96.103,-96.616],[27.37,-95.917],[124.296,-92.35],[124.397,-103.222]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[61.3,-11.034],[0,0],[-67.048,-1.783],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[62.074,1.651],[0,0],[-44.925,-8.382]],"v":[[27.153,-111.015],[-94.885,-101.269],[-94.921,-89.748],[27.712,-99.354],[123.783,-91.976],[123.738,-102.849]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[39.715,7.571],[0,0],[-63.996,-0.92],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[63.996,0.92],[0,0],[-45.398,7.315]],"v":[[28.604,-96.332],[-94.336,-108.666],[-94.585,-97.01],[28.974,-84.665],[124.726,-92.03],[124.883,-102.945]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[40.071,-1.184],[0,0],[-64.688,-0.805],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[64.42,0.801],[0,0],[-42.469,-3.916]],"v":[[27.93,-107.802],[-95.288,-109.345],[-95.503,-97.771],[28.319,-96.134],[124.466,-93.224],[124.589,-104.113]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[43.087,3.383],[0,0],[-65.934,-0.315],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[64.002,0.306],[0,0],[-47.863,0.339]],"v":[[29.171,-102.959],[-94.336,-108.666],[-94.585,-97.01],[29.54,-91.292],[124.726,-92.03],[124.883,-102.945]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[49.169,-20.398],[0,0],[-81.071,0.903],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[78.345,-0.829],[0,0],[-51.46,-18.791]],"v":[[-0.946,-130.697],[-116.501,-108.776],[-116.047,-99.419],[-0.756,-120.658],[118.887,-102.16],[118.681,-111.152]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[44.342,0.024],[0,0],[-81.073,-0.625],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[77.36,0.601],[0,0],[-55.433,1.662]],"v":[[0.723,-99.086],[-115.07,-100.675],[-114.991,-90.566],[0.722,-87.697],[118.004,-92.286],[117.993,-102.293]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[49.134,-22.545],[0,0],[-78.51,-0.62],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[81.08,0.64],[0,0],[-55.059,-17.183]],"v":[[2.043,-132.746],[-114.955,-110.474],[-114.9,-100.581],[1.979,-121.148],[119.413,-103.732],[119.11,-114.975]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[50.357,-11.817],[0,0],[-81.082,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[81.082,0],[0,0],[-50.357,-11.817]],"v":[[1.962,-127.814],[-115.195,-116.657],[-115.195,-107.5],[1.962,-117.327],[119.119,-107.5],[119.119,-116.657]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.059,0.059,0.063,0.231,0.253,0.253,0.255,0.353,0.447,0.447,0.447,0.472,0.233,0.233,0.233,0.999,0.02,0.02,0.02]}},"s":{"a":0,"k":[-115.325,-116.844]},"e":{"a":0,"k":[118.989,-116.844]},"t":1,"nm":"Gradient Fill 7","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 8","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[-30.593,0]],"o":[[19.704,-1.943],[0,0]],"v":[[-74.649,-101.969],[1.967,-105.676]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[-29.966,0]],"o":[[20.43,-5.814],[0,0]],"v":[[-73.183,-102.562],[-0.869,-113.283]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[-24.536,-0.417]],"o":[[18.831,0.34],[0,0]],"v":[[-58.148,-85.98],[27.208,-84.642]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[-24.536,-0.417]],"o":[[20.302,-1.713],[0,0]],"v":[[-56.926,-83.637],[26.472,-88.372]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[-24.145,-0.447]],"o":[[27.056,4.923],[0,0]],"v":[[-56.209,-80.809],[31.476,-72.141]],"c":false}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[-24.381,-0.429]],"o":[[18.785,0.515],[0,0]],"v":[[-57.719,-85.508],[28.007,-83.826]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[-24.145,-0.447]],"o":[[17.855,1.808],[0,0]],"v":[[-57.108,-83.737],[28.951,-80.183]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[-30.593,0]],"o":[[20.179,-3.538],[0,0]],"v":[[-74.779,-101.549],[0.952,-110.481]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[-30.593,0]],"o":[[21.773,2.287],[0,0]],"v":[[-73.447,-80.148],[1.638,-77.947]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[-33.327,-0.097]],"o":[[18.92,-3.27],[0,0]],"v":[[-74.217,-100.711],[1.689,-108.068]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[-30.593,0]],"o":[[19.704,-1.943],[0,0]],"v":[[-74.649,-101.969],[1.967,-105.676]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.113725490868,0.113725490868,0.105882354081,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[27.657,0],[32.648,24.102],[-68.04,0]],"o":[[-31.223,24.852],[-27.543,0],[0,0],[68.04,0]],"v":[[116.897,-96.946],[1.967,-64.916],[-112.973,-96.946],[1.967,-105.676]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[38.943,0.391],[35.501,-9.738],[-75.169,1.251]],"o":[[-50.143,-13.535],[-37.043,-0.372],[0,0],[76.65,-1.276]],"v":[[119.168,-84.447],[-1.242,-99.678],[-114.989,-81.614],[-0.869,-113.283]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[43.746,-2.057],[34.852,26.305],[-55.147,0.538]],"o":[[6.742,22.389],[-40.398,1.896],[0,0],[56.115,-0.548]],"v":[[123.51,-82.731],[40.931,-47.191],[-96.634,-86.527],[27.208,-84.642]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[47.08,-0.747],[30.572,12.412],[-55.147,0.538]],"o":[[-2.909,10.018],[-40.437,0.641],[0,0],[56.115,-0.548]],"v":[[123.319,-79.851],[42.526,-58.357],[-95.309,-79.812],[26.472,-88.372]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[56.341,-2.994],[34.806,28.899],[-53.706,-0.493]],"o":[[12.286,32.007],[-50.332,2.675],[0,0],[54.95,0.504]],"v":[[123.823,-82.607],[43.839,-29.861],[-95.313,-86.88],[30.991,-72.036]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[43.882,-2.127],[34.834,27.331],[-54.577,0.518]],"o":[[8.362,23.412],[-40.493,1.96],[0,0],[55.531,-0.527]],"v":[[123.634,-82.682],[42.319,-49.392],[-96.112,-86.667],[28.007,-83.826]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[44.091,-2.234],[34.806,28.899],[-53.706,0.487]],"o":[[10.836,24.975],[-40.639,2.059],[0,0],[54.637,-0.495]],"v":[[123.823,-82.607],[45.052,-40.509],[-95.313,-86.88],[28.951,-80.183]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[31.786,-0.687],[31.729,-5.097],[-71.626,0.516]],"o":[[-41.248,-8.649],[-31.761,0.689],[0,0],[72.249,-0.526]],"v":[[119.132,-87.255],[0.725,-96.138],[-115.027,-86.195],[0.952,-110.481]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[34.953,0.796],[21.997,29.454],[-69.036,0.143]],"o":[[-24.935,32.264],[-39.088,-0.952],[0,0],[69.209,-0.146]],"v":[[119.059,-83.236],[0.315,-38.648],[-114.386,-82.916],[1.638,-77.947]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[27.657,0],[29.632,7.176],[-68.04,0]],"o":[[-25.099,6.212],[-27.543,0],[0,0],[68.04,0]],"v":[[119.147,-90.363],[2.169,-79.026],[-112.973,-90.381],[1.689,-108.068]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[27.657,0],[32.648,24.102],[-68.04,0]],"o":[[-31.223,24.852],[-27.543,0],[0,0],[68.04,0]],"v":[[116.897,-96.946],[1.967,-64.916],[-112.973,-96.946],[1.967,-105.676]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.059,0.059,0.063,0.231,0.253,0.253,0.255,0.353,0.447,0.447,0.447,0.472,0.233,0.233,0.233,0.999,0.02,0.02,0.02]}},"s":{"a":0,"k":[-113.325,-84.844]},"e":{"a":0,"k":[116.545,-84.844]},"t":1,"nm":"Gradient Fill 6","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 9","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Mark Shadow","parent":8,"sr":1,"ks":{"p":{"a":0,"k":[2.016,-168.136,0]},"a":{"a":0,"k":[2.016,-168.136,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[30.513,16.349],[7.995,14.748],[4.023,-0.819],[8.788,-5.69],[15.923,-9.074],[-9.259,2.675],[-21.306,-1.529],[-4.983,-2.905],[0,0],[-7.695,4.337],[-3.926,3.083],[-21.771,-4.343]],"o":[[-14.956,-8.013],[-5.91,-10.901],[0,0],[-15.519,10.049],[-31.281,17.825],[26.218,-7.574],[4.106,2.462],[7.81,4.554],[0,0],[5.322,-2.999],[23.178,-1.451],[9.431,1.882]],"v":[[90.74,-160.187],[41.592,-192.492],[-36.341,-192.346],[-48.086,-179.339],[-85.322,-159.127],[-104.001,-137.675],[-27.606,-144.962],[-14.825,-138.397],[3.012,-127.888],[17.09,-136.52],[31.676,-144.833],[107.484,-139.818]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[26.698,19.138],[10.783,9.577],[4.012,-0.697],[8.854,-5.828],[10.966,-9.474],[-8.392,4.247],[-26.345,-2.698],[-4.984,-2.463],[0,0],[-7.24,4.452],[-4.628,2.969],[-21.141,-5.772]],"o":[[-12.91,-9.254],[-7.816,-6.941],[0,0],[-14.564,9.586],[-21.943,18.959],[23.765,-12.025],[4.557,3.002],[7.344,3.63],[0,0],[5.61,-3.449],[28.847,-3.61],[9.159,2.501]],"v":[[89.168,-156.393],[33.367,-189.132],[-44.131,-191.634],[-56.127,-177.634],[-96.537,-149.213],[-107.356,-125.721],[-31.845,-152.457],[-21.234,-145.66],[-4.766,-138.796],[8.951,-144.425],[23.701,-153.497],[97.867,-134.055]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[15.539,8.485],[7.994,10.314],[4.032,-0.515],[8.863,-3.941],[16.396,-4.094],[-9.404,0.1],[-21.622,-1.497],[-4.503,-3.02],[0,0],[-7.184,4.257],[-4.349,3.509],[-13.427,-0.68]],"o":[[-8.793,-4.773],[-5.899,-7.614],[0,0],[-15.58,6.912],[-24.056,6.26],[26.417,-0.288],[5.823,5.141],[7.954,5.355],[0,0],[4.841,-2.869],[22.379,0.542],[5.319,0.283]],"v":[[99.408,-135.687],[67.56,-162.476],[2.411,-168.695],[-23.563,-152.79],[-63.279,-139.996],[-83.791,-124.585],[-1.213,-129.174],[10.78,-118.371],[30.067,-107.557],[48.262,-114.876],[63.695,-125.124],[105.074,-123.302]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[14.845,10.522],[7.991,11.093],[4.032,-0.554],[8.867,-4.23],[15.585,-7.028],[-9.36,1.113],[-21.622,-1.61],[-4.497,-3.256],[0,0],[-7.183,4.579],[-4.349,3.774],[-13.334,-2.001]],"o":[[-8.402,-5.923],[-5.898,-8.189],[0,0],[-15.58,7.433],[-24.114,9.758],[27.33,-3.249],[5.823,5.529],[7.954,5.758],[0,0],[4.841,-3.086],[22.379,0.583],[5.283,0.793]],"v":[[99.752,-139.689],[66.744,-170.032],[1.595,-176.72],[-24.379,-159.616],[-63.379,-144.375],[-81.315,-124.646],[-0.956,-133.861],[11.279,-123.621],[29.933,-111.359],[47.446,-118.843],[62.879,-129.864],[104.45,-125.899]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[15.253,5.755],[7.793,9.364],[4.034,-0.454],[9.161,-2.543],[16.998,-2.016],[-9.28,-1.855],[-21.282,-1.525],[-4.468,-3.308],[0,0],[-7.18,4.586],[-4.329,3.835],[-11.829,2.311]],"o":[[-8.795,-3.318],[-5.761,-6.922],[0,0],[-13.181,3.659],[-24.514,2.908],[31.636,6.323],[5.914,5.724],[7.998,5.922],[0,0],[4.785,-3.056],[14.302,3.204],[4.944,-0.966]],"v":[[103.235,-126.904],[73.633,-149.985],[9.373,-155.845],[-18.496,-141.944],[-57.804,-135.139],[-77.933,-122.995],[6.105,-115.659],[17.178,-106.293],[38.603,-91.914],[57.986,-103.339],[71.18,-114.666],[109.518,-116.84]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[15.479,6.092],[7.793,10.367],[4.034,-0.502],[8.864,-3.805],[16.928,-2.994],[-9.46,-0.599],[-21.282,-1.411],[-4.468,-3.06],[0,0],[-7.18,4.243],[-4.329,3.548],[-12.831,1.07]],"o":[[-8.925,-3.513],[-5.761,-7.663],[0,0],[-15.654,6.72],[-24.413,4.317],[26.56,1.682],[5.914,5.295],[7.998,5.479],[0,0],[4.785,-2.828],[21.914,0.841],[5.027,-0.419]],"v":[[100.124,-136.791],[69.464,-163.042],[5.204,-169.529],[-21.777,-153.487],[-60.94,-142.621],[-81.829,-126.822],[0.583,-128.19],[12.527,-118.893],[34.397,-106.239],[52.207,-114.566],[66.053,-124.271],[107.015,-124.781]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[14.736,7.718],[7.793,10.367],[4.034,-0.502],[8.864,-3.805],[16.9,-3.15],[-9.465,-0.511],[-26.128,0.077],[-4.468,-3.06],[0,0],[-7.18,4.243],[-4.329,3.548],[-12.871,-0.314]],"o":[[-8.497,-4.45],[-5.761,-7.663],[0,0],[-15.654,6.72],[-24.372,4.543],[26.575,1.436],[5.914,5.295],[7.998,5.479],[0,0],[4.785,-2.828],[21.914,0.841],[5.043,0.123]],"v":[[100.446,-132.696],[70.421,-158.556],[6.161,-165.043],[-20.819,-149.001],[-60.496,-138.1],[-82.184,-123.979],[2.471,-123.893],[13.485,-114.406],[32.974,-103.308],[51.491,-110.749],[66.974,-121.081],[105.893,-121.027]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[26.698,19.738],[10.783,9.877],[4.012,-0.719],[8.854,-6.01],[12.325,-7.861],[-8.735,3.598],[-26.823,1.967],[-5.023,-2.458],[0,0],[-7.633,3.855],[-4.189,4.315],[-21.141,-5.953]],"o":[[-12.91,-9.544],[-7.816,-7.159],[0,0],[-14.564,9.887],[-22.514,14.359],[23.664,-9.747],[3.648,3.392],[7.874,3.853],[0,0],[5.279,-2.666],[28.483,-2.321],[9.159,2.579]],"v":[[94.819,-152.612],[38.857,-188.192],[-38.641,-190.773],[-50.637,-176.334],[-93.005,-151.552],[-102.326,-131.589],[-29.7,-148.474],[-16.48,-140.786],[3.289,-133.491],[14.462,-139.619],[29.113,-149.63],[104.265,-134.2]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[32.242,5.186],[7.995,10.895],[4.023,-0.605],[7.798,-5.973],[16.822,-3.465],[-9.397,-1.038],[-21.306,-1.13],[-4.983,-2.276],[0,0],[-5.464,3.444],[-4.816,2.982],[-21.933,1.591]],"o":[[-15.803,-2.542],[-5.91,-8.054],[0,0],[-8.996,6.891],[-25.564,5.266],[26.61,2.938],[4.146,1.598],[7.81,3.567],[0,0],[5.018,-3.163],[30.604,0.062],[9.501,-0.689]],"v":[[88.54,-129.31],[42.644,-151.091],[-35.289,-150.983],[-47.035,-141.374],[-80.937,-128.343],[-103.456,-114.525],[-29.447,-112.239],[-15.467,-105.04],[3.709,-97.657],[19.823,-104.134],[34.579,-112.538],[105.903,-117.01]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[29.233,19.016],[7.995,15.231],[4.023,-0.846],[8.788,-5.877],[15.284,-10.38],[-9.061,3.355],[-21.306,-1.579],[-4.982,-3],[0,0],[-7.695,4.479],[-3.926,3.184],[-21.396,-6.025]],"o":[[-14.328,-9.32],[-5.91,-11.259],[0,0],[-15.519,10.378],[-30.026,20.392],[25.658,-9.5],[4.106,2.543],[7.81,4.703],[0,0],[5.322,-3.098],[23.178,-1.499],[9.269,2.61]],"v":[[90.612,-164.036],[41.447,-200.111],[-36.487,-199.96],[-48.232,-186.526],[-86.017,-162.382],[-103.225,-139.066],[-27.752,-151.023],[-14.971,-144.242],[2.866,-133.389],[16.944,-142.305],[31.53,-150.89],[105.814,-141.86]],"c":true}]},{"t":179,"s":[{"i":[[30.513,16.349],[7.995,14.748],[4.023,-0.819],[8.788,-5.69],[15.923,-9.074],[-9.259,2.675],[-21.306,-1.529],[-4.983,-2.905],[0,0],[-7.695,4.337],[-3.926,3.083],[-21.771,-4.343]],"o":[[-14.956,-8.013],[-5.91,-10.901],[0,0],[-15.519,10.049],[-31.281,17.825],[26.218,-7.574],[4.106,2.462],[7.81,4.554],[0,0],[5.322,-2.999],[23.178,-1.451],[9.431,1.882]],"v":[[90.74,-160.187],[41.592,-192.492],[-36.341,-192.346],[-48.086,-179.339],[-85.322,-159.127],[-104.001,-137.675],[-27.606,-144.962],[-14.825,-138.397],[3.012,-127.888],[17.09,-136.52],[31.676,-144.833],[107.484,-139.818]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.078431375325,0.215686276555,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":60},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Hat","parent":15,"sr":1,"ks":{"p":{"a":0,"k":[2.458,-155.828,0]},"a":{"a":0,"k":[2.458,-155.828,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[13.35,-7.43],[4.75,-2.58],[53.996,0.022],[7.447,4.059],[3.21,1.79],[1.426,0.916],[-0.089,19.197]],"o":[[0.1,21.59],[-3.22,1.79],[-7.528,4.106],[-53.449,-0.022],[-4.75,-2.59],[-1.481,-0.823],[-11.44,-7.348],[0,0]],"v":[[153.917,-143.436],[128.967,-103.636],[116.897,-96.946],[1.137,-90.823],[-112.973,-96.946],[-125.033,-103.636],[-129.399,-106.24],[-149.983,-143.436]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[20.787,-18.83],[1.217,0.848],[53.918,0.021],[7.624,-4.944],[-0.994,-14.784],[1.68,1.799],[-3.316,25.089]],"o":[[1.232,24.688],[-1.821,-0.643],[-14.012,-9.763],[-53.529,-0.021],[-3.463,2.137],[-1.618,-1.417],[-13.477,-14.434],[0,0]],"v":[[154.941,-132.306],[130.838,-65.967],[128.715,-80.5],[-3.34,-102.455],[-116.96,-82.409],[-122.888,-61.01],[-127.853,-65.846],[-152.32,-131.324]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[7.219,-3.341],[4.013,-2.101],[53.987,0.661],[28.545,7.217],[-0.62,4.451],[2.012,0.844],[-3.25,25.245]],"o":[[0.666,19.048],[-2.547,0.804],[-7.176,2.768],[-53.45,-0.655],[-6.974,-2.777],[0.125,-2.396],[-13.616,-5.812],[0,0]],"v":[[144.256,-140.929],[129.843,-114.774],[121.722,-82.723],[2.96,-75.634],[-112.378,-89.214],[-121.767,-95.16],[-124.269,-105.057],[-152.8,-149.211]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[7.239,-3.673],[4.013,-2.311],[53.987,0.727],[29.552,-3.701],[-0.62,4.894],[2.012,0.928],[-9.811,24.167]],"o":[[0.668,20.944],[-2.554,0.884],[-7.176,3.044],[-53.45,-0.72],[-10.13,4.272],[0.125,-2.635],[-23.228,-5.225],[0,0]],"v":[[144.296,-141.293],[129.537,-109.849],[121.721,-77.293],[1.478,-84.302],[-112.884,-77.329],[-122.357,-83.977],[-123.418,-90.832],[-152.12,-140.859]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[4.949,-2.477],[4.214,-2.314],[53.992,0.707],[28.918,11.621],[-0.593,5.835],[2.035,0.705],[-3.246,22.963]],"o":[[0.247,15.374],[-2.381,1.192],[-6.684,3.67],[-53.444,-0.7],[-7.227,-3.13],[0.251,-2.467],[-13.627,-4.72],[0,0]],"v":[[143.102,-141.359],[129.851,-120.209],[121.218,-82.883],[3.413,-73.704],[-112.243,-93.139],[-121.831,-103.264],[-124.011,-110.746],[-152.835,-149.495]],"c":false}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[6.769,-2.9],[4.092,-2.185],[53.989,0.679],[27.409,8.157],[-0.609,4.998],[2.072,0.676],[-5.637,22.978]],"o":[[0.641,18.887],[-2.526,0.845],[-6.981,3.125],[-53.448,-0.673],[-7.074,-2.916],[0.175,-2.424],[-18.965,-6.189],[0,0]],"v":[[143.723,-141.174],[129.318,-113.753],[121.522,-82.787],[3.139,-74.871],[-112.82,-90.515],[-122.055,-97.284],[-124.609,-103.395],[-152.814,-149.72]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[6.271,-2.226],[4.214,-2.314],[53.992,0.707],[28.918,11.621],[-0.593,5.835],[2.035,0.775],[-3.246,24.179]],"o":[[0.621,17.847],[-2.559,0.908],[-6.684,3.67],[-53.444,-0.7],[-7.227,-3.13],[0.251,-2.467],[-13.627,-5.191],[0,0]],"v":[[143.272,-140.754],[129.658,-118.287],[121.218,-82.883],[3.413,-73.704],[-112.566,-93.46],[-121.941,-101.42],[-124.011,-107.879],[-152.835,-149.321]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[16.121,-9.701],[3.294,-1.199],[53.964,0.021],[4.086,-28.535],[3.146,0.277],[1.929,1.716],[-1.419,20.709]],"o":[[0.567,21.965],[-2.644,0.811],[-5.72,-35.428],[-53.482,-0.021],[-2.088,-2.142],[-2.288,-1.71],[-15.48,-13.767],[0,0]],"v":[[154.339,-137.736],[134.498,-83.007],[127.75,-70.388],[-1.79,-100.794],[-121.413,-72.706],[-128.348,-82.572],[-134.669,-87.704],[-153.009,-136.505]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[14.122,-6.701],[4.343,-1.952],[53.987,0.02],[20.13,19.345],[3.194,1.041],[1.441,0.767],[-0.459,16.113]],"o":[[0.23,17.753],[-3.06,1.191],[-8.271,2.22],[-53.458,-0.019],[-3.77,-2.965],[-1.488,-0.679],[-11.561,-6.158],[0,0]],"v":[[154.034,-144.929],[129.223,-111.431],[124.268,-85.373],[2.455,-67.415],[-119.255,-87.045],[-125.193,-111.136],[-129.593,-113.302],[-150.25,-144.826]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[18.688,-13.878],[4.745,-2.887],[53.996,0.025],[7.446,4.529],[3.022,2.287],[1.957,1.803],[-0.089,21.415]],"o":[[0.1,24.084],[-3.049,2.264],[-7.528,4.58],[-53.449,-0.024],[-4.75,-2.889],[-2.237,-1.693],[-15.701,-14.466],[0,0]],"v":[[153.917,-142.117],[129.849,-82.51],[116.897,-90.258],[1.137,-83.427],[-112.973,-90.258],[-121.273,-83.002],[-127.561,-88.246],[-149.983,-142.117]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[13.35,-7.43],[4.75,-2.58],[53.996,0.022],[7.447,4.059],[3.21,1.79],[1.426,0.916],[-0.089,19.197]],"o":[[0.1,21.59],[-3.22,1.79],[-7.528,4.106],[-53.449,-0.022],[-4.75,-2.59],[-1.481,-0.823],[-11.44,-7.348],[0,0]],"v":[[153.917,-143.436],[128.967,-103.636],[116.897,-96.946],[1.137,-90.823],[-112.973,-96.946],[-125.033,-103.636],[-129.399,-106.24],[-149.983,-143.436]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.078431375325,0.215686276555,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[-0.1,-21.07],[13.35,-7.43],[4.75,-2.58],[55.003,0.103],[21.383,1.669],[2.606,1.421],[3.21,1.79],[-0.1,21.59],[-48.55,20.47],[-13.68,0],[-45.71,-19.26]],"o":[[0.1,21.59],[-3.22,1.79],[-7.672,4.184],[-33.692,-0.063],[-11.867,-0.926],[-4.75,-2.59],[-13.36,-7.43],[0.1,-21.07],[45.7,-19.26],[13.68,0],[48.54,20.47]],"v":[[153.917,-143.436],[128.967,-103.636],[116.897,-96.946],[-1.964,-90.826],[-90.287,-93.425],[-119.098,-100.196],[-125.033,-103.636],[-149.983,-143.436],[-82.613,-196.296],[1.967,-221.096],[86.547,-196.296]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[-3.553,-29.408],[14.294,-10.961],[1.158,4.722],[54.645,0.096],[24.284,-5.954],[1.325,-7.475],[1.395,1.415],[-2.931,28.024],[-45.542,26.735],[-12.831,0],[-45.702,-25.181]],"o":[[3.379,27.963],[-0.837,-8.499],[-19.669,-16.062],[-28.865,-0.051],[-20.116,4.932],[-2.231,8.039],[-15.973,-16.204],[2.893,-27.656],[42.865,-25.163],[12.831,0],[48.54,26.744]],"v":[[155.166,-131.744],[130.482,-66.385],[128.182,-81.133],[-2.267,-103.4],[-100.996,-88.252],[-122.553,-73.254],[-123.469,-62.003],[-152.517,-131.128],[-86.844,-200.875],[-7.512,-233.276],[87.795,-200.806]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[-4.123,-16.733],[11.362,-4.987],[4.009,-1.841],[54.974,0.747],[22.777,5.243],[14.924,8.126],[2.925,1.882],[-2.038,20.851],[-48.054,14.548],[-11.983,-0.108],[-35.025,-13.56]],"o":[[4.745,19.023],[-2.451,0.401],[-7.675,2.411],[-33.365,-0.457],[-14.944,-3.296],[-0.053,-13.018],[-12.271,-8.154],[1.506,-15.375],[45.231,-13.693],[11.983,0.108],[34.893,13.545]],"v":[[143.263,-147.325],[130.624,-114.998],[121.686,-82.766],[2.105,-76.609],[-82.548,-84.623],[-121.545,-93.548],[-133.436,-109.545],[-152.814,-149.198],[-83.318,-187.322],[17.088,-201.457],[91.949,-185.727]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[-4.135,-18.399],[11.394,-5.484],[4.009,-2.025],[54.974,0.828],[25.273,-6.842],[14.078,-1.21],[2.925,2.069],[-7.196,21.61],[-47.769,19.233],[-11.95,-0.892],[-23.592,-11.967]],"o":[[4.758,20.917],[-2.458,0.441],[-7.675,2.651],[-33.365,-0.503],[-15.469,1.527],[1.29,-18.883],[-16.534,-5.411],[2.787,-8.368],[44.769,-18.025],[12.793,0.955],[33.756,17.124]],"v":[[143.3,-148.326],[130.32,-110.095],[121.686,-77.339],[0.623,-85.374],[-83.548,-80.27],[-121.348,-76.373],[-132.4,-93.792],[-152.185,-139.959],[-82.539,-187.899],[35.663,-209.852],[93.605,-192.346]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[-3.722,-14.485],[8.887,-3.347],[4.214,-2.314],[54.998,0.794],[22.574,5.876],[18.545,8.801],[3.035,1.741],[-1.974,18.488],[-48.235,12.429],[-11.922,-0.105],[-24.921,-6.384]],"o":[[3.807,14.816],[-2.459,0.926],[-6.812,3.74],[-33.688,-0.486],[-15.908,-4.141],[0.898,-14.255],[-12.005,-6.886],[1.407,-13.175],[45.401,-11.699],[11.922,0.105],[28.632,7.334]],"v":[[142.074,-147.63],[130.671,-120.4],[121.218,-82.883],[2.42,-74.681],[-83.098,-84.539],[-121.213,-97.993],[-134.153,-115.372],[-152.835,-149.495],[-83.065,-182.088],[27.472,-191.438],[92.383,-181.088]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[-4.074,-16.372],[11.114,-4.817],[4.09,-2.028],[54.983,0.766],[22.734,5.561],[15.179,8.467],[2.969,1.895],[-4.088,21.11],[-48.452,13.046],[-11.959,-0.111],[-34.721,-13.229]],"o":[[4.706,18.769],[-2.454,0.654],[-7.334,2.937],[-33.493,-0.469],[-14.797,-3.53],[1.043,-9.472],[-12.166,-7.924],[2.87,-14.821],[45.304,-12.199],[11.959,0.111],[34.505,13.169]],"v":[[142.715,-147.769],[130.116,-113.971],[121.501,-82.812],[2.229,-75.846],[-82.022,-84.52],[-121.867,-95.109],[-135.039,-109.213],[-153.342,-147.301],[-82.724,-187.041],[17.788,-200.552],[90.655,-187.069]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-4.105,-15.146],[11.029,-4.557],[4.214,-2.314],[54.998,0.794],[22.668,6.048],[15.57,8.989],[3.035,1.915],[-1.974,19.467],[-48.235,13.087],[-11.922,-0.111],[-36.243,-10.392]],"o":[[4.769,17.596],[-2.521,1.042],[-6.812,3.74],[-33.688,-0.486],[-14.572,-3.888],[-0.062,-9.141],[-12.005,-7.574],[1.407,-13.873],[45.401,-12.318],[11.922,0.111],[26.433,7.579]],"v":[[142.216,-147.357],[130.5,-118.497],[121.218,-82.883],[2.42,-74.681],[-81.22,-84.362],[-121.804,-98.385],[-134.153,-112.967],[-152.835,-149.321],[-83.065,-183.64],[18.858,-195.914],[91.705,-183.46]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-1.523,-23.432],[13.739,-8.485],[2.759,-4.238],[54.856,0.097],[22.713,-1.228],[1.1,-12.273],[2.869,2.408],[-1.267,23.218],[-47.311,22.075],[-13.33,0],[-45.707,-20.78]],"o":[[1.451,23.195],[-3.197,1.964],[-9.164,-42.758],[-33.794,-0.059],[-12.605,0.681],[-3.397,-8.774],[-11.351,-9.525],[1.251,-22.773],[44.532,-20.773],[13.33,0],[48.54,22.078]],"v":[[154.432,-137.525],[134.128,-82.814],[127.177,-70.347],[-3.17,-101.151],[-92.735,-91.769],[-121.434,-72.876],[-135.016,-88.423],[-153.09,-136.432],[-84.356,-194.565],[-1.938,-221.314],[87.061,-194.539]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-0.494,-17.88],[13.46,-6.363],[5.136,-2.34],[54.962,0.091],[23.851,4.689],[2.499,0.863],[3.212,1.5],[-0.426,18.101],[-45.377,11.544],[-13.583,0],[-45.253,-11.567]],"o":[[0.476,18.095],[-3.214,1.512],[-9.046,1.625],[-33.72,-0.056],[-13.236,-2.602],[-2.644,-3.522],[-13.36,-6.236],[0.42,-17.697],[45.013,-11.251],[13.583,0],[46.426,11.996]],"v":[[154.06,-144.87],[129.12,-111.377],[124.283,-85.285],[-0.168,-67.517],[-97.023,-79.422],[-119.68,-86.96],[-125.464,-111.437],[-150.273,-144.806],[-83.097,-186.006],[0.882,-198.599],[86.498,-186.271]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[-0.098,-23.503],[13.354,-8.281],[4.745,-2.887],[55.003,0.115],[21.383,1.862],[2.71,-1.388],[3.212,1.993],[-0.102,24.083],[-48.554,22.826],[-13.68,0],[-45.703,-21.5]],"o":[[0.1,24.084],[-3.22,1.997],[-7.672,4.668],[-33.692,-0.07],[-11.867,-1.033],[-6.573,3.367],[-13.36,-8.288],[0.1,-23.503],[45.7,-21.484],[13.68,0],[48.54,22.834]],"v":[[153.917,-142.117],[129.846,-82.253],[116.897,-90.258],[-1.964,-83.431],[-90.287,-86.331],[-112.973,-90.258],[-121.768,-83.65],[-149.983,-142.117],[-82.613,-201.082],[1.967,-228.746],[86.547,-201.082]],"c":true}]},{"t":179,"s":[{"i":[[-0.1,-21.07],[13.35,-7.43],[4.75,-2.58],[55.003,0.103],[21.383,1.669],[2.606,1.421],[3.21,1.79],[-0.1,21.59],[-48.55,20.47],[-13.68,0],[-45.71,-19.26]],"o":[[0.1,21.59],[-3.22,1.79],[-7.672,4.184],[-33.692,-0.063],[-11.867,-0.926],[-4.75,-2.59],[-13.36,-7.43],[0.1,-21.07],[45.7,-19.26],[13.68,0],[48.54,20.47]],"v":[[153.917,-143.436],[128.967,-103.636],[116.897,-96.946],[-1.964,-90.826],[-90.287,-93.425],[-112.973,-96.946],[-125.033,-103.636],[-149.983,-143.436],[-82.613,-196.296],[1.967,-221.096],[86.547,-196.296]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[0,-11.709],[0,0]],"o":[[0,0],[0,4.579],[0,0]],"v":[[119.237,-134.072],[119.119,-114.078],[122.119,-98.163]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[-0.872,-7.817],[0,0]],"o":[[0,0],[0.662,5.935],[0,0]],"v":[[117.97,-121.775],[119.119,-93.456],[120.136,-84.065]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[0.645,-6.195],[0,0]],"o":[[0,0],[-0.987,8.702],[0,0]],"v":[[126.521,-118.856],[124.546,-108.145],[119.588,-84.661]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[0.645,-6.811],[0,0]],"o":[[0,0],[-0.987,9.569],[0,0]],"v":[[126.511,-117.022],[124.546,-105.245],[119.588,-79.423]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[0.755,-5.526],[0,0]],"o":[[0,0],[-1.105,8.093],[0,0]],"v":[[127.244,-120.535],[124.936,-111.949],[119.548,-84.703]],"c":false}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[0.689,-6.148],[0,0]],"o":[[0,0],[-1.033,8.781],[0,0]],"v":[[126.741,-118.773],[124.7,-108.563],[119.572,-84.677]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[0.755,-6.078],[0,0]],"o":[[0,0],[-1.105,8.902],[0,0]],"v":[[126.98,-118.646],[124.936,-109.202],[119.548,-84.703]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[-0.359,-9.82],[0,0]],"o":[[0,0],[0.273,4.921],[0,0]],"v":[[118.715,-128.275],[119.119,-105.886],[121.302,-93.002]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[0.218,-2.722],[0,0]],"o":[[0,0],[-0.083,1.367],[0,0]],"v":[[117.185,-114.031],[118.067,-101.442],[121.823,-86.096]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[0,-13.061],[0,0]],"o":[[0,0],[0,5.107],[0,0]],"v":[[119.237,-131.671],[119.119,-109.369],[121.865,-91.44]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[0,-11.709],[0,0]],"o":[[0,0],[0,4.579],[0,0]],"v":[[119.237,-134.072],[119.119,-114.078],[122.119,-98.163]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.078431375325,0.215686276555,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[0,-11.709],[0,0]],"o":[[0,0],[0,4.579],[0,0]],"v":[[-114.988,-134.072],[-114.87,-114.078],[-117.87,-98.163]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[0.02,-6.609],[0,0]],"o":[[0,0],[-0.019,5.982],[0,0]],"v":[[-116.561,-115.016],[-114.87,-93.456],[-120.665,-82.695]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[-0.079,-3.874],[0,0]],"o":[[0,0],[0.076,3.734],[0,0]],"v":[[-119.355,-120.494],[-119.049,-114.893],[-120.085,-101.768]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[-0.079,-4.26],[0,0]],"o":[[0,0],[0.076,4.106],[0,0]],"v":[[-119.886,-114.103],[-119.579,-107.945],[-120.605,-92.192]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[-0.086,-3.343],[0,0]],"o":[[0,0],[0.083,3.248],[0,0]],"v":[[-119.556,-122.574],[-119.349,-118.526],[-119.462,-105.969]],"c":false}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[-0.081,-3.796],[0,0]],"o":[[0,0],[0.079,3.67],[0,0]],"v":[[-119.435,-120.649],[-119.168,-115.503],[-119.946,-97.671]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[-0.086,-3.677],[0,0]],"o":[[0,0],[0.083,3.573],[0,0]],"v":[[-119.556,-120.888],[-119.349,-116.435],[-119.385,-103.255]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[0.008,-9.366],[0,0]],"o":[[0,0],[-0.008,4.938],[0,0]],"v":[[-115.636,-125.737],[-114.87,-105.886],[-117.523,-86.645]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[0.004,-2.092],[0,0]],"o":[[0,0],[-0.002,1.103],[0,0]],"v":[[-115.461,-112.071],[-114.628,-100.314],[-116.968,-88.309]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[0,-13.061],[0,0]],"o":[[0,0],[0,5.107],[0,0]],"v":[[-114.988,-131.671],[-114.87,-109.369],[-116.092,-95.362]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[0,-11.709],[0,0]],"o":[[0,0],[0,4.579],[0,0]],"v":[[-114.988,-134.072],[-114.87,-114.078],[-117.87,-98.163]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.141176477075,0.372549027205,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[29.207,-0.463],[-19.992,-45.821],[0,0],[-52.55,21.69],[-15.76,0],[-52.55,-21.7],[0,0],[0,0]],"o":[[-31.565,0.5],[0,0],[0,0],[52.55,-21.7],[15.76,0],[52.55,21.69],[0,0],[25.407,-44.432]],"v":[[1.967,-220.633],[-148.833,-131.773],[-148.823,-131.773],[-98.273,-176.923],[1.967,-203.854],[102.207,-176.923],[152.757,-131.773],[152.767,-131.773]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[27.395,-0.605],[-19.992,-59.866],[0,0],[-49.285,28.349],[-14.783,0],[-52.554,-28.341],[0,0],[0,0]],"o":[[-29.607,0.653],[0,0],[0,0],[49.289,-28.351],[14.783,0],[52.55,28.338],[0,0],[25.407,-58.051]],"v":[[-7.512,-232.672],[-151.105,-116.151],[-151.095,-116.151],[-101.932,-177.783],[-7.635,-218.995],[102.782,-177.18],[152.757,-116.575],[152.767,-116.575]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[25.59,-0.108],[-20.054,-33.738],[0,0],[-52.003,15.417],[-13.806,-0.125],[-42.82,-16.481],[0,0],[0,0]],"o":[[-27.655,0.117],[0,0],[0,0],[52.005,-15.418],[13.806,0.125],[35.05,13.598],[0,0],[7.909,-41.48]],"v":[[17.083,-201.119],[-151.74,-140.664],[-151.729,-140.664],[-97.918,-168.409],[19.209,-186.941],[101.875,-168.575],[143.851,-138],[143.858,-138]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[25.474,2.435],[-20.054,-37.097],[0,0],[-34.448,14.761],[-14.862,-0.742],[-38.671,-18.983],[0,0],[0,0]],"o":[[-55.104,-5.267],[0,0],[0,0],[60.975,-26.128],[13.788,0.688],[35.05,14.952],[0,0],[7.931,-45.61]],"v":[[33.756,-210.128],[-151.266,-131.554],[-152.077,-128.667],[-96.013,-167.551],[36.833,-196.202],[102.563,-173.805],[143.89,-138.073],[143.897,-138.073]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[25.46,-0.066],[-20.058,-28.965],[0,0],[-52.198,13.171],[-13.736,-0.121],[-35.17,-10.697],[0,0],[0,0]],"o":[[-27.515,0.071],[0,0],[0,0],[52.201,-13.172],[13.736,0.121],[34.118,10.377],[0,0],[6.526,-36.63]],"v":[[27.467,-191.148],[-151.785,-142.159],[-151.775,-142.158],[-97.629,-165.167],[29.755,-178.224],[101.81,-165.368],[142.822,-139.534],[142.829,-139.534]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[25.539,-0.094],[-20.055,-32.995],[0,0],[-52.08,15.049],[-13.778,-0.128],[-42.543,-16.143],[0,0],[0,0]],"o":[[-27.6,0.101],[0,0],[0,0],[52.083,-15.05],[13.778,0.128],[34.552,13.178],[0,0],[7.35,-41.009]],"v":[[17.783,-200.22],[-151.758,-141.362],[-151.747,-141.362],[-97.804,-168.142],[19.973,-186.028],[101.849,-168.33],[143.368,-138.61],[143.376,-138.61]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[25.46,-0.069],[-20.058,-30.499],[0,0],[-52.198,13.869],[-13.736,-0.128],[-42.12,-14.961],[0,0],[0,0]],"o":[[-27.515,0.075],[0,0],[0,0],[52.201,-13.869],[13.736,0.128],[33.79,12.002],[0,0],[6.704,-38.569]],"v":[[18.853,-195.608],[-151.785,-141.596],[-151.775,-141.596],[-97.629,-165.822],[21.141,-182],[101.81,-166.034],[142.985,-138.833],[142.992,-138.832]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[28.461,-0.499],[-19.992,-49.422],[0,0],[-51.205,23.398],[-15.358,0],[-52.552,-23.401],[0,0],[0,0]],"o":[[-30.758,0.539],[0,0],[0,0],[51.206,-23.405],[15.358,0],[52.55,23.394],[0,0],[25.407,-47.924]],"v":[[-1.938,-220.814],[-151.832,-123.95],[-151.822,-123.95],[-99.616,-173.67],[-1.736,-205.709],[102.207,-173.67],[152.757,-124.972],[152.767,-124.972]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[28.461,-0.415],[-20.556,-55.125],[0,0],[-53.535,14.453],[-15.358,0],[-54.191,-15.271],[0,0],[0,0]],"o":[[-30.758,0.448],[0,0],[0,0],[47.496,-13.233],[15.358,0],[54.505,15.339],[0,0],[23.15,-51.663]],"v":[[-2.413,-198.413],[-146.538,-129.519],[-146.185,-129.943],[-98.462,-165.772],[-3.506,-182.448],[99.004,-167.26],[152.068,-132.738],[151.413,-131.339]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[29.207,-0.516],[-19.992,-51.113],[0,0],[-52.546,24.204],[-15.76,0],[-52.554,-24.197],[0,0],[0,0]],"o":[[-31.565,0.558],[0,0],[0,0],[52.55,-24.206],[15.76,0],[52.55,24.195],[0,0],[25.407,-49.564]],"v":[[1.967,-228.23],[-148.833,-129.107],[-148.823,-129.107],[-98.273,-179.472],[2.5,-213.63],[102.207,-179.472],[152.757,-129.107],[152.767,-129.107]],"c":true}]},{"t":179,"s":[{"i":[[29.207,-0.463],[-19.992,-45.821],[0,0],[-52.55,21.69],[-15.76,0],[-52.55,-21.7],[0,0],[0,0]],"o":[[-31.565,0.5],[0,0],[0,0],[52.55,-21.7],[15.76,0],[52.55,21.69],[0,0],[25.407,-44.432]],"v":[[1.967,-220.633],[-148.833,-131.773],[-148.823,-131.773],[-98.273,-176.923],[1.967,-203.854],[102.207,-176.923],[152.757,-131.773],[152.767,-131.773]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.568627476692,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":50},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[-5.299,-5.197],[0,0],[-1.163,-3.663],[0,0],[-18.204,10.079],[5.703,21.363],[0,0],[6.518,-6.076],[24.763,11.392]],"o":[[33.439,-2.05],[7.888,7.736],[0,0],[1.163,3.663],[0,0],[18.204,-10.079],[-5.703,-21.363],[0,0],[-7.056,6.578],[0,0]],"v":[[21.273,-149.178],[78.404,-135.561],[77.938,-125.958],[105.629,-105.676],[97.987,-103.01],[128.544,-101.969],[152.082,-153.724],[104.924,-185.116],[116.897,-170.589],[44.755,-183.909]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[0,0],[-5.3,-6.79],[0,0],[-1.163,-4.786],[0,0],[4.913,-28.624],[5.703,27.91],[0,0],[6.518,-7.939],[24.763,14.883]],"o":[[33.439,-2.679],[7.888,10.107],[0,0],[1.163,4.786],[0,0],[17.832,-10.061],[-5.703,-27.91],[0,0],[-7.056,8.594],[0,0]],"v":[[6.72,-155.158],[83.262,-129.222],[77.938,-108.977],[103.421,-91.664],[98.225,-89.694],[129.379,-65.778],[152.082,-145.254],[104.924,-186.267],[116.897,-167.288],[30.472,-189.406]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[-4.339,-3.844],[0,0],[-4.218,-2.025],[0,0],[-2.195,5.538],[3.971,15.684],[0,0],[7.995,-8.825],[20.2,8.523]],"o":[[20.989,-6.438],[6.458,5.722],[0,0],[3.053,1.546],[0,0],[14.914,-8.332],[-3.971,-15.684],[0,0],[-10.836,11.961],[0,0]],"v":[[40.938,-123.825],[84.617,-122.622],[74.442,-106.585],[107.049,-103.899],[121.202,-84.587],[131.314,-115.224],[143.567,-154.078],[106.827,-177.41],[119.319,-155.088],[56.75,-157.07]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[-4.719,-3.798],[0,0],[-4.218,-2.227],[0,0],[-2.201,6.09],[3.982,17.246],[0,0],[8.017,-9.704],[20.2,9.371]],"o":[[20.989,-7.078],[11.102,8.934],[0,0],[3.053,1.7],[0,0],[14.956,-9.162],[-3.982,-17.246],[0,0],[-10.866,13.152],[0,0]],"v":[[40.938,-122.487],[84.935,-128.893],[78.696,-109.289],[106.405,-104.399],[121.202,-79.342],[131.012,-110.344],[143.605,-155.752],[106.633,-182.629],[119.288,-156.862],[56.75,-159.041]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[-3.392,-4.199],[0,0],[-4.437,-1.66],[0,0],[-2.544,7.271],[3.708,13.46],[0,0],[7.759,-8.091],[19.872,7.333]],"o":[[20.093,-6.099],[7.187,8.898],[0,0],[3.189,1.193],[0,0],[14.147,-7.463],[-3.708,-13.46],[0,0],[-10.64,11.095],[0,0]],"v":[[43.4,-123.194],[88.931,-115.327],[74.777,-97.856],[100.894,-100.2],[122.856,-84.219],[131.443,-120.66],[142.573,-153.328],[106.964,-173.384],[122.302,-147.004],[58.641,-153.354]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[-4.311,-3.761],[0,0],[-4.305,-1.946],[0,0],[-2.338,6.511],[3.866,15.336],[0,0],[7.904,-8.855],[20.071,8.342]],"o":[[20.635,-6.545],[6.417,5.597],[0,0],[3.107,1.453],[0,0],[14.611,-8.283],[-3.866,-15.336],[0,0],[-10.763,12.057],[0,0]],"v":[[41.912,-122.933],[82.524,-124.152],[78.43,-107.527],[106.49,-107.822],[121.857,-84.442],[130.84,-114.221],[143.099,-154.33],[106.881,-177.158],[119.496,-154.74],[57.498,-156.149]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[-3.642,-4.261],[0,0],[-4.437,-1.826],[0,0],[-2.613,7.997],[3.81,14.173],[0,0],[7.971,-8.52],[19.872,8.065]],"o":[[20.093,-6.708],[6.833,7.995],[0,0],[3.189,1.312],[0,0],[14.534,-8.208],[-3.81,-14.173],[0,0],[-10.931,11.683],[0,0]],"v":[[43.4,-121.57],[82.493,-123.938],[76.402,-103.624],[106.143,-101.972],[122.856,-84.219],[131.294,-118.783],[142.729,-153.356],[106.964,-174.474],[119.487,-152.874],[58.641,-154.743]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[-5.3,-5.606],[0,0],[-1.163,-3.951],[0,0],[-15.537,2.362],[5.703,23.041],[0,0],[6.518,-6.554],[24.763,12.287]],"o":[[33.439,-2.211],[7.888,8.344],[0,0],[1.163,3.951],[0,0],[18.051,-9.704],[-5.703,-23.041],[0,0],[-7.056,7.095],[0,0]],"v":[[20.559,-148.009],[78.404,-129.057],[77.938,-118.699],[104.719,-100.273],[98.085,-97.965],[133.649,-81.956],[152.082,-148.647],[104.924,-182.506],[116.897,-166.837],[44.755,-181.204]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[-7.714,-0.15],[0,0],[-4.283,0.389],[0,0],[-10.575,3.701],[14.478,17.697],[0,0],[5.551,-21.18],[47.05,5.362]],"o":[[29.664,-7.515],[7.377,2.462],[0,0],[3.107,0.052],[0,0],[20.542,-13.344],[-18.272,-21.02],[0,0],[-7.265,18.923],[0,0]],"v":[[26.598,-110.574],[70.783,-111.138],[80.18,-102.155],[100.286,-98.978],[118.251,-102.355],[131.334,-111.425],[146.054,-158.895],[95.632,-182.17],[143.574,-150.749],[51.297,-133.292]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[-5.3,-5.797],[0,0],[-1.163,-4.086],[0,0],[-4.529,2.102],[5.703,23.83],[0,0],[6.518,-6.778],[23.177,8.774]],"o":[[33.439,-2.287],[7.888,8.629],[0,0],[1.163,4.086],[0,0],[19.35,-8.982],[-5.703,-23.83],[0,0],[-7.056,7.337],[0,0]],"v":[[21.273,-148.522],[82.96,-140.296],[77.938,-122.621],[105.629,-99.996],[97.987,-97.022],[130.69,-82.443],[152.082,-153.593],[104.924,-188.61],[113.176,-175.936],[44.755,-187.264]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[-5.299,-5.197],[0,0],[-1.163,-3.663],[0,0],[-18.204,10.079],[5.703,21.363],[0,0],[6.518,-6.076],[24.763,11.392]],"o":[[33.439,-2.05],[7.888,7.736],[0,0],[1.163,3.663],[0,0],[18.204,-10.079],[-5.703,-21.363],[0,0],[-7.056,6.578],[0,0]],"v":[[21.273,-149.178],[78.404,-135.561],[77.938,-125.958],[105.629,-105.676],[97.987,-103.01],[128.544,-101.969],[152.082,-153.724],[104.924,-185.116],[116.897,-170.589],[44.755,-183.909]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":60},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 6","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[-26.755,36.806],[-14.602,-5.713],[0,0],[7.174,-5.187]],"o":[[0,0],[9.803,3.835],[0,0],[0,0]],"v":[[-142.57,-162.764],[-133.927,-132.506],[-114.195,-135.168],[-118.999,-99.159]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[-26.595,56.119],[-14.602,-7.464],[0,0],[-0.991,-15.77]],"o":[[0,0],[9.803,5.011],[0,0],[0,0]],"v":[[-142.57,-157.065],[-134.027,-115.281],[-114.87,-111.455],[-122.722,-60.976]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[-27.879,30.281],[-11.094,-10.589],[0,0],[0.938,-8.21]],"o":[[0,0],[9.158,8.814],[0,0],[0,0]],"v":[[-144.818,-162.981],[-135.979,-133.349],[-119.108,-121.939],[-121.42,-103.793]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[-29.027,43.845],[-11.094,-11.643],[0,0],[0.938,-9.027]],"o":[[0,0],[8.046,11.383],[0,0],[0,0]],"v":[[-144.345,-156.093],[-136.166,-122.027],[-119.639,-115.693],[-123.066,-90.677]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[-27.972,25.841],[-10.842,-9.832],[0,0],[1.077,-6.97]],"o":[[0,0],[9.112,8.263],[0,0],[0,0]],"v":[[-144.98,-161.232],[-136.12,-135.085],[-119.413,-124.216],[-121.326,-109.833]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[-29.773,37.297],[-10.994,-10.678],[0,0],[0.993,-7.995]],"o":[[0,0],[9.14,8.923],[0,0],[0,0]],"v":[[-144.129,-162.032],[-137.504,-132.273],[-119.229,-122.238],[-121.825,-102.235]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-27.972,27.209],[-10.842,-10.352],[0,0],[1.077,-7.666]],"o":[[0,0],[9.112,8.7],[0,0],[0,0]],"v":[[-144.98,-161.68],[-136.12,-134.148],[-119.413,-122.694],[-121.326,-106.875]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-29.835,49.039],[-14.602,-6.162],[0,0],[7.174,-5.595]],"o":[[0,0],[9.803,4.137],[0,0],[0,0]],"v":[[-142.57,-158.398],[-133.968,-124.916],[-114.473,-125.045],[-121.338,-81.672]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-26.303,30.791],[-13.096,-8.045],[0,0],[0.442,-3.958]],"o":[[0,0],[7.977,4.901],[0,0],[0,0]],"v":[[-142.57,-161.099],[-133.411,-126.185],[-120.67,-119.345],[-119.857,-108.044]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[-26.755,41.057],[-14.602,-6.373],[0,0],[7.174,-5.786]],"o":[[0,0],[9.803,4.278],[0,0],[0,0]],"v":[[-142.57,-163.677],[-133.927,-129.925],[-114.195,-132.894],[-121.072,-83.467]],"c":true}]},{"t":179,"s":[{"i":[[-26.755,36.806],[-14.602,-5.713],[0,0],[7.174,-5.187]],"o":[[0,0],[9.803,3.835],[0,0],[0,0]],"v":[[-142.57,-162.764],[-133.927,-132.506],[-114.195,-135.168],[-118.999,-99.159]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":40},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 7","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[-2.814,-20.881],[9.8,-9.402],[14.123,-3.548],[38.565,0.395],[26.432,13.614],[5.987,6.416],[-0.27,10.19],[-48.55,20.47],[-13.68,0],[-45.71,-19.26]],"o":[[1.428,10.596],[-7.022,6.738],[-25.453,6.395],[-48.569,-0.497],[-6.745,-3.474],[-8.602,-9.218],[0.558,-21.063],[45.7,-19.26],[13.68,0],[48.54,20.47]],"v":[[153.917,-143.436],[142.117,-111.978],[110.677,-96.011],[0,-90.822],[-124.182,-102.614],[-139.053,-113.031],[-149.983,-143.436],[-82.613,-198.296],[1.967,-221.096],[86.547,-198.296]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":14,"s":[{"i":[[-2.814,-27.282],[5.9,-13.508],[6.934,-3.122],[38.565,0.516],[-3.361,-41.605],[3.783,9.397],[-0.27,13.314],[-45.542,26.735],[-12.831,0],[-45.703,-25.181]],"o":[[1.428,13.844],[-4.228,9.68],[8.793,-36.335],[-48.569,-0.65],[-12.094,-13.043],[-5.435,-13.5],[0.558,-27.519],[42.865,-25.163],[12.831,0],[48.54,26.744]],"v":[[153.917,-131.813],[146.609,-87.164],[129.645,-66.628],[-1.194,-102.821],[-125.036,-62.147],[-145.609,-93.756],[-149.983,-131.813],[-86.844,-203.488],[-7.512,-233.276],[86.547,-203.488]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[-1.86,-15.311],[10.699,-5.224],[-8.189,-26.658],[38.558,0.829],[34.747,15.325],[5.481,4.365],[-2.343,17.583],[-48.054,14.548],[-11.983,-0.108],[-37.303,-14.448]],"o":[[0.944,7.769],[-6.119,3.098],[-20.409,2.749],[-48.56,-1.044],[0.108,-9.388],[-7.874,-6.271],[1.911,-15.297],[45.231,-13.693],[11.983,0.108],[39.617,15.344]],"v":[[144.812,-146.532],[134.678,-122.079],[124.388,-82.835],[4.008,-76.543],[-121.466,-94.306],[-139.268,-114.508],[-152.644,-149.244],[-83.297,-188.786],[17.088,-201.457],[91.887,-187.196]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[-1.866,-16.835],[10.729,-5.745],[-8.189,-29.312],[38.558,0.912],[48.801,-6.953],[5.481,4.8],[-3.823,23.856],[-39.666,13.923],[-11.983,-0.119],[-37.303,-15.887]],"o":[[0.947,8.543],[-6.136,3.406],[-20.409,3.023],[-48.56,-1.148],[0.622,-17.342],[-7.874,-6.896],[1.606,-12.089],[44.98,-15.788],[11.983,0.119],[39.617,16.872]],"v":[[144.853,-147.454],[136.484,-116.245],[124.388,-77.416],[2.527,-85.302],[-121.359,-76.553],[-142.398,-99.717],[-152.17,-140.988],[-81.782,-191.409],[33.761,-210.5],[91.887,-192.166]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[-1.729,-13.137],[10.571,-4.208],[-1.32,-21.234],[38.557,0.852],[29.465,19.53],[5.603,3.64],[-2.492,16.265],[-48.235,12.429],[-11.922,-0.105],[-36.698,-12.434]],"o":[[0.877,6.666],[-5.994,2.386],[-22.511,5.562],[-48.559,-1.073],[1.749,-9.94],[-8.049,-5.229],[2.008,-13.109],[45.401,-11.699],[11.922,0.105],[38.974,13.205]],"v":[[143.733,-146.852],[133.826,-125.941],[124.009,-84.002],[4.383,-74.652],[-121.306,-100.259],[-138.812,-118.131],[-152.835,-149.495],[-83.042,-183.345],[27.472,-191.438],[92.271,-181.795]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[-1.808,-14.97],[10.654,-4.989],[-8.619,-27.328],[38.557,0.838],[35.832,16.945],[5.529,4.222],[-3.827,17.993],[-48.126,14.201],[-11.959,-0.111],[-37.064,-14.143]],"o":[[0.917,7.596],[-6.072,2.91],[-21.241,3.862],[-48.56,-1.056],[0.455,-9.284],[-7.943,-6.066],[1.95,-14.949],[45.298,-13.366],[11.959,0.111],[39.362,15.02]],"v":[[144.309,-146.951],[136.082,-120.575],[124.238,-83.297],[4.157,-75.795],[-121.744,-96.411],[-141.051,-113.404],[-152.719,-149.74],[-83.196,-188.368],[17.788,-200.552],[92.039,-186.732]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-1.776,-13.833],[10.86,-4.628],[-9.277,-28.352],[38.557,0.852],[37.489,19.422],[5.603,4.003],[-2.492,17.127],[-48.235,13.087],[-11.922,-0.111],[-36.698,-13.092]],"o":[[0.901,7.019],[-6.158,2.624],[-22.511,5.562],[-48.559,-1.073],[0.986,-9.125],[-8.049,-5.751],[2.008,-13.803],[45.401,-12.318],[11.922,0.111],[38.974,13.904]],"v":[[143.92,-146.538],[133.742,-124.591],[124.009,-84.002],[4.383,-74.652],[-121.615,-100.518],[-138.812,-116.001],[-152.835,-149.321],[-83.042,-184.963],[18.858,-195.914],[92.271,-183.331]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-2.814,-22.522],[8.899,-9.453],[10.858,-0.771],[38.565,0.426],[25.699,-19.561],[5.037,6.416],[-0.27,10.991],[-47.311,22.075],[-13.33,0],[-45.707,-20.78]],"o":[[1.428,11.428],[-6.377,6.774],[-10.825,-18.91],[-48.569,-0.536],[-11.139,-4.386],[-7.237,-9.217],[0.558,-22.718],[44.532,-20.773],[13.33,0],[48.54,22.078]],"v":[[153.917,-137.551],[144.118,-97.76],[122.93,-82.817],[-1.574,-100.932],[-121.64,-79.248],[-145.042,-104.668],[-152.046,-136.689],[-84.356,-196.722],[-1.938,-221.314],[86.547,-196.722]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-1.625,-17.638],[8.855,-9.377],[2.917,-10.226],[38.565,0.365],[23.146,4.308],[1.941,5.649],[-0.251,15.625],[-48.207,10.392],[-13.583,0],[-45.707,-9.785]],"o":[[1.43,17.118],[-4.531,4.8],[-26.133,11.05],[-48.569,-0.46],[-4.664,-9.93],[-11.495,-7.568],[0.314,-17.682],[45.375,-9.78],[13.583,0],[48.54,10.394]],"v":[[153.917,-144.877],[132.792,-113.391],[124.121,-85.401],[1.694,-67.453],[-120.137,-86.521],[-129.279,-114.401],[-149.983,-144.877],[-83.097,-187.022],[0.882,-198.599],[86.547,-187.022]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[-2.814,-23.293],[9.8,-10.488],[22.717,10.995],[38.565,0.44],[16.271,-17.058],[5.987,7.157],[-0.27,11.367],[-48.554,22.826],[-13.68,0],[-45.703,-21.499]],"o":[[1.428,11.82],[-7.022,7.516],[-23.876,-11.556],[-48.569,-0.555],[-9.37,9.823],[-8.602,-10.283],[0.558,-23.495],[45.7,-21.484],[13.68,0],[48.54,22.834]],"v":[[153.917,-142.117],[144.31,-99.793],[110.677,-89.215],[0,-83.427],[-115.394,-90.013],[-140.334,-104.217],[-149.983,-142.117],[-82.613,-203.313],[1.967,-228.746],[86.547,-203.313]],"c":true}]},{"t":179,"s":[{"i":[[-2.814,-20.881],[9.8,-9.402],[14.123,-3.548],[38.565,0.395],[23.707,7.043],[5.987,6.416],[-0.27,10.19],[-48.55,20.47],[-13.68,0],[-45.71,-19.26]],"o":[[1.428,10.596],[-7.022,6.738],[-25.453,6.395],[-48.569,-0.497],[-12.862,-3.821],[-8.602,-9.218],[0.558,-21.063],[45.7,-19.26],[13.68,0],[48.54,20.47]],"v":[[153.917,-143.436],[142.117,-111.978],[110.677,-96.011],[0,-90.822],[-111.307,-97.239],[-139.053,-113.031],[-149.983,-143.436],[-82.613,-198.296],[1.967,-221.096],[86.547,-198.296]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.06,0,0.38,0.784,0.495,0,0.304,0.665,0.929,0,0.227,0.545]}},"s":{"a":0,"k":[-116.325,-170.844]},"e":{"a":0,"k":[116.125,-127.798]},"t":1,"nm":"Gradient Fill 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 8","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Mouth","parent":1,"sr":1,"ks":{"p":{"a":0,"k":[54.626,129.131,0]},"a":{"a":0,"k":[3.989,70.617,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[-6.408,0],[-4.085,0],[-4.12,0],[0,0],[10.241,-2.151],[4.279,0],[4.21,1.006]],"o":[[0,0],[4.35,0],[3.927,0],[8.436,0],[0,0],[-3.636,0.764],[-5.085,0],[-9.313,-2.226]],"v":[[-26.814,66.144],[-11.012,68.375],[3.991,70.681],[17.35,68.424],[34.205,66.144],[16.948,70.4],[3.991,73.1],[-11.112,69.945]],"c":true}]},{"i":{"x":0.1,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[-3.736,-0.948],[-2.45,-0.052],[-2.48,0.67],[0,0],[4.26,-1.446],[2.241,0.027],[2.622,0.704]],"o":[[0,0],[1.859,0.472],[2.355,0.05],[4.702,-1.27],[0,0],[-2.185,0.741],[-3.05,-0.037],[-6.31,-1.695]],"v":[[-9.378,68.914],[4.173,72.532],[14.179,73.356],[19.598,72.327],[26.133,70.145],[19.494,72.496],[14.137,74.012],[3.852,72.391]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[-3.888,-0.948],[-2.55,-0.052],[-2.58,0.67],[0,0],[4.433,-1.446],[2.332,0.027],[2.728,0.704]],"o":[[0,0],[1.935,0.472],[2.451,0.05],[4.893,-1.27],[0,0],[-2.273,0.741],[-3.174,-0.037],[-6.566,-1.695]],"v":[[-10.021,68.914],[4.08,72.532],[14.493,73.356],[20.132,72.327],[26.932,70.145],[20.023,72.496],[14.449,74.012],[3.746,72.391]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[-6.176,0],[-3.937,0],[-3.97,0],[0,0],[10.052,-1.422],[4.124,0],[4.334,0.668]],"o":[[0,0],[4.193,0],[3.784,0],[8.13,0],[0,0],[-3.627,0.513],[-4.901,0],[-9.198,-1.418]],"v":[[-24.545,66.606],[-10.404,68.496],[3.981,70.287],[16.932,68.551],[32.448,66.609],[16.543,70.733],[3.924,71.952],[-10.5,70.23]],"c":true}]},{"i":{"x":0.335,"y":1},"o":{"x":0.45,"y":0},"t":142,"s":[{"i":[[0,0],[-6.408,0],[-4.085,0],[-4.12,0],[0,0],[10.241,-2.151],[4.279,0],[4.21,1.006]],"o":[[0,0],[4.35,0],[3.927,0],[8.436,0],[0,0],[-3.636,0.764],[-5.085,0],[-9.313,-2.226]],"v":[[-27.018,68.697],[-11.216,70.928],[3.787,73.234],[17.147,70.977],[34.001,68.697],[16.744,72.953],[3.787,75.653],[-11.316,72.498]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":159,"s":[{"i":[[0,0],[-6.113,-0.712],[-3.924,0],[-3.942,0.338],[0,0],[9.837,-1.781],[4.11,0],[4.044,0.833]],"o":[[0,0],[3.896,0.454],[3.772,0],[7.599,-0.652],[0,0],[-3.492,0.632],[-4.884,0],[-8.946,-1.842]],"v":[[-23.477,67.072],[-10.362,69.09],[3.991,70.499],[16.817,69.381],[30.696,67.349],[16.437,70.266],[3.995,71.938],[-10.516,69.889]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[-6.408,0],[-4.085,0],[-4.12,0],[0,0],[10.241,-2.151],[4.279,0],[4.21,1.006]],"o":[[0,0],[4.35,0],[3.927,0],[8.436,0],[0,0],[-3.636,0.764],[-5.085,0],[-9.313,-2.226]],"v":[[-26.814,66.144],[-11.012,68.375],[3.991,70.681],[17.35,68.424],[34.205,66.144],[16.948,70.4],[3.991,73.1],[-11.112,69.945]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.364705890417,0.172549024224,0.090196080506,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":1},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.364705890417,0.172549024224,0.090196080506,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[2.62,1.473],[8.677,3.111],[3.111,0],[8.677,-3.111],[2.62,-1.473],[-21.584,0]],"o":[[-2.619,-1.473],[-8.677,-3.111],[-3.11,0],[-8.677,3.111],[-2.619,1.473],[21.332,0]],"v":[[40.826,63.078],[17.742,60.786],[3.99,62.078],[-9.761,60.786],[-32.845,63.078],[3.99,81.56]],"c":true}]},{"i":{"x":0.1,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[1.516,1.542],[5.075,2.643],[1.865,0.04],[5.044,-2.197],[1.981,-1.431],[-17.633,0.153]],"o":[[-2.305,-2.345],[-5.305,-2.763],[-1.865,-0.04],[-5.988,2.608],[-1.981,1.431],[12.796,-0.111]],"v":[[32.59,65.205],[22.808,62.638],[14.362,64.821],[3.483,62.491],[-19.217,64.767],[10.914,83.894]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[1.578,1.542],[5.281,2.643],[1.941,0.04],[5.249,-2.197],[2.061,-1.431],[-18.349,0.153]],"o":[[-2.399,-2.345],[-5.521,-2.763],[-1.941,-0.04],[-6.231,2.608],[-2.061,1.431],[13.316,-0.111]],"v":[[33.651,65.205],[23.472,62.638],[14.683,64.821],[3.362,62.491],[-20.259,64.767],[11.095,83.894]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[2.524,1.627],[8.363,3.436],[2.998,0],[8.363,-3.436],[2.524,-1.627],[-20.802,0]],"o":[[-2.524,-1.627],[-8.363,-3.436],[-2.998,0],[-8.363,3.436],[-2.524,1.627],[20.559,0]],"v":[[39.492,63.643],[17.244,61.111],[3.99,62.538],[-9.263,61.111],[-31.511,63.643],[3.99,84.057]],"c":true}]},{"i":{"x":0.335,"y":1},"o":{"x":0.45,"y":0},"t":142,"s":[{"i":[[2.619,1.473],[8.677,3.111],[3.11,0],[8.677,-3.111],[2.619,-1.473],[-21.584,0]],"o":[[-2.619,-1.473],[-8.677,-3.111],[-3.11,0],[-8.677,3.111],[-2.619,1.473],[21.332,0]],"v":[[40.622,65.631],[17.539,63.339],[3.787,64.631],[-9.965,63.339],[-33.048,65.631],[3.787,84.113]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":159,"s":[{"i":[[2.516,1.473],[8.334,3.111],[2.988,0],[8.334,-3.111],[2.516,-1.473],[-20.732,0]],"o":[[-2.516,-1.473],[-8.334,-3.111],[-2.988,0],[-8.334,3.111],[-2.516,1.473],[20.49,0]],"v":[[39.373,63.078],[17.2,60.786],[3.991,62.078],[-9.219,60.786],[-31.392,63.078],[3.991,81.56]],"c":true}]},{"t":179,"s":[{"i":[[2.62,1.473],[8.677,3.111],[3.111,0],[8.677,-3.111],[2.62,-1.473],[-21.584,0]],"o":[[-2.619,-1.473],[-8.677,-3.111],[-3.11,0],[-8.677,3.111],[-2.619,1.473],[21.332,0]],"v":[[40.826,63.078],[17.742,60.786],[3.99,62.078],[-9.761,60.786],[-32.845,63.078],[3.99,81.56]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.772549033165,0.392156869173,0.254901975393,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"Brows","parent":1,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[53.887,-6.406,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":12,"s":[53.098,11.577,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.274,"y":0.729},"o":{"x":0.399,"y":0},"t":23,"s":[54,-2.408,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.519,"y":0.444},"o":{"x":0.065,"y":1},"t":50,"s":[57.2,10.359,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.637,"y":1},"o":{"x":0.304,"y":0.046},"t":89,"s":[57.568,10.633,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[57.663,9.206,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[53.887,-6.406,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[54.211,14.591,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":154,"s":[53.893,-7.406,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[53.887,-6.406,0]}]},"a":{"a":0,"k":[3.25,-64.92,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[14.264,-0.445],[0,0],[-14.764,-0.43]],"o":[[0,0],[-13.668,0.427],[0,0],[16.264,0.474]],"v":[[89.114,-59.065],[62.832,-66.863],[43.516,-61.269],[62.832,-70.762]],"c":true}]},{"i":{"x":0.31,"y":1},"o":{"x":0.2,"y":0},"t":12,"s":[{"i":[[0,0],[13.832,-3.511],[0,0],[-14.509,2.764]],"o":[[0,0],[-13.254,3.365],[0,0],[15.983,-3.045]],"v":[[85.014,-61.536],[57.669,-63.482],[40.014,-53.853],[56.828,-67.289]],"c":true}]},{"i":{"x":0.307,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[13.911,-3.016],[0,0],[-14.73,2.943]],"o":[[0,0],[-13.603,2.949],[0,0],[15.493,-3.095]],"v":[[76.167,-57.346],[53.969,-57.067],[33.77,-48.899],[53.326,-61.091]],"c":true}]},{"i":{"x":0.307,"y":1},"o":{"x":0.29,"y":0},"t":89,"s":[{"i":[[0,0],[13.896,-3.083],[0,0],[-14.716,3.013]],"o":[[0,0],[-13.589,3.015],[0,0],[15.478,-3.17]],"v":[[75.899,-53.607],[53.703,-53.221],[33.543,-44.957],[53.041,-57.242]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.29,"y":0},"t":105,"s":[{"i":[[0,0],[13.896,-3.083],[0,0],[-14.716,3.013]],"o":[[0,0],[-13.589,3.015],[0,0],[15.478,-3.17]],"v":[[76.085,-52.679],[53.889,-52.293],[33.729,-44.028],[53.227,-56.314]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[14.264,-0.445],[0,0],[-14.764,-0.43]],"o":[[0,0],[-13.668,0.427],[0,0],[16.264,0.474]],"v":[[89.114,-59.065],[62.832,-66.863],[43.516,-61.269],[62.832,-70.762]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[13.995,-2.792],[0,0],[-14.632,2.011]],"o":[[0,0],[-13.41,2.676],[0,0],[16.119,-2.216]],"v":[[82.814,-62.051],[55.606,-65.407],[37.478,-56.703],[54.963,-69.252]],"c":true}]},{"t":154,"s":[{"i":[[0,0],[14.264,-0.445],[0,0],[-14.764,-0.43]],"o":[[0,0],[-13.668,0.427],[0,0],[16.264,0.474]],"v":[[89.114,-59.065],[62.832,-66.863],[43.516,-61.269],[62.832,-70.762]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.035294119269,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.035294119269,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[-14.264,-0.445],[0,0],[14.764,-0.43]],"o":[[0,0],[13.668,0.427],[0,0],[-16.264,0.474]],"v":[[-82.615,-59.065],[-56.333,-66.863],[-37.017,-61.269],[-56.333,-70.762]],"c":true}]},{"i":{"x":0.31,"y":1},"o":{"x":0.2,"y":0},"t":12,"s":[{"i":[[0,0],[-13.946,-3.024],[0,0],[14.597,2.254]],"o":[[0,0],[13.364,2.898],[0,0],[-16.08,-2.483]],"v":[[-76.42,-61.244],[-49.159,-64.148],[-31.178,-55.144],[-48.452,-67.982]],"c":true}]},{"i":{"x":0.269,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[-15.236,-5.468],[0,0],[14.419,4.194]],"o":[[0,0],[14.605,5.242],[0,0],[-17.787,-5.174]],"v":[[-70.467,-63.511],[-39.953,-59.799],[-20.411,-48.285],[-38.802,-64.228]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.29,"y":0},"t":89,"s":[{"i":[[0,0],[-15.236,-5.468],[0,0],[15.817,5.292]],"o":[[0,0],[14.605,5.242],[0,0],[-17.567,-5.878]],"v":[[-70.467,-60.011],[-39.953,-56.299],[-20.411,-44.785],[-38.802,-60.728]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[0,0],[-15.236,-5.468],[0,0],[14.863,4.735]],"o":[[0,0],[14.605,5.242],[0,0],[-17.65,-5.623]],"v":[[-70.467,-59.011],[-39.953,-55.299],[-20.411,-43.785],[-38.802,-59.728]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[-14.264,-0.445],[0,0],[14.764,-0.43]],"o":[[0,0],[13.668,0.427],[0,0],[-16.264,0.474]],"v":[[-82.615,-59.065],[-56.333,-66.863],[-37.017,-61.269],[-56.333,-70.762]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[-13.96,-2.963],[0,0],[14.607,2.19]],"o":[[0,0],[13.376,2.839],[0,0],[-16.091,-2.412]],"v":[[-78.063,-62.278],[-50.816,-65.3],[-32.795,-56.375],[-50.126,-69.138]],"c":true}]},{"t":154,"s":[{"i":[[0,0],[-14.264,-0.445],[0,0],[14.764,-0.43]],"o":[[0,0],[13.668,0.427],[0,0],[-16.264,0.474]],"v":[[-82.615,-59.065],[-56.333,-66.863],[-37.017,-61.269],[-56.333,-70.762]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.035294119269,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.035294119269,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"Eye L","parent":1,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[-6.247,44.431,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[-6.09,47.997,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[-6.97,50.547,0],"to":[0,0,0],"ti":[0,0,0]},{"t":122,"s":[-6.247,44.431,0]}]},"a":{"a":0,"k":[-56.884,-14.084,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":3,"s":[{"i":[[0,0],[33.332,3.181],[5.012,-8.925],[0,0],[-30.553,-1.466]],"o":[[0,0],[-13.685,-1.306],[-4.22,7.515],[0,0],[32.695,1.569]],"v":[[-21.805,-4.564],[-56.577,-44.714],[-86.865,-29.566],[-91.349,-14.451],[-57.65,-41.656]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":13,"s":[{"i":[[0,0],[26.941,1.342],[5.768,3.227],[0,0],[-29.133,-2.164]],"o":[[0,0],[-12.269,-0.611],[-4.089,-2.287],[0,0],[28.761,2.137]],"v":[[-21.919,-1.066],[-57.3,4.289],[-82.832,-3.671],[-91.254,-9.695],[-57.132,7.637]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[0,0],[33.332,3.181],[5.012,-8.925],[0,0],[-30.553,-1.466]],"o":[[0,0],[-13.685,-1.306],[-4.22,7.515],[0,0],[32.695,1.569]],"v":[[-21.805,-4.564],[-56.577,-44.714],[-86.865,-29.566],[-91.349,-14.451],[-57.65,-41.656]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[0,0],[31.897,1.399],[5.08,-7.135],[0,0],[-25.277,-0.713]],"o":[[0,0],[-12.034,-0.528],[-4.917,6.906],[0,0],[29.397,0.829]],"v":[[-15.694,-6.001],[-47.923,-40.094],[-75.898,-28.6],[-81.196,-14.918],[-48.289,-37.695]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[31.63,1.399],[4.45,-6.383],[0,0],[-25.065,-0.713]],"o":[[0,0],[-11.933,-0.528],[-4.834,6.935],[0,0],[29.15,0.829]],"v":[[-16.235,-6.481],[-48.194,-40.575],[-75.909,-28.956],[-81.187,-15.398],[-48.556,-38.175]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[33.332,3.181],[5.012,-8.925],[0,0],[-30.553,-1.466]],"o":[[0,0],[-13.685,-1.306],[-4.22,7.515],[0,0],[32.695,1.569]],"v":[[-21.805,-4.564],[-56.577,-44.714],[-86.865,-29.566],[-91.349,-14.451],[-57.65,-41.656]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[21.925,1.389],[4.691,2.264],[0,0],[-27.636,-1.042]],"o":[[0,0],[-13.707,-0.868],[-5.332,-2.574],[0,0],[30.538,1.152]],"v":[[-21.805,-8.135],[-56.888,0.446],[-82.428,-6.402],[-91.14,-11.578],[-57.456,3.559]],"c":true}]},{"i":{"x":0.21,"y":1},"o":{"x":0.3,"y":0},"t":154,"s":[{"i":[[0,0],[33.332,3.181],[5.012,-8.925],[0,0],[-30.553,-1.466]],"o":[[0,0],[-13.685,-1.306],[-4.22,7.515],[0,0],[32.695,1.569]],"v":[[-21.805,-4.564],[-56.577,-44.714],[-86.865,-29.566],[-91.349,-14.451],[-57.65,-41.656]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[33.332,3.181],[5.012,-8.925],[0,0],[-30.553,-1.466]],"o":[[0,0],[-13.685,-1.306],[-4.22,7.515],[0,0],[32.695,1.569]],"v":[[-21.805,-4.564],[-56.577,-44.714],[-86.865,-29.566],[-91.349,-14.451],[-57.65,-41.656]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.035294119269,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.035294119269,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":3,"s":[{"i":[[-0.683,-12.044],[7.328,-43.387],[-12.599,-2.903]],"o":[[-3.249,-42.138],[3.06,-25.072],[23.196,5.344]],"v":[[-21.942,-6.206],[-91.685,-15.678],[-52.071,-43.094]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":13,"s":[{"i":[[0.904,-13.296],[9.729,15.699],[-15.845,-1.972]],"o":[[-24.661,15.135],[2.97,-26.293],[26.895,3.347]],"v":[[-21.726,-1.321],[-92.34,-10.947],[-54.728,-44.582]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[-0.479,-11.57],[7.328,-43.387],[-15.56,-3.585]],"o":[[-3.249,-42.138],[2.123,-20.766],[24.085,5.548]],"v":[[-21.942,-6.206],[-91.685,-15.678],[-52.235,-43.64]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[1.398,-13.862],[12.738,-36.534],[-15.067,-2.293]],"o":[[-6.816,-41.677],[2.543,-21.345],[21.191,3.225]],"v":[[-15.311,-5.713],[-81.809,-15.184],[-45.812,-39.913]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[1.386,-13.862],[12.632,-36.534],[-14.94,-2.293]],"o":[[-6.759,-41.677],[2.522,-21.345],[21.014,3.225]],"v":[[-15.855,-6.193],[-81.795,-15.664],[-45.218,-40.551]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":109,"s":[{"i":[[1.029,-13.435],[12.04,-37.298],[-14.993,-2.502]],"o":[[-6.368,-41.729],[2.567,-21.544],[21.826,3.718]],"v":[[-16.533,-6.194],[-82.898,-15.666],[-46.884,-42.841]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-1.817,-10.034],[7.328,-43.387],[-15.414,-4.167]],"o":[[-3.249,-42.138],[2.926,-23.125],[28.303,7.651]],"v":[[-21.942,-6.206],[-91.685,-15.678],[-52.249,-43.026]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-0.812,-7.496],[10.478,20.664],[-15.413,-3.745]],"o":[[-20.885,20.317],[-1.458,-23.72],[26.81,6.514]],"v":[[-21.942,-9.609],[-91.346,-12.307],[-52.872,-43.571]],"c":true}]},{"i":{"x":0.21,"y":1},"o":{"x":0.3,"y":0},"t":154,"s":[{"i":[[-2.806,-8.287],[7.328,-43.387],[-15.414,-4.167]],"o":[[-3.249,-42.138],[3.942,-21.799],[28.303,7.651]],"v":[[-21.942,-6.206],[-91.685,-15.678],[-51.858,-42.723]],"c":true}]},{"t":179,"s":[{"i":[[-2.433,-8.169],[7.328,-43.387],[-15.414,-4.167]],"o":[[-3.249,-42.138],[3.685,-22.447],[28.303,7.651]],"v":[[-21.942,-6.206],[-91.685,-15.678],[-52.196,-43.094]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.932548971737,0.658558325674,0.465908633961,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":3,"s":[{"i":[[-4.632,15.277],[26.029,32.887],[-18.232,-0.057]],"o":[[-8.425,7],[-1.492,14.137],[13.722,0.043]],"v":[[-22.141,-1.344],[-92.17,-10.094],[-54.066,22.103]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":13,"s":[{"i":[[-4.527,13.153],[23.62,24.686],[-18.232,-0.057]],"o":[[-7.042,5.339],[-1.492,14.137],[13.722,0.043]],"v":[[-22.141,-1.344],[-92.17,-10.094],[-54.621,18.678]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[-4.416,10.895],[26.029,32.887],[-18.232,-0.057]],"o":[[-8.425,7],[-1.492,14.137],[13.722,0.043]],"v":[[-22.141,-1.344],[-92.17,-10.094],[-55.21,15.036]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[-4.449,13.506],[22.01,24.414],[-17.862,-0.057]],"o":[[-10.246,4.444],[-2.936,15.871],[13.443,0.043]],"v":[[-14.533,-4.223],[-82.608,-12.863],[-47.273,17.2]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-0.938,15.086],[18.801,18.665],[-17.238,-0.057]],"o":[[-19.336,4.312],[-3.865,17.048],[12.974,0.043]],"v":[[-14.598,-7.108],[-81.264,-16.567],[-47.774,16.842]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-4.632,15.277],[27.928,25.57],[-18.232,-0.057]],"o":[[-9.047,6.026],[-1.492,14.137],[13.722,0.043]],"v":[[-22.323,-2.359],[-92.17,-10.094],[-54.066,22.103]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-1.011,10.897],[25.34,15.678],[-18.23,0.333]],"o":[[-7.992,4.129],[-1.492,12.694],[19.564,-0.357]],"v":[[-21.737,-11.501],[-92.081,-15.478],[-54.399,10.441]],"c":true}]},{"i":{"x":0.21,"y":1},"o":{"x":0.3,"y":0},"t":154,"s":[{"i":[[-4.632,15.277],[21.425,28.868],[-18.232,-0.057]],"o":[[-13.001,10.917],[-1.492,14.137],[13.722,0.043]],"v":[[-21.993,-4.218],[-91.512,-14.089],[-54.412,18.475]],"c":true}]},{"t":179,"s":[{"i":[[-4.632,15.277],[26.029,32.887],[-18.232,-0.057]],"o":[[-8.425,7],[-1.492,14.137],[13.722,0.043]],"v":[[-22.141,-1.344],[-92.17,-10.094],[-54.066,22.103]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.803921580315,0.65098041296,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Eyelids L","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[0,0],[4.324,-1.414]],"o":[[-1.436,4.534],[0,0]],"v":[[-41.039,-13.361],[-50.233,-3.851]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[0,0],[4.36,-0.427]],"o":[[-2.378,4.098],[0,0]],"v":[[-39.718,-9.99],[-50.477,-2.752]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[4.331,-0.657]],"o":[[-2.158,4.219],[0,0]],"v":[[-39.827,-11.119],[-50.188,-3.321]],"c":false}]},{"t":122,"s":[{"i":[[0,0],[4.324,-1.414]],"o":[[-1.436,4.534],[0,0]],"v":[[-41.039,-13.361],[-50.233,-3.851]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.921568632126,0.57647061348,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":3.5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[0,-2.713],[2.56,0],[0,2.713],[-2.56,0]],"o":[[0,2.713],[-2.56,0],[0,-2.713],[2.56,0]],"v":[[-56.415,-30.297],[-61.05,-25.385],[-65.686,-30.297],[-61.05,-35.21]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[0.621,-2.641],[2.39,0.562],[-0.621,2.641],[-2.39,-0.562]],"o":[[-0.621,2.641],[-2.39,-0.562],[0.621,-2.641],[2.39,0.562]],"v":[[-50.192,-29.852],[-55.644,-26.088],[-58.846,-31.887],[-53.395,-35.652]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0.48,-2.67],[2.416,0.435],[-0.481,2.67],[-2.416,-0.435]],"o":[[-0.48,2.67],[-2.416,-0.435],[0.48,-2.67],[2.416,0.435]],"v":[[-51.337,-30.398],[-56.582,-26.351],[-60.087,-31.973],[-54.842,-36.021]],"c":true}]},{"t":122,"s":[{"i":[[0,-2.713],[2.56,0],[0,2.713],[-2.56,0]],"o":[[0,2.713],[-2.56,0],[0,-2.713],[2.56,0]],"v":[[-56.415,-30.297],[-61.05,-25.385],[-65.686,-30.297],[-61.05,-35.21]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862747669,0.956862747669,0.956862747669,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[0,-7.145],[6.742,0],[0,7.145],[-6.742,0]],"o":[[0,7.145],[-6.742,0],[0,-7.145],[6.742,0]],"v":[[-43.125,-19.143],[-55.333,-6.206],[-67.54,-19.143],[-55.333,-32.08]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[1.636,-6.955],[6.293,1.48],[-1.636,6.955],[-6.293,-1.48]],"o":[[-1.636,6.955],[-6.293,-1.48],[1.636,-6.955],[6.293,1.48]],"v":[[-40.342,-16.077],[-54.698,-6.163],[-63.131,-21.436],[-48.775,-31.35]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[1.265,-7.032],[6.362,1.145],[-1.265,7.032],[-6.362,-1.145]],"o":[[-1.265,7.032],[-6.362,-1.145],[1.265,-7.032],[6.362,1.145]],"v":[[-40.772,-17.164],[-54.583,-6.504],[-63.812,-21.31],[-50.001,-31.969]],"c":true}]},{"t":122,"s":[{"i":[[0,-7.145],[6.742,0],[0,7.145],[-6.742,0]],"o":[[0,7.145],[-6.742,0],[0,-7.145],[6.742,0]],"v":[[-43.125,-19.143],[-55.333,-6.206],[-67.54,-19.143],[-55.333,-32.08]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.090196080506,0.074509806931,0.039215687662,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[0,-11.305],[10.668,0],[0,11.305],[-10.668,0]],"o":[[0,11.305],[-10.668,0],[0,-11.305],[10.668,0]],"v":[[-36.017,-19.143],[-55.333,1.327],[-74.649,-19.143],[-55.333,-39.612]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[2.588,-11.005],[9.957,2.342],[-2.588,11.005],[-9.957,-2.342]],"o":[[-2.588,11.005],[-9.957,-2.342],[2.588,-11.005],[9.957,2.342]],"v":[[-33.707,-14.516],[-56.422,1.17],[-69.765,-22.996],[-47.05,-38.682]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[2.002,-11.126],[10.067,1.812],[-2.002,11.126],[-10.067,-1.812]],"o":[[-2.002,11.126],[-10.067,-1.812],[2.002,-11.126],[10.067,1.811]],"v":[[-34.064,-15.957],[-55.917,0.91],[-70.52,-22.517],[-48.667,-39.383]],"c":true}]},{"t":122,"s":[{"i":[[0,-11.305],[10.668,0],[0,11.305],[-10.668,0]],"o":[[0,11.305],[-10.668,0],[0,-11.305],[10.668,0]],"v":[[-36.017,-19.143],[-55.333,1.327],[-74.649,-19.143],[-55.333,-39.612]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.235,0.02,0,0.375,0.435,0.175,0,1,0.635,0.329,0]}},"s":{"a":0,"k":[-59.325,-24.844]},"e":{"a":0,"k":[-45.793,-3.902]},"t":1,"nm":"Gradient Fill 43","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":3,"s":[0,0],"to":[0,0],"ti":[0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":13,"s":[-0.385,10.738],"to":[0,0],"ti":[0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":23,"s":[-0.079,3.074],"to":[0,0],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.3,"y":0},"t":32,"s":[1.703,1.968],"to":[0,0],"ti":[0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":43,"s":[10.523,8.995],"to":[0,0],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.3,"y":0},"t":65,"s":[1.785,7.887],"to":[0,0],"ti":[0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":77,"s":[10.029,7.883],"to":[0,0],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.3,"y":0},"t":103,"s":[4.661,8.02],"to":[0,0],"ti":[0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":109,"s":[1.958,-2.667],"to":[0,0],"ti":[0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[-0.135,1.995],"to":[0,0],"ti":[0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[-0.154,5.997],"to":[0,0],"ti":[0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":153,"s":[0.008,-1],"to":[0,0],"ti":[0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.345,"y":0},"t":156,"s":[-0.021,2.98],"to":[0,0],"ti":[0,0]},{"i":{"x":0.618,"y":1},"o":{"x":0.3,"y":0},"t":166,"s":[-0.019,2.993],"to":[0,0],"ti":[0,0]},{"t":171,"s":[0,0]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[29.947,3.233],[0,0],[-24.095,-2.642]],"o":[[0,0],[-31.157,-3.364],[0,0],[26.862,2.946]],"v":[[-21.805,-4.564],[-54.794,-43.605],[-91.349,-14.451],[-59.846,7.513]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":13,"s":[{"i":[[0,0],[29.938,3.316],[0,0],[-24.095,-2.642]],"o":[[0,0],[-33.747,-3.738],[0,0],[26.862,2.946]],"v":[[-21.805,-4.564],[-54.794,-43.605],[-91.681,-10.022],[-59.846,7.513]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[0,0],[29.947,3.233],[0,0],[-24.095,-2.642]],"o":[[0,0],[-31.157,-3.364],[0,0],[26.862,2.946]],"v":[[-21.805,-4.564],[-54.794,-43.605],[-91.349,-14.451],[-59.846,7.513]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[0,0],[28.04,3.233],[0,0],[-22.561,-2.642]],"o":[[0,0],[-29.173,-3.364],[0,0],[25.151,2.946]],"v":[[-15.157,-4.071],[-46.544,-39.461],[-81.216,-14.296],[-50.776,8.006]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[28.04,3.233],[0,0],[-22.561,-2.642]],"o":[[0,0],[-29.173,-3.364],[0,0],[25.151,2.946]],"v":[[-15.713,-4.551],[-46.039,-40.511],[-80.828,-14.438],[-51.331,7.526]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[29.947,3.233],[0,0],[-24.095,-2.642]],"o":[[0,0],[-31.157,-3.364],[0,0],[26.862,2.946]],"v":[[-21.805,-4.564],[-54.794,-43.605],[-91.349,-14.451],[-59.846,7.513]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[29.947,2.904],[0,0],[-24.095,-2.373]],"o":[[0,0],[-31.157,-3.021],[0,0],[26.862,2.645]],"v":[[-21.805,-8.135],[-54.794,-43.194],[-91.349,-17.013],[-59.846,2.71]],"c":true}]},{"i":{"x":0.21,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[29.947,3.233],[0,0],[-24.095,-2.642]],"o":[[0,0],[-31.157,-3.364],[0,0],[26.862,2.946]],"v":[[-21.805,-4.564],[-54.794,-43.605],[-91.349,-14.451],[-59.846,7.513]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[29.947,3.233],[0,0],[-24.095,-2.642]],"o":[[0,0],[-31.157,-3.364],[0,0],[26.862,2.946]],"v":[[-21.805,-4.564],[-54.794,-43.605],[-91.349,-14.451],[-59.846,7.513]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.96862745285,0.96862745285,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Eye R","parent":1,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.2],"y":[0]},"t":23,"s":[0]},{"i":{"x":[0.622],"y":[1.103]},"o":{"x":[0.631],"y":[0]},"t":50,"s":[1]},{"i":{"x":[0.553],"y":[1]},"o":{"x":[0.215],"y":[-0.217]},"t":79,"s":[1]},{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":105,"s":[1]},{"t":122,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[115.005,44.431,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.622,"y":0.897},"o":{"x":0.631,"y":0},"t":50,"s":[117.037,49.961,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.553,"y":1},"o":{"x":0.215,"y":0.217},"t":79,"s":[116.314,53.529,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[115.919,54.313,0],"to":[0,0,0],"ti":[0,0,0]},{"t":122,"s":[115.005,44.431,0]}]},"a":{"a":0,"k":[64.368,-14.084,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":3,"s":[{"i":[[0,0],[-33.332,3.181],[-5.011,-8.925],[0,0],[30.552,-1.466]],"o":[[0,0],[13.685,-1.306],[4.22,7.515],[0,0],[-32.695,1.569]],"v":[[29.624,-4.564],[64.397,-44.714],[94.685,-29.566],[99.169,-14.451],[65.47,-41.656]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":13,"s":[{"i":[[0,0],[-26.176,1.892],[-6.888,4.507],[0,0],[24.082,-2.032]],"o":[[0,0],[11.975,-0.866],[2.707,-1.771],[0,0],[-28.611,2.414]],"v":[[30.161,-2.539],[67.278,3.709],[94.206,-5.815],[99.887,-9.415],[67.439,7.603]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[0,0],[-33.332,3.181],[-5.011,-8.925],[0,0],[30.552,-1.466]],"o":[[0,0],[13.685,-1.306],[4.22,7.515],[0,0],[-32.695,1.569]],"v":[[29.624,-4.564],[64.397,-44.714],[94.685,-29.566],[99.169,-14.451],[65.47,-41.656]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[0,0],[-30.28,-0.031],[-2.55,-5.54],[0,0],[18.808,0.114]],"o":[[0,0],[9.413,0.01],[2.536,5.51],[0,0],[-30.643,-0.185]],"v":[[30.329,-7.615],[63.409,-39.616],[81.525,-28.503],[85.573,-13.031],[64.129,-36.979]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[-30.469,-0.518],[-1.891,-4.69],[0,0],[18.929,0.118]],"o":[[0,0],[9.472,0.161],[2.311,5.731],[0,0],[-29.83,-0.187]],"v":[[30.232,-9.543],[64.059,-40.137],[82.138,-28.952],[85.24,-17.018],[64.031,-37.742]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[-33.332,3.181],[-5.011,-8.925],[0,0],[30.552,-1.466]],"o":[[0,0],[13.685,-1.306],[4.22,7.515],[0,0],[-32.695,1.569]],"v":[[29.624,-4.564],[64.397,-44.714],[94.685,-29.566],[99.169,-14.451],[65.47,-41.656]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[-25.051,1.404],[-6.782,2.64],[0,0],[27.256,-1.549]],"o":[[0,0],[13.718,-0.769],[2.228,-0.867],[0,0],[-28.185,1.601]],"v":[[29.624,-7.175],[67.439,-1.763],[92.905,-8.307],[100.098,-12.997],[67.649,1.879]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":154,"s":[{"i":[[0,0],[-33.332,3.181],[-5.011,-8.925],[0,0],[30.552,-1.466]],"o":[[0,0],[13.685,-1.306],[4.22,7.515],[0,0],[-32.695,1.569]],"v":[[29.624,-4.564],[64.397,-44.714],[94.685,-29.566],[99.169,-14.451],[65.47,-41.656]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[-33.332,3.181],[-5.011,-8.925],[0,0],[30.552,-1.466]],"o":[[0,0],[13.685,-1.306],[4.22,7.515],[0,0],[-32.695,1.569]],"v":[[29.624,-4.564],[64.397,-44.714],[94.685,-29.566],[99.169,-14.451],[65.47,-41.656]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.035294119269,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.035294119269,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":3,"s":[{"i":[[2.45,-12.419],[-7.328,-43.387],[15.414,-4.167]],"o":[[3.249,-42.138],[-4.294,-23.072],[-28.303,7.651]],"v":[[29.425,-6.206],[99.169,-15.678],[61.554,-42.969]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":13,"s":[{"i":[[-0.901,-12.507],[-8.704,19.638],[16.446,-2.045]],"o":[[14.786,14.957],[-1.303,-23.579],[-24.289,3.021]],"v":[[29.677,-3.38],[99.843,-11.081],[62.353,-44.679]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[2.423,-8.536],[-7.328,-43.387],[15.414,-4.167]],"o":[[3.249,-42.138],[-3.227,-23.142],[-28.303,7.651]],"v":[[29.425,-6.206],[99.169,-15.678],[59.478,-43.24]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[2.74,-12.325],[-2.225,-36.759],[14.481,-3.515]],"o":[[5.109,-36.363],[-0.661,-22.431],[-21.09,5.12]],"v":[[29.704,-7.129],[85.279,-15.379],[56.158,-39.175]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[2.45,-13.54],[-1.628,-37.593],[15.003,-3.396]],"o":[[5.745,-37.07],[-2.375,-22.491],[-21.322,4.826]],"v":[[29.603,-7.487],[85.663,-15.023],[57.145,-39.464]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":109,"s":[{"i":[[1.849,-12.568],[-3.515,-37.137],[14.564,-3.905]],"o":[[4.052,-36.802],[-3.294,-21.726],[-21.411,5.742]],"v":[[31.026,-6.206],[86.976,-15.681],[55.499,-41.745]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[1.766,-7.444],[-7.328,-43.387],[15.414,-4.167]],"o":[[3.249,-42.138],[-4.212,-21.974],[-28.303,7.651]],"v":[[29.425,-6.206],[99.169,-15.678],[60.003,-42.991]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0.338,-6.885],[-16.966,21.331],[19.083,-2.075]],"o":[[9.753,11.847],[-2.707,-18.643],[-27.538,2.994]],"v":[[29.316,-8.53],[99.861,-13.44],[62.492,-43.145]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":154,"s":[{"i":[[1.461,-9.722],[-7.328,-43.387],[15.414,-4.167]],"o":[[3.249,-42.138],[-3.667,-20.384],[-28.303,7.651]],"v":[[29.425,-6.206],[99.169,-15.678],[61.144,-43.205]],"c":true}]},{"t":179,"s":[{"i":[[1.825,-11.669],[-7.328,-43.387],[15.414,-4.167]],"o":[[3.249,-42.138],[-3.419,-21.447],[-28.303,7.651]],"v":[[29.425,-6.206],[99.169,-15.678],[62.554,-43.094]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.933333393172,0.658823529412,0.466666696586,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":3,"s":[{"i":[[-17.191,2.03],[-3.355,1.231],[-6.952,8.783],[10.655,-6.525],[4.071,-1.103]],"o":[[3.288,-0.388],[7.615,-2.793],[0.937,8.878],[-3.717,2.276],[-2.841,0.77]],"v":[[67.459,9.076],[77.454,6.697],[99.653,-10.094],[81.858,15.712],[70.04,20.896]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.5,"y":0},"t":13,"s":[{"i":[[-17.36,1.097],[-3.436,0.595],[-7.443,3.969],[8.97,-5.348],[4.246,-1.156]],"o":[[3.32,-0.21],[7.799,-1.35],[0.089,6.019],[-3.129,1.866],[-2.963,0.807]],"v":[[66.415,-0.956],[76.577,-2.144],[99.77,-9.902],[86.492,9.062],[75.433,13.676]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[{"i":[[0.935,5.095],[-1.763,1.882],[-3.51,2.75],[7.295,-5.92],[4.151,-1.127]],"o":[[1.54,-1.934],[5.098,-2.221],[3.105,3.503],[-3.031,2.594],[0.392,-3.194]],"v":[[99.268,-10.112],[99.997,-13.448],[104.196,-13.34],[104.138,2.435],[98.793,5.796]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[1.235,4.439],[-2.199,2.32],[-1.446,2.11],[6.415,-6.22],[4.101,-1.112]],"o":[[1.702,-1.409],[3.68,-2.679],[4.688,2.183],[-2.979,2.977],[0.38,-3.284]],"v":[[94.596,-6.245],[96.273,-8.88],[100.701,-12.784],[102.383,3.01],[95.673,10.087]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[1.418,4.039],[-2.464,2.588],[-0.188,1.72],[5.879,-6.403],[4.071,-1.103]],"o":[[1.8,-1.088],[2.816,-2.957],[5.653,1.378],[-2.947,3.21],[0.373,-3.339]],"v":[[91.748,-3.888],[94.004,-6.095],[98.707,-12.809],[101.313,3.36],[91.588,11.042]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[{"i":[[-0.24,4],[-2.426,2.393],[-0.737,2.139],[4.099,-6.228],[4.012,-0.914]],"o":[[1.854,-1.039],[2.974,-3.194],[5.193,2.22],[-2.953,3.106],[0.494,-3.441]],"v":[[87.959,-1.042],[91.982,-5.172],[97.54,-13.926],[96.66,3.956],[85.67,13.785]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":29,"s":[{"i":[[0.136,4.129],[-2.375,2.127],[-1.484,2.71],[6.717,-6.567],[3.932,-0.658]],"o":[[1.928,-0.973],[3.189,-3.516],[4.568,3.368],[-2.961,2.964],[0.658,-3.58]],"v":[[83.059,-0.077],[89.23,-3.915],[95.263,-14.477],[93.906,5.298],[79.97,15.742]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":34,"s":[{"i":[[-0.5,5.378],[-2.276,1.617],[-2.919,3.805],[7.643,-6.748],[3.779,-0.165]],"o":[[2.069,-0.846],[4.206,-2.661],[3.367,5.57],[-2.976,2.692],[0.973,-3.847]],"v":[[76.832,-1.032],[82.715,-4.301],[92.538,-14.432],[85.709,7.443],[73.562,15.74]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[-0.095,4.931],[-2.236,1.409],[-3.213,4.389],[8.021,-6.822],[3.716,0.036]],"o":[[2.127,-0.794],[4.503,-2.597],[2.878,6.468],[-2.983,2.581],[1.101,-3.955]],"v":[[73.265,-1.014],[79.824,-4.185],[91.247,-14.858],[82.84,8.49],[70.414,15.985]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":42,"s":[{"i":[[0.311,4.484],[-2.196,1.201],[-3.508,4.973],[8.399,-6.895],[3.654,0.237]],"o":[[2.184,-0.742],[4.801,-2.534],[2.389,7.365],[-2.989,2.47],[1.229,-4.064]],"v":[[70.436,-1.111],[76.934,-4.069],[89.955,-15.283],[79.97,9.538],[68.249,16.077]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[0.129,4.562],[-2.249,1.061],[-4.572,4.847],[8.922,-6.786],[3.552,-0.324]],"o":[[2.275,-0.67],[5.104,-2.407],[2.016,7.911],[-3.112,2.367],[1.416,-4.122]],"v":[[69.08,-1.362],[74.77,-3.804],[89.257,-15.085],[76.514,9.944],[66.135,15.485]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":54,"s":[{"i":[[0.17,3.304],[-1.589,1.08],[-3.907,5.114],[8.77,-5.937],[2.627,0.764]],"o":[[1.618,-0.525],[4.908,-2.489],[2.436,7.533],[-2.11,1.133],[0.97,-3.568]],"v":[[72.895,-2.65],[75.913,-4.461],[89.244,-15.561],[77.123,9.51],[71.168,13.895]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":55,"s":[{"i":[[0.136,2.643],[-1.363,0.739],[-3.647,5.25],[7.555,-5.751],[1.923,-0.508]],"o":[[0.988,-0.448],[4.375,-2.365],[2.587,7.394],[-0.967,1.039],[0.795,-3.27]],"v":[[74.119,-3.334],[76.456,-4.802],[89.187,-15.603],[77.372,10.037],[72.678,13.338]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57,"s":[{"i":[[0.068,1.321],[-0.377,0.21],[-4.14,4.725],[9.086,-4.313],[0.02,1.532]],"o":[[0.034,-0.644],[4.856,-2.464],[2.89,7.115],[0.22,-2.208],[-0.048,-2.476]],"v":[[75.923,-2.451],[76.25,-4.83],[89.382,-15.36],[75.082,11.168],[75.622,5.176]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":59,"s":[{"i":[[0,0],[0.014,1.015],[-3.191,4.504],[9.296,-3.23],[-0.194,1.935]],"o":[[0,0],[4.82,-2.448],[3.193,6.837],[0.293,-2.368],[0.213,-2.118]],"v":[[77.319,-2.347],[77.571,-5.887],[88.962,-15.771],[75.517,10.496],[76.772,3.582]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[{"i":[[0.22,-0.3],[-0.029,0.775],[-2.544,4.502],[9.017,-4.013],[1.234,1.788]],"o":[[0.052,-0.689],[4.847,-2.404],[2.452,6.513],[-0.348,-1.367],[0.8,-4.946]],"v":[[75.717,-3.964],[75.785,-5.113],[88.437,-15.967],[76.511,8.777],[74.467,10.412]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[0.245,0.568],[-0.357,0.854],[-2.672,4.472],[8.877,-4.404],[1.896,1.711]],"o":[[1.157,-0.804],[4.86,-2.383],[2.082,6.351],[-0.669,-0.866],[0.701,-4.414]],"v":[[74.005,-4.263],[75.9,-5.553],[88.175,-16.065],[76.659,8.537],[71.962,11.357]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":64,"s":[{"i":[[0.294,2.306],[-1.013,1.01],[-2.928,4.413],[8.598,-5.187],[3.221,1.557]],"o":[[3.368,-1.032],[4.886,-2.339],[1.341,6.027],[-1.31,0.135],[0.503,-3.351]],"v":[[68.954,-2.775],[76.41,-6.295],[87.651,-16.261],[76.955,8.057],[66.95,13.248]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0.411,3.228],[-1.424,1.007],[-2.419,4.133],[8.319,-5.97],[4.546,1.402]],"o":[[4.612,-0.982],[4.913,-2.296],[0.6,5.702],[-1.951,1.136],[0.666,-3.861]],"v":[[64.975,-2.776],[75.559,-6.566],[87.127,-16.458],[77.077,7.143],[61.102,14.939]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0.048,3.621],[-1.835,1.005],[-1.924,3.93],[5.649,-5.29],[5.87,1.248]],"o":[[5.855,-0.932],[4.939,-2.252],[-0.14,5.378],[-2.592,2.138],[0.828,-4.371]],"v":[[61.539,-2.557],[75.065,-6.641],[86.603,-16.654],[78.006,6.447],[58.417,15.298]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-1.004,5.374],[-2.247,1.003],[-2.61,4.066],[7.76,-7.536],[7.195,1.094]],"o":[[7.099,-0.882],[4.965,-2.209],[-0.881,5.054],[-3.233,3.139],[0.99,-4.881]],"v":[[60.522,-2.531],[74.899,-6.656],[86.079,-16.85],[77.323,5.316],[57.032,15.836]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[{"i":[[-0.6,5.332],[-2.243,0.99],[-1.081,4.391],[8.661,-8.081],[6.352,0.515]],"o":[[7.177,-0.718],[4.977,-2.19],[-0.328,5.291],[-3.105,2.897],[0.847,-4.61]],"v":[[60.635,-3.093],[74.719,-7.12],[86.087,-17.082],[77.959,5.369],[57.445,15.348]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[-0.883,5.536],[-2.239,0.977],[-1.645,3.831],[7.969,-7.458],[5.509,-0.063]],"o":[[4.136,-0.581],[4.988,-2.171],[0.224,5.528],[-2.903,2.734],[1.037,-4.287]],"v":[[62.953,-3.355],[74.963,-7.677],[86.095,-17.314],[78.206,5.372],[59.568,13.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-0.687,6.346],[-2.235,0.964],[-1.766,3.903],[10.306,-9.389],[4.666,-0.642]],"o":[[2.655,-0.431],[5,-2.152],[2.171,4.603],[-2.756,2.511],[0.742,-2.922]],"v":[[64.861,-3.984],[75.036,-7.556],[86.103,-17.547],[78.459,4.795],[61.179,14.031]],"c":true}]},{"i":{"x":0.71,"y":1},"o":{"x":0.303,"y":0.303},"t":79,"s":[{"i":[[-0.827,7.378],[-2.462,1.139],[-2.535,3.038],[8.229,-7.36],[5.807,-1.318]],"o":[[0.239,0.219],[6.278,-2.905],[3.787,3.931],[-2.49,2.227],[0.557,-3.972]],"v":[[66.7,-4.702],[75.196,-7.895],[86.29,-17.07],[78.637,4.807],[63.662,12.687]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.29,"y":0},"t":105,"s":[{"i":[[-1.275,8.278],[-2.314,0.865],[-2.56,2.778],[7.563,-7.792],[4.376,-0.321]],"o":[[4.52,-0.296],[3.853,-1.441],[1.422,6.208],[-5.701,5.873],[1.147,-2.641]],"v":[[59.552,-3.782],[74.599,-7.873],[85.907,-16.613],[77.767,6.324],[54.934,16.257]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":107,"s":[{"i":[[-1.723,7.362],[-2.29,0.938],[-2.634,3.555],[7.243,-7.737],[3.96,-0.858]],"o":[[2.517,-0.677],[5.197,-2.128],[1.479,5.734],[-5.209,5.681],[0.782,-2.401]],"v":[[60.919,-5.329],[74.836,-9.293],[86.601,-17.863],[79.3,4.439],[57.039,12.831]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":109,"s":[{"i":[[-0.836,6.887],[-4.393,2.269],[-3.058,3.509],[7.55,-7.568],[5.303,-0.759]],"o":[[2.568,-0.749],[7.664,-3.959],[1.248,5.373],[-5.036,5.311],[0.412,-2.076]],"v":[[64.529,-2.855],[75.875,-7.257],[87.931,-17.401],[80.714,5.802],[60.373,14.886]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[{"i":[[-0.588,6.025],[-3.369,1.878],[-2.903,3.453],[7.802,-7.429],[4.45,-1.07]],"o":[[2.611,-0.809],[6.728,-3.816],[1.057,5.075],[-4.895,5.007],[0.464,-2.538]],"v":[[67.985,-3.207],[77.197,-6.986],[88.891,-17.137],[81.99,5.638],[63.911,15.016]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":111,"s":[{"i":[[-0.34,5.163],[-2.345,1.487],[-2.748,3.397],[8.054,-7.29],[3.596,-1.38]],"o":[[2.654,-0.868],[5.792,-3.674],[0.867,4.778],[-4.753,4.703],[0.517,-2.999]],"v":[[71.44,-3.558],[78.518,-6.714],[89.851,-16.872],[83.266,5.475],[68.708,15.148]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":112,"s":[{"i":[[0.562,4.987],[-2.39,1.397],[-1.779,4.437],[7.731,-7.181],[2.697,-1.035]],"o":[[1.99,-0.651],[3.696,-2.32],[0.602,4.365],[-3.551,2.443],[-0.149,-1.157]],"v":[[77.391,-4.654],[82.457,-7.335],[91.62,-16.487],[85.45,5.404],[76.188,10.869]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":113,"s":[{"i":[[0.67,2.897],[-2.197,1.776],[1.117,3.87],[10.81,-8.87],[0,0]],"o":[[1.327,-0.434],[3.358,-2.752],[0.338,3.952],[0.546,-4.293],[0,0]],"v":[[83.469,-3.743],[87.332,-6.394],[93.157,-15.586],[82.449,9.354],[82.811,2.494]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":114,"s":[{"i":[[-0.035,1.764],[-2.003,2.155],[-0.57,3.944],[13.889,-10.56],[-0.037,0.563]],"o":[[0.663,-0.217],[2.679,-2.276],[2.251,1.827],[-0.164,-1.833],[-0.05,-0.386]],"v":[[88.393,-4.939],[90.068,-6.189],[94.676,-15.058],[87.806,5.643],[88.108,1.329]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":115,"s":[{"i":[[0,0],[-1.81,2.534],[-0.992,4.325],[6.762,-6.852],[0,0]],"o":[[0,0],[1.617,-2.265],[-0.191,3.127],[0.055,-4.338],[0,0]],"v":[[91.564,-6.018],[91.917,-7.743],[96.196,-14.531],[91.373,5.183],[91.721,-2.336]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":117,"s":[{"i":[[0,0],[-1.81,2.534],[-0.992,4.325],[6.762,-6.852],[0,0]],"o":[[0,0],[1.617,-2.265],[-0.191,3.127],[0.055,-4.338],[0,0]],"v":[[95.6,-9.437],[96.202,-10.789],[100.232,-17.95],[96.039,1.771],[95.881,-5.508]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-5.517,2.51],[-3.355,1.231],[-6.952,8.783],[10.186,-6.116],[3.98,-1.024]],"o":[[3.014,-1.371],[7.615,-2.793],[-0.743,2.265],[-3.553,2.133],[-2.778,0.715]],"v":[[70.043,4.457],[80.801,2.006],[99.368,-13.429],[85.297,0.415],[72.524,4.67]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-17.479,0.76],[-3.468,0.314],[-7.602,2.036],[10.261,-5.07],[3.995,-0.842]],"o":[[3.343,-0.145],[7.872,-0.714],[0.937,7.755],[-3.579,1.769],[-2.788,0.588]],"v":[[65.997,-8.785],[76.241,-9.461],[99.77,-13.43],[82.898,7.636],[71.415,11.629]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":154,"s":[{"i":[[-17.419,2.254],[-3.324,1.277],[-6.209,8.928],[9.66,-5.771],[3.878,-0.966]],"o":[[3.332,-0.431],[7.544,-2.898],[0.931,8.401],[-3.37,2.013],[-2.707,0.674]],"v":[[67.959,5.697],[77.98,3.185],[99.059,-13.974],[83.589,9.499],[72.616,14.062]],"c":true}]},{"t":179,"s":[{"i":[[-17.191,2.03],[-3.355,1.231],[-6.952,8.783],[10.655,-6.525],[4.071,-1.103]],"o":[[3.288,-0.388],[7.615,-2.793],[0.937,8.878],[-3.717,2.276],[-2.841,0.77]],"v":[[67.459,9.076],[77.454,6.697],[99.653,-10.094],[81.858,15.712],[70.04,20.896]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.960784373564,0.709803921569,0.533333333333,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"t":0,"s":[0],"h":1},{"t":19,"s":[100],"h":1},{"t":118,"s":[0],"h":1}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":3,"s":[{"i":[[4.632,15.277],[-26.029,32.887],[18.232,-0.057]],"o":[[8.425,7],[1.492,14.137],[-13.722,0.043]],"v":[[29.625,-1.344],[99.653,-10.094],[61.55,22.103]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":13,"s":[{"i":[[-0.725,16.869],[-27.866,14.862],[22.959,-2.138]],"o":[[7.435,4.84],[0.142,9.584],[-13.663,1.273]],"v":[[29.474,-6.481],[99.77,-9.902],[65.722,15.405]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[4.632,15.277],[-26.029,32.887],[18.232,-0.057]],"o":[[8.425,7],[1.492,14.137],[-13.722,0.043]],"v":[[29.625,-1.344],[99.653,-10.094],[61.55,22.103]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[-0.075,16.244],[-22.153,23.629],[18.731,-1.625]],"o":[[11.535,6.48],[1.89,11.415],[-13.077,1.062]],"v":[[28.779,-5.569],[89.282,-14.8],[58.926,16.38]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[{"i":[[-0.657,16.383],[-20.458,22.397],[18.802,-1.82]],"o":[[11.304,7.036],[1.952,11.115],[-13.005,1.194]],"v":[[29.04,-6.34],[88.719,-15.198],[59.096,15.635]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":71,"s":[{"i":[[-1.935,16.689],[-11.475,17.323],[18.959,-2.25]],"o":[[10.797,8.259],[0.764,9.105],[-12.847,1.484]],"v":[[29.613,-8.034],[85.83,-16.11],[59.468,13.997]],"c":true}]},{"i":{"x":0.39,"y":1},"o":{"x":0.167,"y":0.167},"t":79,"s":[{"i":[[-2.957,16.934],[-13.758,17.527],[19.084,-2.594]],"o":[[10.392,9.237],[2.196,9.927],[-12.721,1.717]],"v":[[30.071,-9.389],[86.495,-16.775],[59.766,12.687]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-3.346,17.027],[-12.627,16.704],[19.132,-2.725]],"o":[[10.238,9.609],[2.237,9.726],[-12.673,1.805]],"v":[[30.246,-9.904],[86.119,-17.041],[59.88,12.189]],"c":true}]},{"i":{"x":0.71,"y":1},"o":{"x":0.167,"y":0.167},"t":107,"s":[{"i":[[-2.464,16.859],[-9.253,13.85],[18.718,-3.36]],"o":[[11.182,7.03],[2.56,9.591],[-12.435,2.225]],"v":[[31.628,-8.782],[86.082,-17.971],[61.135,11.861]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.29,"y":0},"t":109,"s":[{"i":[[-0.776,16.483],[-13.243,18.378],[18.602,-2.574]],"o":[[10.526,7.023],[2.306,10.672],[-12.741,1.706]],"v":[[31.151,-7.013],[87.975,-16.691],[61.614,13.965]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":111,"s":[{"i":[[-0.227,16.36],[-14.54,19.849],[18.565,-2.319]],"o":[[10.313,7.021],[2.224,11.024],[-12.841,1.538]],"v":[[30.996,-6.438],[89.159,-16.022],[61.769,14.649]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":112,"s":[{"i":[[0.393,16.222],[-15.378,19.473],[18.523,-2.03]],"o":[[10.072,7.018],[2.13,11.421],[-12.953,1.347]],"v":[[30.821,-5.788],[91.633,-15.195],[61.945,15.422]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":113,"s":[{"i":[[1.013,16.084],[-11.902,24.032],[18.48,-1.742]],"o":[[9.387,7.679],[2.037,11.818],[-13.066,1.156]],"v":[[30.646,-5.138],[93.374,-14.468],[62.121,16.195]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":114,"s":[{"i":[[1.633,15.945],[-13.432,27.454],[18.438,-1.453]],"o":[[7.936,7.829],[1.943,12.216],[-13.178,0.965]],"v":[[30.471,-4.488],[95.333,-14.345],[62.297,16.969]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":115,"s":[{"i":[[2.254,15.807],[-14.387,28.425],[18.395,-1.164]],"o":[[8.247,7.554],[1.85,12.613],[-13.291,0.775]],"v":[[30.296,-3.838],[95.954,-13.391],[62.473,17.742]],"c":true}]},{"i":{"x":0.483,"y":1},"o":{"x":0.167,"y":0.167},"t":117,"s":[{"i":[[3.494,15.531],[-23.338,29.833],[18.31,-0.587]],"o":[[8.867,7.005],[1.663,13.408],[-13.516,0.393]],"v":[[29.946,-2.537],[97.195,-11.483],[62.825,19.289]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[4.632,15.277],[-26.029,32.887],[18.232,-0.057]],"o":[[8.425,7],[1.492,14.137],[-13.722,0.043]],"v":[[29.625,-1.344],[99.653,-10.094],[63.148,20.708]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[4.632,13.344],[-28.463,7.624],[18.232,-0.05]],"o":[[7.794,-1.123],[1.492,12.348],[-13.722,0.038]],"v":[[28.699,-8.521],[99.77,-13.43],[63.009,12.548]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":154,"s":[{"i":[[4.632,15.277],[-23.248,33.427],[18.232,-0.057]],"o":[[7.386,6.452],[1.483,13.378],[-13.722,0.043]],"v":[[29.521,-3.97],[99.059,-13.974],[64.339,15.119]],"c":true}]},{"t":179,"s":[{"i":[[4.632,15.277],[-26.029,32.887],[18.232,-0.057]],"o":[[8.425,7],[1.492,14.137],[-13.722,0.043]],"v":[[29.625,-1.344],[99.653,-10.094],[61.55,22.103]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.803921580315,0.65098041296,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Eyelids R","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[0,0],[4.324,-1.414]],"o":[[-1.436,4.534],[0,0]],"v":[[78.691,-13.361],[69.496,-3.851]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[0,0],[3.616,-0.401]],"o":[[-2.164,3.757],[0,0]],"v":[[73.459,-11.149],[64.229,-4.497]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[3.645,-0.349]],"o":[[-2.24,3.778],[0,0]],"v":[[73.602,-10.908],[64.205,-4.306]],"c":false}]},{"t":122,"s":[{"i":[[0,0],[4.324,-1.414]],"o":[[-1.436,4.534],[0,0]],"v":[[78.691,-13.361],[69.496,-3.851]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.921568632126,0.57647061348,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":3.5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[0,-2.713],[2.56,0],[0,2.713],[-2.56,0]],"o":[[0,2.713],[-2.56,0],[0,-2.713],[2.56,0]],"v":[[63.315,-30.297],[58.679,-25.385],[54.043,-30.297],[58.679,-35.21]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[0.643,-2.419],[1.942,0.509],[-0.643,2.419],[-1.942,-0.509]],"o":[[-0.643,2.419],[-1.942,-0.509],[0.643,-2.419],[1.942,0.509]],"v":[[65.811,-29.304],[61.129,-25.845],[58.777,-31.146],[63.459,-34.605]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0.687,-2.445],[1.946,0.547],[-0.687,2.445],[-1.946,-0.547]],"o":[[-0.687,2.445],[-1.946,-0.547],[0.687,-2.445],[1.946,0.547]],"v":[[66.208,-29.454],[61.439,-26.019],[59.161,-31.436],[63.929,-34.871]],"c":true}]},{"t":122,"s":[{"i":[[0,-2.713],[2.56,0],[0,2.713],[-2.56,0]],"o":[[0,2.713],[-2.56,0],[0,-2.713],[2.56,0]],"v":[[63.315,-30.297],[58.679,-25.385],[54.043,-30.297],[58.679,-35.21]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862747669,0.956862747669,0.956862747669,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[0,-7.145],[6.742,0],[0,7.145],[-6.742,0]],"o":[[0,7.145],[-6.742,0],[0,-7.145],[6.742,0]],"v":[[76.604,-19.143],[64.397,-6.206],[52.189,-19.143],[64.397,-32.08]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[1.694,-6.37],[5.115,1.339],[-1.694,6.37],[-5.115,-1.339]],"o":[[-1.694,6.37],[-5.115,-1.339],[1.694,-6.37],[5.115,1.339]],"v":[[73.248,-16.719],[60.919,-7.609],[54.725,-21.569],[67.054,-30.678]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[1.81,-6.437],[5.124,1.441],[-1.81,6.437],[-5.124,-1.441]],"o":[[-1.81,6.437],[-5.124,-1.441],[1.81,-6.437],[5.124,1.441]],"v":[[73.482,-16.564],[60.925,-7.517],[54.925,-21.782],[67.481,-30.829]],"c":true}]},{"t":122,"s":[{"i":[[0,-7.145],[6.742,0],[0,7.145],[-6.742,0]],"o":[[0,7.145],[-6.742,0],[0,-7.145],[6.742,0]],"v":[[76.604,-19.143],[64.397,-6.206],[52.189,-19.143],[64.397,-32.08]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.090196080506,0.074509806931,0.039215687662,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[0,-11.305],[10.668,0],[0,11.305],[-10.668,0]],"o":[[0,11.305],[-10.668,0],[0,-11.305],[10.668,0]],"v":[[83.713,-19.143],[64.397,1.327],[45.081,-19.143],[64.397,-39.612]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[2.681,-10.08],[8.093,2.119],[-2.681,10.08],[-8.093,-2.119]],"o":[[-2.681,10.08],[-8.093,-2.119],[2.681,-10.08],[8.093,2.119]],"v":[[78.144,-15.22],[59.132,-0.893],[48.836,-22.895],[67.622,-37.669]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[2.865,-10.186],[8.108,2.28],[-2.864,10.186],[-8.108,-2.28]],"o":[[-2.864,10.186],[-8.108,-2.28],[2.864,-10.186],[8.108,2.28]],"v":[[78.383,-14.964],[59.017,-0.73],[49.021,-23.222],[68.168,-37.914]],"c":true}]},{"t":122,"s":[{"i":[[0,-11.305],[10.668,0],[0,11.305],[-10.668,0]],"o":[[0,11.305],[-10.668,0],[0,-11.305],[10.668,0]],"v":[[83.713,-19.143],[64.397,1.327],[45.081,-19.143],[64.397,-39.612]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.235,0.02,0,0.375,0.435,0.175,0,1,0.635,0.329,0]}},"s":{"a":0,"k":[59.675,-24.844]},"e":{"a":0,"k":[73.207,-3.902]},"t":1,"nm":"Gradient Fill 12","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":3,"s":[0,0],"to":[0,0],"ti":[0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":13,"s":[-0.006,8.376],"to":[0,0],"ti":[0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":23,"s":[-1.078,3.102],"to":[0,0],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.3,"y":0},"t":32,"s":[-6.59,0.974],"to":[0,0],"ti":[0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":43,"s":[-2.188,8.319],"to":[0,0],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.3,"y":0},"t":65,"s":[-7.918,7.301],"to":[0,0],"ti":[0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.3,"y":0},"t":77,"s":[-1.795,7.236],"to":[0,0],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.3,"y":0},"t":103,"s":[-7.965,8.232],"to":[0,0],"ti":[0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":109,"s":[-7.67,-2.286],"to":[0,0],"ti":[0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[-0.135,1.995],"to":[0,0],"ti":[0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[-0.123,7.997],"to":[0,0],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.3,"y":0},"t":153,"s":[0.008,-1],"to":[0,0],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.337,"y":0},"t":156,"s":[-0.021,2.98],"to":[0,0],"ti":[0,0]},{"i":{"x":0.62,"y":1},"o":{"x":0.3,"y":0},"t":166,"s":[-0.019,2.993],"to":[0,0],"ti":[0,0]},{"t":171,"s":[0,0]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[-29.907,3.586],[0,0],[24.095,-2.642]],"o":[[0,0],[31.186,-3.739],[0,0],[-26.862,2.946]],"v":[[29.624,-4.564],[62.613,-43.605],[99.169,-14.451],[67.666,7.513]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":13,"s":[{"i":[[0,0],[-29.907,3.586],[0,0],[24.095,-2.642]],"o":[[0,0],[31.186,-3.739],[0,0],[-26.862,2.946]],"v":[[29.624,-4.564],[62.497,-43.798],[99.169,-14.451],[67.666,7.513]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.2,"y":0},"t":23,"s":[{"i":[[0,0],[-29.907,3.586],[0,0],[24.095,-2.642]],"o":[[0,0],[31.186,-3.739],[0,0],[-26.862,2.946]],"v":[[29.624,-4.564],[62.613,-43.605],[99.169,-14.451],[67.666,7.513]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.4,"y":0},"t":50,"s":[{"i":[[0,0],[-27.215,2.96],[0,0],[20.427,-4.393]],"o":[[0,0],[22.866,-2.487],[0,0],[-24.077,5.178]],"v":[[31.709,-4.564],[60.092,-38.347],[85.515,-14.459],[66.363,6.334]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[-27.719,1.9],[0,0],[20.893,-3.628]],"o":[[0,0],[23.289,-1.596],[0,0],[-24.626,4.277]],"v":[[30.742,-5.453],[60.893,-38.563],[85.707,-13.308],[65.444,7.002]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[-29.907,3.586],[0,0],[24.095,-2.642]],"o":[[0,0],[31.186,-3.739],[0,0],[-26.862,2.946]],"v":[[29.624,-4.564],[62.613,-43.605],[99.169,-14.451],[68.101,4.786]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[-29.907,3.132],[0,0],[24.095,-2.308]],"o":[[0,0],[31.186,-3.266],[0,0],[-26.862,2.573]],"v":[[29.624,-8.097],[62.613,-42.198],[100.097,-13.309],[67.666,2.452]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[-29.907,3.586],[0,0],[24.095,-2.642]],"o":[[0,0],[31.186,-3.739],[0,0],[-26.862,2.946]],"v":[[29.624,-4.564],[62.613,-43.605],[99.169,-14.451],[67.666,7.513]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[-29.907,3.586],[0,0],[24.095,-2.642]],"o":[[0,0],[31.186,-3.739],[0,0],[-26.862,2.946]],"v":[[29.624,-4.564],[62.613,-43.605],[99.169,-14.451],[67.666,7.513]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.96862745285,0.96862745285,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"Nose","parent":1,"sr":1,"ks":{"p":{"a":0,"k":[53.932,93.024,0]},"a":{"a":0,"k":[3.295,34.51,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,-2.322],[4.206,0],[0,2.321],[-4.206,0]],"o":[[0,2.321],[-4.206,0],[0,-2.322],[4.206,0]],"v":[[10.911,26.185],[3.295,30.69],[-4.321,26.185],[3.295,22.699]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,-2.322],[4.206,0],[0,2.321],[-4.206,0]],"o":[[0,2.321],[-4.206,0],[0,-2.322],[4.206,0]],"v":[[10.983,22.684],[3.367,27.189],[-4.249,22.684],[3.367,19.198]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,-2.322],[4.206,0],[0,2.321],[-4.206,0]],"o":[[0,2.321],[-4.206,0],[0,-2.322],[4.206,0]],"v":[[19.413,27.695],[11.797,32.2],[4.18,27.695],[11.797,24.209]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,-2.322],[4.206,0],[0,2.321],[-4.206,0]],"o":[[0,2.321],[-4.206,0],[0,-2.322],[4.206,0]],"v":[[11.185,22.194],[3.569,26.699],[-4.048,22.194],[3.569,18.708]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,-2.322],[4.206,0],[0,2.321],[-4.206,0]],"o":[[0,2.321],[-4.206,0],[0,-2.322],[4.206,0]],"v":[[11.119,28.93],[3.503,33.435],[-4.114,28.93],[3.503,25.443]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,-2.322],[4.206,0],[0,2.321],[-4.206,0]],"o":[[0,2.321],[-4.206,0],[0,-2.322],[4.206,0]],"v":[[10.934,24.935],[3.318,29.44],[-4.298,24.935],[3.318,21.449]],"c":true}]},{"t":179,"s":[{"i":[[0,-2.322],[4.206,0],[0,2.321],[-4.206,0]],"o":[[0,2.321],[-4.206,0],[0,-2.322],[4.206,0]],"v":[[10.911,26.185],[3.295,30.69],[-4.321,26.185],[3.295,22.699]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.866666674614,0.768627464771,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,-5.12],[8.164,0],[0,5.12],[-8.164,0]],"o":[[0,5.12],[-8.164,0],[0,-5.12],[8.164,0]],"v":[[18.077,30.533],[3.295,39.804],[-11.488,30.533],[3.295,22.103]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,-4.31],[8.548,0],[0,4.31],[-8.548,0]],"o":[[0,4.31],[-8.548,0],[0,-4.31],[8.548,0]],"v":[[18.844,25.699],[3.367,33.503],[-12.11,25.699],[3.367,18.602]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,-5.12],[8.164,0],[0,5.12],[-8.164,0]],"o":[[0,5.12],[-8.164,0],[0,-5.12],[8.164,0]],"v":[[28.998,31.4],[14.216,40.67],[-0.567,31.4],[14.216,22.97]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,-5.12],[8.164,0],[0,5.12],[-8.164,0]],"o":[[0,5.12],[-8.164,0],[0,-5.12],[8.164,0]],"v":[[18.351,26.543],[3.569,35.813],[-11.214,26.543],[3.569,18.113]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,-5.969],[9.086,0],[0,5.969],[-9.086,0]],"o":[[0,5.969],[-9.086,0],[0,-5.969],[9.086,0]],"v":[[19.954,34.676],[3.503,45.484],[-12.948,34.676],[3.503,24.848]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,-4.669],[8.283,0],[0,4.669],[-8.283,0]],"o":[[0,4.669],[-8.283,0],[0,-4.669],[8.283,0]],"v":[[18.316,28.541],[3.318,36.995],[-11.679,28.541],[3.318,20.853]],"c":true}]},{"t":179,"s":[{"i":[[0,-5.12],[8.164,0],[0,5.12],[-8.164,0]],"o":[[0,5.12],[-8.164,0],[0,-5.12],[8.164,0]],"v":[[18.077,30.533],[3.295,39.804],[-11.488,30.533],[3.295,22.103]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.803921580315,0.65098041296,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,-6.878],[9.437,0],[0,6.878],[-9.437,0]],"o":[[0,6.878],[-9.437,0],[0,-6.878],[9.437,0]],"v":[[20.383,34.464],[3.295,46.917],[-13.793,34.464],[3.295,22.304]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,-6.878],[9.437,0],[0,6.878],[-9.437,0]],"o":[[0,6.878],[-9.437,0],[0,-6.878],[9.437,0]],"v":[[20.455,30.963],[3.367,43.416],[-13.721,30.963],[3.367,18.804]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,-6.878],[9.437,0],[0,6.878],[-9.437,0]],"o":[[0,6.878],[-9.437,0],[0,-6.878],[9.437,0]],"v":[[28.885,35.974],[11.797,48.427],[-5.291,35.974],[11.797,23.815]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,-6.878],[9.437,0],[0,6.878],[-9.437,0]],"o":[[0,6.878],[-9.437,0],[0,-6.878],[9.437,0]],"v":[[20.657,30.473],[3.569,42.926],[-13.519,30.473],[3.569,18.314]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,-6.878],[9.437,0],[0,6.878],[-9.437,0]],"o":[[0,6.878],[-9.437,0],[0,-6.878],[9.437,0]],"v":[[20.59,37.209],[3.503,49.661],[-13.585,37.209],[3.503,25.049]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,-6.878],[9.437,0],[0,6.878],[-9.437,0]],"o":[[0,6.878],[-9.437,0],[0,-6.878],[9.437,0]],"v":[[20.406,33.214],[3.318,45.667],[-13.77,33.214],[3.318,21.054]],"c":true}]},{"t":179,"s":[{"i":[[0,-6.878],[9.437,0],[0,6.878],[-9.437,0]],"o":[[0,6.878],[-9.437,0],[0,-6.878],[9.437,0]],"v":[[20.383,34.464],[3.295,46.917],[-13.793,34.464],[3.295,22.304]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.960784316063,0.709803938866,0.533333361149,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"Hear","parent":15,"sr":1,"ks":{"p":{"a":0,"k":[3.314,-84.818,0]},"a":{"a":0,"k":[3.314,-84.818,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[-10.723,-49.899],[0,0],[0,0],[0,0],[16.651,-89.849],[-9.267,43.12]],"o":[[9.267,43.12],[-16.651,-89.849],[0,0],[0,0],[0,0],[10.723,-49.899]],"v":[[124.596,-104.176],[121.547,-28.04],[6.627,-85.873],[0,-85.873],[-114.92,-28.04],[-117.968,-104.176]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.31,"y":0},"t":14,"s":[{"i":[[-10.723,-56.34],[0,0],[0,0],[0,0],[6.484,-107.59],[-9.267,48.687]],"o":[[9.267,48.687],[-7.437,-113.744],[0,0],[0,0],[0,0],[10.723,-56.34]],"v":[[124.596,-105.87],[121.547,-19.906],[1.452,-115.452],[-5.175,-115.452],[-114.92,-19.906],[-117.968,-105.87]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[-13.424,-50.088],[0,0],[0,0],[0,0],[20.099,-90.888],[-9.267,44.066]],"o":[[9.889,36.899],[0.26,-85.195],[0,0],[0,0],[0,0],[10.723,-50.992]],"v":[[121.198,-101.694],[119.044,-20.344],[41.645,-76.004],[35.018,-76.004],[-111.82,-16.635],[-119.68,-102.71]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[-13.424,-54.906],[0,0],[0,0],[0,0],[16.053,-114.078],[-9.267,48.305]],"o":[[9.889,40.448],[0.3,-112.929],[0,0],[0,0],[0,0],[10.723,-55.898]],"v":[[121.198,-103.266],[119.044,-14.09],[38.403,-95.927],[31.776,-95.927],[-111.82,-10.024],[-119.68,-104.379]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[-13.424,-50.088],[0,0],[0,0],[0,0],[27.984,-87.014],[-9.267,44.066]],"o":[[9.889,36.899],[0.26,-85.195],[0,0],[0,0],[0,0],[10.723,-50.992]],"v":[[121.198,-101.694],[119.044,-20.344],[43.899,-70.247],[37.272,-70.247],[-111.82,-16.635],[-119.68,-102.71]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[-13.313,-52.67],[0,0],[0,0],[0,0],[19.478,-100.401],[-9.267,46.302]],"o":[[9.869,39.044],[0.007,-90.195],[0,0],[0,0],[0,0],[10.723,-53.581]],"v":[[121.31,-102.599],[119.126,-17.255],[39.731,-84.426],[33.103,-84.426],[-111.922,-13.499],[-120.405,-103.714]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-13.424,-50.088],[0,0],[0,0],[0,0],[20.099,-90.888],[-9.267,44.066]],"o":[[9.889,36.899],[0.26,-85.195],[0,0],[0,0],[0,0],[10.723,-50.992]],"v":[[121.198,-101.694],[119.044,-20.344],[41.645,-76.004],[35.018,-76.004],[-111.82,-16.635],[-119.68,-102.71]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-10.723,-56.509],[0,0],[0,0],[0,0],[5.982,-104.227],[-9.267,48.833]],"o":[[9.267,48.833],[-9.704,-108.882],[0,0],[0,0],[0,0],[10.723,-56.509]],"v":[[124.596,-105.915],[121.547,-19.692],[1.405,-123.611],[-5.222,-123.611],[-114.92,-19.692],[-117.968,-105.915]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-10.723,-49.899],[0,0],[0,0],[0,0],[22.95,-67.539],[-9.267,43.12]],"o":[[9.267,43.12],[-24.689,-76.002],[0,0],[0,0],[0,0],[10.723,-49.899]],"v":[[124.596,-104.176],[121.547,-28.04],[4.833,-79.313],[-1.794,-79.313],[-114.92,-28.04],[-117.968,-104.176]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[-10.723,-49.899],[0,0],[0,0],[0,0],[11.136,-93.331],[-9.267,43.12]],"o":[[9.267,43.12],[-11.777,-99.111],[0,0],[0,0],[0,0],[10.723,-49.899]],"v":[[124.596,-104.176],[121.547,-28.04],[5.809,-108.38],[-0.819,-108.38],[-114.92,-28.04],[-117.968,-104.176]],"c":true}]},{"t":179,"s":[{"i":[[-10.723,-49.899],[0,0],[0,0],[0,0],[16.651,-89.849],[-9.267,43.12]],"o":[[9.267,43.12],[-16.651,-89.849],[0,0],[0,0],[0,0],[10.723,-49.899]],"v":[[124.596,-104.176],[121.547,-28.04],[6.627,-85.873],[0,-85.873],[-114.92,-28.04],[-117.968,-104.176]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.035294119269,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[0,0],[-7.55,42.24],[0,0]],"o":[[0,0],[-0.26,-0.67],[0,0],[-13.43,21.24]],"v":[[-114.923,-28.036],[-114.933,-28.046],[-118.803,-99.826],[-103.943,-96.186]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.31,"y":0},"t":14,"s":[{"i":[[0,0],[0,0],[-7.55,47.693],[0,0]],"o":[[0,0],[-0.26,-0.757],[0,0],[-13.43,23.982]],"v":[[-114.923,-19.901],[-114.933,-19.912],[-118.803,-100.958],[-103.943,-96.849]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[0,0],[-7.55,43.166],[0,0]],"o":[[0,0],[-0.26,-0.685],[0,0],[-23.926,27.115]],"v":[[-112.658,-20.543],[-112.668,-20.553],[-121.003,-98.158],[-93.244,-90.196]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[0,0],[-7.55,47.318],[0,0]],"o":[[0,0],[-0.26,-0.751],[0,0],[-23.926,29.724]],"v":[[-112.658,-14.308],[-112.668,-14.319],[-121.003,-99.389],[-96.757,-91.884]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[0,0],[-7.55,43.166],[0,0]],"o":[[0,0],[-0.26,-0.685],[0,0],[-23.926,27.115]],"v":[[-112.658,-20.543],[-112.668,-20.553],[-121.003,-98.158],[-93.244,-90.196]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[0,0],[-7.55,45.357],[0,0]],"o":[[0,0],[-0.26,-0.72],[0,0],[-23.58,28.286]],"v":[[-112.732,-17.456],[-112.742,-17.467],[-120.931,-98.849],[-94.859,-94.174]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[0,0],[-7.55,43.166],[0,0]],"o":[[0,0],[-0.26,-0.685],[0,0],[-23.926,27.115]],"v":[[-112.658,-20.543],[-112.668,-20.553],[-121.003,-98.158],[-93.244,-90.196]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[0,0],[-7.55,47.836],[0,0]],"o":[[0,0],[-0.26,-0.759],[0,0],[-13.43,24.054]],"v":[[-114.923,-19.687],[-114.933,-19.699],[-118.803,-100.988],[-103.943,-96.866]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[0,0],[-7.55,42.24],[0,0]],"o":[[0,0],[-0.26,-0.67],[0,0],[-18.317,23.574]],"v":[[-114.923,-28.036],[-114.933,-28.046],[-118.803,-99.826],[-95.163,-87.459]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[0,0],[-7.55,42.24],[0,0]],"o":[[0,0],[-0.26,-0.67],[0,0],[-13.43,21.24]],"v":[[-114.923,-28.036],[-114.933,-28.046],[-118.803,-99.826],[-103.943,-96.186]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[0,0],[-7.55,42.24],[0,0]],"o":[[0,0],[-0.26,-0.67],[0,0],[-13.43,21.24]],"v":[[-114.923,-28.036],[-114.933,-28.046],[-118.803,-99.826],[-103.943,-96.186]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.32549020648,0.282352954149,0.286274522543,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0.27,-0.7],[0,0],[0,0],[0,0],[-0.08,-0.39]],"o":[[0,0],[4.85,-48.99],[0,0],[0.1,0.38],[9.16,44.6]],"v":[[121.557,-28.046],[121.547,-28.036],[110.677,-93.606],[124.327,-105.336],[124.597,-104.176]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.31,"y":0},"t":14,"s":[{"i":[[0.27,-0.79],[0,0],[0,0],[0,0],[-0.08,-0.44]],"o":[[0,0],[4.85,-55.314],[0,0],[0.1,0.429],[9.16,50.357]],"v":[[121.557,-19.912],[121.547,-19.901],[110.677,-93.936],[124.327,-107.18],[124.597,-105.87]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0.191,-0.715],[0,0],[0,0],[0,0],[-0.057,-0.398]],"o":[[0,0],[3.423,-50.064],[0,0],[0.071,0.388],[6.465,45.578]],"v":[[119.987,-20.117],[119.98,-20.107],[111.683,-91.248],[121.008,-102.879],[121.199,-101.694]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0.191,-0.784],[0,0],[0,0],[0,0],[-0.056,-0.437]],"o":[[0,0],[3.423,-54.88],[0,0],[0.071,0.426],[6.465,49.962]],"v":[[119.987,-13.841],[119.98,-13.83],[112.951,-91.806],[121.008,-104.565],[121.199,-103.266]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0.191,-0.715],[0,0],[0,0],[0,0],[-0.057,-0.398]],"o":[[0,0],[3.423,-50.064],[0,0],[0.071,0.388],[6.465,45.578]],"v":[[119.987,-20.117],[119.98,-20.107],[111.683,-91.248],[121.008,-102.879],[121.199,-101.694]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0.193,-0.752],[0,0],[0,0],[0,0],[-0.057,-0.419]],"o":[[0,0],[3.47,-52.605],[0,0],[0.072,0.408],[6.554,47.891]],"v":[[120.039,-17.025],[120.032,-17.014],[111.65,-91.61],[121.118,-103.845],[121.311,-102.599]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0.191,-0.715],[0,0],[0,0],[0,0],[-0.057,-0.398]],"o":[[0,0],[3.423,-50.064],[0,0],[0.071,0.388],[6.465,45.578]],"v":[[119.987,-20.117],[119.98,-20.107],[111.683,-91.248],[121.008,-102.879],[121.199,-101.694]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0.27,-0.793],[0,0],[0,0],[0,0],[-0.08,-0.441]],"o":[[0,0],[4.85,-55.48],[0,0],[0.1,0.43],[9.16,50.509]],"v":[[121.557,-19.699],[121.547,-19.687],[110.677,-93.944],[124.327,-107.228],[124.597,-105.915]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0.27,-0.7],[0,0],[0,0],[0,0],[-0.08,-0.39]],"o":[[0,0],[1.807,-44.826],[0,0],[0.1,0.38],[9.16,44.6]],"v":[[121.557,-28.046],[121.547,-28.036],[102.855,-87.857],[124.327,-105.336],[124.597,-104.176]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0.27,-0.7],[0,0],[0,0],[0,0],[-0.08,-0.39]],"o":[[0,0],[4.85,-48.99],[0,0],[0.1,0.38],[9.16,44.6]],"v":[[121.557,-28.046],[121.547,-28.036],[110.677,-93.606],[124.327,-105.336],[124.597,-104.176]],"c":true}]},{"t":179,"s":[{"i":[[0.27,-0.7],[0,0],[0,0],[0,0],[-0.08,-0.39]],"o":[[0,0],[4.85,-48.99],[0,0],[0.1,0.38],[9.16,44.6]],"v":[[121.557,-28.046],[121.547,-28.036],[110.677,-93.606],[124.327,-105.336],[124.597,-104.176]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.32549020648,0.282352954149,0.286274522543,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[-10.723,-49.899],[0,0],[0,0],[0,0],[16.651,-89.849],[-9.267,43.12]],"o":[[9.267,43.12],[-16.651,-89.849],[0,0],[0,0],[0,0],[10.723,-49.899]],"v":[[124.596,-104.176],[121.547,-28.04],[6.627,-85.873],[0,-85.873],[-114.92,-28.04],[-117.968,-104.176]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.31,"y":0},"t":14,"s":[{"i":[[-10.723,-56.34],[0,0],[0,0],[0,0],[10.029,-108.521],[-9.267,48.687]],"o":[[9.267,48.687],[-11.258,-117.915],[0,0],[0,0],[0,0],[10.723,-56.34]],"v":[[124.596,-105.87],[121.547,-19.906],[1.452,-115.452],[-5.175,-115.452],[-114.92,-19.906],[-117.968,-105.87]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[-7.568,-50.992],[0,0],[0,0],[0,0],[24.213,-83.585],[-9.267,44.066]],"o":[[6.54,44.066],[-7.053,-94.43],[0,0],[0,0],[0,0],[10.723,-50.992]],"v":[[121.198,-101.694],[119.98,-20.111],[41.645,-76.004],[35.018,-76.004],[-112.655,-20.547],[-117.968,-103.083]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[-7.568,-55.898],[0,0],[0,0],[0,0],[16.991,-103.582],[-9.267,48.305]],"o":[[6.54,48.305],[-4.958,-118.198],[0,0],[0,0],[0,0],[10.723,-55.898]],"v":[[121.198,-103.266],[119.98,-13.834],[38.403,-95.927],[31.776,-95.927],[-112.655,-14.312],[-117.968,-104.788]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[-7.568,-50.992],[0,0],[0,0],[0,0],[35.179,-86.552],[-9.267,44.066]],"o":[[6.54,44.066],[-7.053,-94.43],[0,0],[0,0],[0,0],[10.723,-50.992]],"v":[[121.198,-101.694],[119.98,-20.111],[43.899,-70.247],[37.272,-70.247],[-112.655,-20.547],[-117.968,-103.083]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[-7.672,-53.581],[0,0],[0,0],[0,0],[20.99,-95.512],[-9.267,46.302]],"o":[[6.63,46.302],[-7.192,-99.692],[0,0],[0,0],[0,0],[10.723,-53.581]],"v":[[121.31,-102.599],[120.032,-17.019],[39.731,-84.426],[33.103,-84.426],[-112.729,-17.46],[-117.968,-104.006]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-7.568,-50.992],[0,0],[0,0],[0,0],[24.213,-83.585],[-9.267,44.066]],"o":[[6.54,44.066],[-7.053,-94.43],[0,0],[0,0],[0,0],[10.723,-50.992]],"v":[[121.198,-101.694],[119.98,-20.111],[41.645,-76.004],[35.018,-76.004],[-112.655,-20.547],[-117.968,-103.083]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-10.723,-56.509],[0,0],[0,0],[0,0],[9.245,-108.517],[-9.267,48.833]],"o":[[9.267,48.833],[-8.943,-104.851],[0,0],[0,0],[0,0],[10.723,-56.509]],"v":[[124.596,-105.915],[121.547,-19.692],[1.405,-123.611],[-5.222,-123.611],[-114.92,-19.692],[-117.968,-105.915]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-10.723,-49.899],[0,0],[0,0],[0,0],[31.772,-73.321],[-9.267,43.12]],"o":[[9.267,43.12],[-24.611,-73.503],[0,0],[0,0],[0,0],[10.723,-49.899]],"v":[[124.596,-104.176],[121.547,-28.04],[4.833,-79.313],[-1.794,-79.313],[-114.92,-28.04],[-117.968,-104.176]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[-10.723,-49.899],[0,0],[0,0],[0,0],[15.652,-95.295],[-9.267,43.12]],"o":[[9.267,43.12],[-14.777,-99.135],[0,0],[0,0],[0,0],[10.723,-49.899]],"v":[[124.596,-104.176],[121.547,-28.04],[5.809,-108.38],[-0.819,-108.38],[-114.92,-28.04],[-117.968,-104.176]],"c":true}]},{"t":179,"s":[{"i":[[-10.723,-49.899],[0,0],[0,0],[0,0],[16.651,-89.849],[-9.267,43.12]],"o":[[9.267,43.12],[-16.651,-89.849],[0,0],[0,0],[0,0],[10.723,-49.899]],"v":[[124.596,-104.176],[121.547,-28.04],[6.627,-85.873],[0,-85.873],[-114.92,-28.04],[-117.968,-104.176]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.235294118524,0.207843139768,0.207843139768,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"HEAD","parent":21,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":3,"s":[0]},{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.356],"y":[0]},"t":17,"s":[-3]},{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":50,"s":[10.5]},{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.4],"y":[0]},"t":59,"s":[9]},{"i":{"x":[0.7],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":70,"s":[12]},{"i":{"x":[0.628],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":79,"s":[12]},{"i":{"x":[0.374],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":99,"s":[13]},{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":125,"s":[-4]},{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":143,"s":[1]},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":160,"s":[-0.5]},{"t":179,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.3,"y":0.84},"o":{"x":0.3,"y":0},"t":0,"s":[3.545,92.099,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.36,"y":0},"t":14,"s":[3.545,88.099,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[9.931,109.065,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[10.541,106.921,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[11.027,113.516,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.619,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[11.282,110.239,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[11.545,113.099,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[3.545,86.099,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[3.545,107.099,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[3.545,89.099,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[3.545,92.099,0]}]},"a":{"a":0,"k":[3.545,92.099,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[21.159,29.388],[21.159,-29.388],[-27.625,-57.601],[-27.78,0],[-27.625,57.601]],"o":[[-21.16,-29.388],[-21.16,29.388],[27.624,57.601],[27.78,0],[27.624,-57.601]],"v":[[94.202,-122.301],[-87.612,-122.301],[-98.779,33.22],[3.295,109.04],[105.369,33.22]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.31,"y":0},"t":14,"s":[{"i":[[21.16,28.077],[21.16,-28.076],[-27.624,-55.03],[-27.78,0],[-27.624,55.03]],"o":[[-21.16,-28.077],[-21.16,28.076],[27.624,55.03],[27.78,0],[27.624,-55.03]],"v":[[94.202,-118.605],[-87.612,-118.605],[-98.779,29.974],[3.295,102.41],[105.369,29.974]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[21.16,30.238],[21.16,-30.238],[-30.241,-59.253],[-27.769,0.793],[-27.624,59.267]],"o":[[-21.16,-30.238],[-21.16,30.238],[29.738,58.266],[26.95,-0.77],[27.624,-59.267]],"v":[[94.202,-122.754],[-87.612,-122.754],[-94.795,37.408],[20.532,116.007],[104.223,36.531]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[21.16,29.913],[21.16,-29.913],[-30.241,-58.615],[-27.769,0.785],[-27.625,58.629]],"o":[[-21.16,-29.913],[-21.16,29.913],[29.738,57.639],[26.95,-0.762],[27.625,-58.629]],"v":[[94.202,-123.079],[-87.612,-123.079],[-94.795,35.359],[20.532,113.112],[104.223,34.491]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[21.16,30.917],[21.16,-30.917],[-30.241,-60.582],[-27.769,0.811],[-27.624,60.597]],"o":[[-21.16,-30.917],[-21.16,30.917],[29.738,59.574],[26.95,-0.787],[27.624,-60.597]],"v":[[94.202,-122.075],[-87.612,-122.075],[-94.795,41.68],[20.532,122.043],[104.223,40.784]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[21.16,30.674],[21.16,-30.674],[-30.241,-60.106],[-27.769,0.806],[-27.625,60.121]],"o":[[-21.16,-30.674],[-21.16,30.674],[29.738,59.105],[26.95,-0.781],[27.624,-60.121]],"v":[[94.202,-122.318],[-87.612,-122.318],[-94.795,40.15],[20.532,119.881],[104.223,39.26]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[21.16,30.762],[21.16,-30.762],[-30.33,-60.279],[-27.769,0.833],[-27.624,60.294]],"o":[[-21.16,-30.762],[-21.16,30.762],[29.809,59.244],[26.922,-0.808],[27.624,-60.294]],"v":[[94.202,-122.445],[-87.612,-122.445],[-94.659,40.496],[21.118,120.475],[104.184,39.576]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[21.16,29.03],[21.16,-29.03],[-27.624,-56.899],[-27.78,0],[-27.624,56.899]],"o":[[-21.16,-29.03],[-21.16,29.03],[27.624,56.899],[27.78,0],[27.624,-56.899]],"v":[[94.202,-122.659],[-87.612,-122.659],[-98.779,30.967],[3.295,105.864],[105.369,30.967]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[21.16,30.001],[21.16,-30.001],[-27.003,-58.801],[-27.155,0],[-27.003,58.801]],"o":[[-21.16,-30.001],[-21.16,30.001],[27.003,58.801],[27.155,0],[27.003,-58.801]],"v":[[102.761,-119.957],[-94.046,-119.484],[-96.484,37.074],[3.295,114.474],[103.073,37.074]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[21.159,29.388],[21.159,-29.388],[-27.625,-57.601],[-27.78,0],[-27.625,57.601]],"o":[[-21.16,-29.388],[-21.16,29.388],[27.624,57.601],[27.78,0],[27.624,-57.601]],"v":[[94.202,-122.301],[-87.612,-122.301],[-98.779,33.22],[3.311,107.04],[105.369,33.22]],"c":true}]},{"t":179,"s":[{"i":[[21.159,29.388],[21.159,-29.388],[-27.625,-57.601],[-27.78,0],[-27.625,57.601]],"o":[[-21.16,-29.388],[-21.16,29.388],[27.624,57.601],[27.78,0],[27.624,-57.601]],"v":[[94.202,-122.301],[-87.612,-122.301],[-98.779,33.22],[3.295,109.04],[105.369,33.22]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.247],"y":[1]},"o":{"x":[0.521],"y":[0]},"t":19,"s":[0]},{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":50,"s":[2]},{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.4],"y":[0]},"t":59,"s":[3.3]},{"i":{"x":[0.7],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":70,"s":[0.5]},{"i":{"x":[0.627],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":79,"s":[1.1]},{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":103,"s":[0.7]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":118,"s":[0]},{"t":140,"s":[0]}]},"e":{"a":1,"k":[{"i":{"x":[0.247],"y":[1]},"o":{"x":[0.521],"y":[0]},"t":19,"s":[100]},{"i":{"x":[0.627],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":42,"s":[97]},{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":103,"s":[97]},{"t":118,"s":[100]}]},"o":{"a":1,"k":[{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":103,"s":[147]},{"t":118,"s":[143]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.792156875134,0.482352942228,0.333333343267,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[17.921,10.167],[53.043,0.041],[8.35,-9.157],[-22.488,-37.334],[-22.614,0],[-22.488,37.334]],"o":[[-11.181,-6.343],[-44.8,-0.035],[-15.832,17.363],[22.487,37.334],[22.614,0],[22.487,-37.334]],"v":[[87.114,-61.065],[1,-47.858],[-82.615,-59.065],[-78.797,40.887],[3.295,91.029],[85.387,40.887]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.31,"y":0},"t":14,"s":[{"i":[[17.922,10.155],[53.043,0.041],[8.35,-9.146],[-22.487,-37.289],[-22.614,0],[-22.487,37.289]],"o":[[-11.181,-6.336],[-44.8,-0.035],[-15.832,17.343],[22.487,37.289],[22.614,0],[22.487,-37.289]],"v":[[87.114,-71.075],[-0.131,-83.698],[-82.615,-69.078],[-78.797,30.755],[2.895,78.815],[85.387,30.755]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[6.39,13.964],[51.428,7.216],[8.35,-9.553],[-22.487,-38.946],[-22.542,1.787],[-12.685,26.448]],"o":[[-6.439,2.699],[-56.136,-7.877],[-15.832,18.114],[22.487,38.946],[22.78,-1.806],[10.955,-22.842]],"v":[[88.692,-24.028],[17.954,-24.437],[-74.652,-47.531],[-74.339,49.915],[26.064,103.926],[79.768,47.16]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[6.39,14.419],[32.291,1.37],[8.35,-9.864],[-23.906,-39.387],[-25.77,1.11],[-15.123,36.068]],"o":[[-10.273,1.437],[-56.648,-2.404],[-15.832,18.703],[27.216,44.84],[25.1,-1.081],[15.199,-36.249]],"v":[[94.241,-37.786],[22.28,-36.07],[-74.282,-55.288],[-74.339,40.319],[25.909,95.11],[88.615,39.011]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[6.39,12.998],[39.972,8.25],[10.542,-6.137],[-22.487,-36.252],[-22.17,4.405],[-13.382,28.437]],"o":[[-3.297,0.195],[-53.967,-11.139],[-25.423,14.8],[22.487,36.252],[16.876,-3.353],[8.352,-17.748]],"v":[[80.111,-3.385],[16.386,-8.784],[-74.424,-39.56],[-72.019,58.567],[26.064,109.855],[75.026,56.534]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[6.39,13.602],[39.941,6.663],[8.975,-8.725],[-22.487,-37.935],[-22.542,1.741],[-11.563,28.063]],"o":[[-6.439,2.629],[-55.903,-9.325],[-20.404,19.835],[22.487,37.935],[22.78,-1.759],[14.313,-34.738]],"v":[[88.511,-20.444],[19.214,-26.051],[-74.464,-46.298],[-74.339,52.25],[26.064,104.859],[76.858,50.666]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[5.998,13.966],[24.127,3.512],[10.936,-6.324],[-22.487,-38.646],[-22.607,-0.554],[-18.308,40.793]],"o":[[-13.916,1.949],[-51.468,-7.493],[-24.105,13.939],[22.487,38.646],[13.17,0.323],[11.558,-25.752]],"v":[[77.665,-13.876],[20.249,-15.424],[-74.089,-42.632],[-74.188,54.93],[26.852,108.65],[73.212,50.05]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[17.922,10.403],[43.525,-2.176],[8.35,-9.369],[-22.487,-38.198],[-22.614,0],[-22.487,38.198]],"o":[[-11.181,-6.49],[-44.744,2.237],[-15.832,17.765],[22.487,38.198],[22.614,0],[22.487,-38.198]],"v":[[83.986,-65.749],[-0.94,-76.078],[-81.455,-60.406],[-78.797,36.769],[3.295,88.073],[85.387,36.769]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[17.922,8.274],[53.025,1.414],[8.35,-7.452],[-21.982,-30.38],[-22.105,0],[-21.982,30.38]],"o":[[-11.181,-5.162],[-52.529,-1.4],[-15.832,14.129],[21.982,30.38],[22.105,0],[21.982,-30.38]],"v":[[97.143,-33.817],[0.797,-18.26],[-89.163,-35.143],[-71.604,64.049],[4.215,107.244],[79.845,62.834]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[17.922,10.005],[53.043,0.041],[8.35,-9.011],[-22.487,-36.739],[-22.614,0],[-22.487,36.739]],"o":[[-11.181,-6.242],[-44.8,-0.034],[-15.832,17.087],[22.487,36.739],[22.614,0],[22.487,-36.739]],"v":[[86.138,-64.187],[1.621,-63.178],[-82.086,-62.707],[-78.797,39.148],[2.573,84.986],[85.387,39.148]],"c":true}]},{"t":179,"s":[{"i":[[17.921,10.167],[53.043,0.041],[8.35,-9.157],[-22.488,-37.334],[-22.614,0],[-22.488,37.334]],"o":[[-11.181,-6.343],[-44.8,-0.035],[-15.832,17.363],[22.487,37.334],[22.614,0],[22.487,-37.334]],"v":[[87.114,-61.065],[1,-47.858],[-82.615,-59.065],[-78.797,40.887],[3.295,91.029],[85.387,40.887]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.803921580315,0.65098041296,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[21.159,29.388],[21.159,-29.388],[-27.625,-57.601],[-27.78,0],[-27.625,57.601]],"o":[[-21.16,-29.388],[-21.16,29.388],[27.624,57.601],[27.78,0],[27.624,-57.601]],"v":[[94.202,-122.301],[-87.612,-122.301],[-98.779,33.22],[3.295,109.04],[105.369,33.22]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.31,"y":0},"t":14,"s":[{"i":[[21.16,28.077],[21.16,-28.076],[-27.624,-55.03],[-27.78,0],[-27.624,55.03]],"o":[[-21.16,-28.077],[-21.16,28.076],[27.624,55.03],[27.78,0],[27.624,-55.03]],"v":[[94.202,-118.605],[-87.612,-118.605],[-98.779,29.974],[3.295,102.41],[105.369,29.974]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[21.16,30.238],[21.16,-30.238],[-30.241,-59.253],[-27.769,0.793],[-27.624,59.267]],"o":[[-21.16,-30.238],[-21.16,30.238],[29.738,58.266],[26.95,-0.77],[27.624,-59.267]],"v":[[94.202,-122.754],[-87.612,-122.754],[-94.795,37.408],[20.532,116.007],[104.223,36.531]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[21.16,29.913],[21.16,-29.913],[-30.241,-58.615],[-27.769,0.785],[-27.625,58.629]],"o":[[-21.16,-29.913],[-21.16,29.913],[29.738,57.639],[26.95,-0.762],[27.625,-58.629]],"v":[[94.202,-123.079],[-87.612,-123.079],[-94.795,35.359],[20.532,113.112],[104.223,34.491]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[21.16,30.917],[21.16,-30.917],[-30.241,-60.582],[-27.769,0.811],[-27.624,60.597]],"o":[[-21.16,-30.917],[-21.16,30.917],[29.738,59.574],[26.95,-0.787],[27.624,-60.597]],"v":[[94.202,-122.075],[-87.612,-122.075],[-94.795,41.68],[20.532,122.043],[104.223,40.784]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[21.16,30.674],[21.16,-30.674],[-30.241,-60.106],[-27.769,0.806],[-27.625,60.121]],"o":[[-21.16,-30.674],[-21.16,30.674],[29.738,59.105],[26.95,-0.781],[27.624,-60.121]],"v":[[94.202,-122.318],[-87.612,-122.318],[-94.795,40.15],[20.532,119.881],[104.223,39.26]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[21.16,30.762],[21.16,-30.762],[-30.33,-60.279],[-27.769,0.833],[-27.624,60.294]],"o":[[-21.16,-30.762],[-21.16,30.762],[29.809,59.244],[26.922,-0.808],[27.624,-60.294]],"v":[[94.202,-122.445],[-87.612,-122.445],[-94.659,40.496],[21.118,120.475],[104.184,39.576]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[21.16,29.03],[21.16,-29.03],[-27.624,-56.899],[-27.78,0],[-27.624,56.899]],"o":[[-21.16,-29.03],[-21.16,29.03],[27.624,56.899],[27.78,0],[27.624,-56.899]],"v":[[94.202,-122.659],[-87.612,-122.659],[-98.779,30.967],[3.295,105.864],[105.369,30.967]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[21.16,30.001],[21.16,-30.001],[-27.003,-58.801],[-27.155,0],[-27.003,58.801]],"o":[[-21.16,-30.001],[-21.16,30.001],[27.003,58.801],[27.155,0],[27.003,-58.801]],"v":[[102.761,-119.957],[-94.046,-119.484],[-96.484,37.074],[3.295,114.474],[103.073,37.074]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[21.159,29.388],[21.159,-29.388],[-27.625,-57.601],[-27.78,0],[-27.625,57.601]],"o":[[-21.16,-29.388],[-21.16,29.388],[27.624,57.601],[27.78,0],[27.624,-57.601]],"v":[[94.202,-122.301],[-87.612,-122.301],[-98.779,33.22],[3.311,107.04],[105.369,33.22]],"c":true}]},{"t":179,"s":[{"i":[[21.159,29.388],[21.159,-29.388],[-27.625,-57.601],[-27.78,0],[-27.625,57.601]],"o":[[-21.16,-29.388],[-21.16,29.388],[27.624,57.601],[27.78,0],[27.624,-57.601]],"v":[[94.202,-122.301],[-87.612,-122.301],[-98.779,33.22],[3.295,109.04],[105.369,33.22]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.960784316063,0.709803938866,0.533333361149,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"Ears","parent":15,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[3.464,-9.311,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.31,"y":0},"t":14,"s":[4.915,1.774,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[-1.871,-6.686,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[-0.949,0.464,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[-4.228,-13.429,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[-3.307,-8.476,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[-4.192,-11.831,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[3.396,-8.314,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[3.387,-14.311,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[3.444,-6.812,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[3.464,-9.311,0]}]},"a":{"a":0,"k":[3.464,-9.311,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[-13.352,-0.879],[-1.762,-15.497],[15.581,2.705]],"o":[[0,0],[1.368,12.036],[-19.17,-3.329]],"v":[[118.693,-40.799],[132,-25.369],[110.439,22.119]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.31,"y":0},"t":14,"s":[{"i":[[-12.539,-3.466],[1.212,-16.062],[14.319,5.749]],"o":[[0,0],[-0.941,12.474],[-17.617,-7.074]],"v":[[123.644,-39.922],[133.428,-21.702],[104.068,22.318]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[-10.785,-2.232],[-0.095,-15.403],[12.441,4.255]],"o":[[0,0],[0.074,11.962],[-15.306,-5.235]],"v":[[116.159,-39.528],[125.651,-23.008],[104.013,21.426]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[-10.389,-2.496],[0.589,-15.901],[11.91,4.613]],"o":[[0,0],[-0.457,12.349],[-14.653,-5.676]],"v":[[117.063,-40.332],[125.563,-23.111],[102.556,22.371]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[-10.503,-2.423],[0.303,-15.898],[12.072,4.529]],"o":[[0,0],[-0.235,12.347],[-14.853,-5.572]],"v":[[116.533,-40.406],[125.403,-23.251],[103.072,22.371]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[-11.372,-0.918],[-1.412,-14.701],[13.261,2.663]],"o":[[0,0],[1.097,11.417],[-16.316,-3.277]],"v":[[114.819,-39.108],[126.07,-24.399],[107.426,20.477]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-12.194,-0.831],[-1.609,-14.654],[14.23,2.558]],"o":[[0,0],[1.249,11.381],[-17.508,-3.148]],"v":[[116.315,-39.081],[128.468,-24.49],[108.777,20.414]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-13.352,-0.925],[-1.761,-16.312],[15.581,2.848]],"o":[[0,0],[1.368,12.668],[-19.17,-3.503]],"v":[[118.693,-40.642],[132,-24.402],[110.439,25.581]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-13.645,-1.815],[-0.769,-13.898],[15.811,3.61]],"o":[[0,0],[0.597,10.794],[-19.453,-4.441]],"v":[[121.647,-36.719],[134.271,-21.986],[108.957,18.511]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[-13.352,-0.898],[-1.761,-15.825],[15.581,2.763]],"o":[[0,0],[1.368,12.29],[-19.17,-3.399]],"v":[[118.693,-41.467],[132,-25.711],[110.439,22.782]],"c":true}]},{"t":179,"s":[{"i":[[-13.352,-0.879],[-1.762,-15.497],[15.581,2.705]],"o":[[0,0],[1.368,12.036],[-19.17,-3.329]],"v":[[118.693,-40.799],[132,-25.369],[110.439,22.119]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.792156875134,0.482352942228,0.333333343267,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.972549021244,0.690196096897,0.51372551918,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[11.692,-2.961],[1.762,-15.497],[-15.479,3.238]],"o":[[0,0],[-1.368,12.036],[20.674,-4.324]],"v":[[-111.767,-40.814],[-125.074,-25.385],[-103.513,22.103]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.31,"y":0},"t":14,"s":[{"i":[[10.903,-4.597],[-0.326,-16.106],[-14.524,5.388]],"o":[[0,0],[0.253,12.508],[19.398,-7.196]],"v":[[-115.026,-40.58],[-125.858,-22.997],[-98.828,22.746]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[11.547,-3.755],[1.172,-16.294],[-15.335,4.298]],"o":[[0,0],[-1.093,16.165],[20.481,-5.741]],"v":[[-114.18,-39.884],[-129.627,-23.875],[-101.508,21.647]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[11.491,-4.418],[0.519,-17.194],[-15.293,5.156]],"o":[[0,0],[-0.479,14.127],[20.424,-6.887]],"v":[[-116.034,-40.423],[-129.364,-22.285],[-99.79,22.372]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[11.899,-3.432],[1.756,-16.205],[-15.791,3.901]],"o":[[0,0],[-1.507,13.524],[21.09,-5.21]],"v":[[-114.308,-37.624],[-130.298,-21.404],[-102.529,20.275]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[12.233,-2.859],[2.768,-16.495],[-16.199,3.138]],"o":[[0,0],[-2.348,13.948],[21.635,-4.191]],"v":[[-113.278,-39.144],[-130.41,-24.272],[-104.362,20.476]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[12.278,-2.8],[2.873,-16.508],[-16.256,3.061]],"o":[[0,0],[-2.436,13.997],[21.711,-4.089]],"v":[[-113.218,-39.095],[-130.965,-24.249],[-104.55,20.399]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[11.692,-3.116],[1.761,-16.312],[-15.479,3.408]],"o":[[0,0],[-1.368,12.668],[20.674,-4.551]],"v":[[-111.767,-40.659],[-125.074,-24.419],[-103.513,25.564]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[12.111,-3.295],[1.101,-13.88],[-16.067,3.756]],"o":[[0,0],[-0.855,10.78],[21.459,-5.016]],"v":[[-114.707,-36.852],[-127.91,-22.378],[-103.033,18.628]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[11.692,-3.023],[1.761,-15.825],[-15.479,3.306]],"o":[[0,0],[-1.368,12.29],[20.674,-4.416]],"v":[[-111.767,-41.483],[-125.074,-25.727],[-103.513,22.766]],"c":true}]},{"t":179,"s":[{"i":[[11.692,-2.961],[1.762,-15.497],[-15.479,3.238]],"o":[[0,0],[-1.368,12.036],[20.674,-4.324]],"v":[[-111.767,-40.814],[-125.074,-25.385],[-103.513,22.103]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.792156875134,0.482352942228,0.333333343267,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.972549021244,0.690196096897,0.51372551918,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"Colar 2","parent":21,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.3,"y":0.84},"o":{"x":0.3,"y":0},"t":0,"s":[3.766,230.826,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[3.766,226.826,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[9.766,232.326,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[3.766,228.826,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[3.766,233.826,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[3.766,229.826,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[3.766,230.826,0]}]},"a":{"a":0,"k":[3.766,230.826,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":3,"s":[{"i":[[0,0],[-5.659,-3.283],[0,0],[10.958,17.946]],"o":[[0,0],[11.455,6.646],[2.992,-18.743],[0,0]],"v":[[41.079,150.245],[49.807,149.402],[64.066,172.481],[52.572,117.422]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.2,"y":0},"t":17,"s":[{"i":[[0,0],[-5.659,-3.283],[0,0],[10.958,15.344]],"o":[[0,0],[11.455,6.646],[2.992,-18.743],[0,0]],"v":[[41.079,150.245],[49.807,149.402],[65.566,172.481],[52.572,120.604]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0,0],[-6.871,0.206],[0,0],[10.45,19.833]],"o":[[0,0],[13.284,-0.385],[2.992,-19.777],[0,0]],"v":[[25.99,178.447],[46.933,168.457],[65.805,178.678],[50.417,114.728]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":79,"s":[{"i":[[0,0],[-6.871,0.206],[0,0],[10.45,19.833]],"o":[[0,0],[13.284,-0.385],[2.992,-19.777],[0,0]],"v":[[25.99,178.447],[46.933,168.457],[65.805,178.678],[50.417,114.728]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":108,"s":[{"i":[[0,0],[-6.924,0.359],[0,0],[10.428,20.03]],"o":[[0,0],[13.364,-0.693],[2.992,-19.822],[0,0]],"v":[[25.329,179.684],[46.807,169.293],[65.816,178.95],[50.322,114.47]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":125,"s":[{"i":[[0,0],[-5.659,-3.218],[0,0],[10.958,17.592]],"o":[[0,0],[11.455,6.515],[2.992,-18.374],[0,0]],"v":[[42.579,146.72],[52.057,146.894],[66.066,171.268],[52.572,118.294]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":143,"s":[{"i":[[0,0],[-5.659,-3.184],[0,0],[10.958,17.404]],"o":[[0,0],[11.455,6.445],[2.992,-18.177],[0,0]],"v":[[37.829,153.335],[49.807,151.768],[65.066,174.15],[55.822,118.203]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":160,"s":[{"i":[[0,0],[-5.659,-3.283],[0,0],[10.958,17.946]],"o":[[0,0],[11.455,6.646],[2.992,-18.743],[0,0]],"v":[[41.829,148.745],[50.807,147.902],[67.816,170.731],[52.572,117.422]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[-5.659,-3.283],[0,0],[10.958,17.946]],"o":[[0,0],[11.455,6.646],[2.992,-18.743],[0,0]],"v":[[41.079,150.245],[49.807,149.402],[64.066,172.481],[52.572,117.422]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.278431385756,0.603921592236,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":40},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":3,"s":[{"i":[[0,0],[19.534,6.047],[0,0],[15.072,-15.862]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[68.654,194.017],[34.205,172.481],[33.229,186.471],[3.989,208.932]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.2,"y":0},"t":17,"s":[{"i":[[0,0],[19.534,6.047],[0,0],[15.072,-15.862]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[69.654,191.517],[34.705,174.981],[33.729,188.971],[3.989,212.182]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0,0],[18.998,7.825],[0,0],[15.072,-16.737]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[66.062,199.142],[41.274,185.055],[37.756,196.107],[-1.16,214.283]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":79,"s":[{"i":[[0,0],[18.998,7.825],[0,0],[15.072,-16.737]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[66.062,199.142],[41.274,185.055],[37.756,196.107],[-1.16,214.283]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":108,"s":[{"i":[[0,0],[18.974,7.903],[0,0],[15.072,-16.776]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[65.904,199.476],[41.562,185.497],[37.932,196.42],[-1.386,214.375]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":125,"s":[{"i":[[0,0],[19.534,5.928],[0,0],[15.072,-15.55]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[69.404,190.629],[34.205,172.268],[33.229,185.981],[3.989,208]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":143,"s":[{"i":[[0,0],[19.534,5.864],[0,0],[15.072,-15.383]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[64.904,192.498],[36.705,173.738],[33.229,184.217],[3.989,206]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":160,"s":[{"i":[[0,0],[19.534,6.047],[0,0],[15.072,-15.862]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[70.154,191.767],[34.205,172.481],[33.229,186.471],[3.989,208.932]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[19.534,6.047],[0,0],[15.072,-15.862]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[68.654,194.017],[34.205,172.481],[33.229,186.471],[3.989,208.932]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":80},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":3,"s":[{"i":[[15.072,-15.862],[-5.705,10.905],[-1.23,26.779],[-2.644,-7.542],[0.082,-29.582],[19.534,6.047],[0,0]],"o":[[0,0],[2.677,-5.117],[0,0],[1.625,4.636],[0,0],[0,0],[0,0]],"v":[[3.989,208.932],[11.665,183.761],[52.738,114.376],[63.152,137.546],[68.654,194.017],[34.205,172.481],[33.229,186.471]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.2,"y":0},"t":17,"s":[{"i":[[15.072,-15.862],[-5.705,10.905],[-1.23,22.897],[-2.644,-6.449],[0.082,-29.582],[19.534,6.047],[0,0]],"o":[[0,0],[2.677,-5.117],[0,0],[1.625,3.964],[0,0],[0,0],[0,0]],"v":[[3.989,212.182],[11.665,187.011],[52.738,118],[63.152,137.81],[69.654,191.517],[34.705,174.981],[33.729,188.971]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[15.072,-16.737],[-8.557,9.555],[3.237,37.7],[-2.644,-7.912],[3.927,-26.607],[18.998,7.825],[0,0]],"o":[[0,0],[8.021,-8.865],[0,0],[1.625,4.864],[0,0],[0,0],[0,0]],"v":[[-0.681,215.48],[16.216,190.956],[50.582,111.534],[60.997,135.121],[66.062,199.142],[41.872,185.055],[37.636,196.107]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":79,"s":[{"i":[[15.072,-16.737],[-8.557,9.555],[3.237,37.7],[-2.644,-7.912],[3.927,-26.607],[18.998,7.825],[0,0]],"o":[[0,0],[8.021,-8.865],[0,0],[1.625,4.864],[0,0],[0,0],[0,0]],"v":[[-0.681,215.48],[16.216,190.956],[50.582,111.534],[60.997,135.121],[66.062,199.142],[41.872,185.055],[37.636,196.107]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":108,"s":[{"i":[[15.072,-16.776],[-8.682,9.496],[3.433,38.35],[-2.644,-7.976],[4.096,-26.476],[18.974,7.903],[0,0]],"o":[[0,0],[8.256,-9.03],[0,0],[1.625,4.903],[0,0],[0,0],[0,0]],"v":[[-0.886,215.625],[16.415,191.129],[50.488,111.25],[60.902,135.003],[65.904,199.476],[42.187,185.497],[37.807,196.42]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":125,"s":[{"i":[[15.072,-15.55],[-5.705,10.69],[-1.23,26.251],[-2.644,-7.393],[0.082,-28.998],[19.534,5.928],[0,0]],"o":[[0,0],[2.677,-5.016],[0,0],[1.625,4.545],[0,0],[0,0],[0,0]],"v":[[3.989,208],[11.665,183.325],[52.738,115.309],[63.152,138.021],[69.404,190.629],[34.205,172.268],[33.229,185.981]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":143,"s":[{"i":[[15.072,-15.383],[-5.705,10.576],[-1.23,25.97],[-2.644,-7.314],[5.096,-28.498],[19.534,5.864],[0,0]],"o":[[0,0],[2.677,-4.963],[0,0],[1.625,4.496],[0,0],[0,0],[0,0]],"v":[[3.989,206],[11.665,181.589],[55.988,115.25],[63.152,136.769],[64.904,192.498],[36.705,173.738],[33.229,184.217]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":160,"s":[{"i":[[15.072,-15.862],[-5.705,10.905],[-1.23,26.779],[-2.644,-7.542],[0.082,-29.582],[19.534,6.047],[0,0]],"o":[[0,0],[2.677,-5.117],[0,0],[1.625,4.636],[0,0],[0,0],[0,0]],"v":[[3.989,208.932],[11.665,183.761],[52.738,114.376],[63.152,137.546],[70.154,191.767],[34.205,172.481],[33.229,186.471]],"c":true}]},{"t":179,"s":[{"i":[[15.072,-15.862],[-5.705,10.905],[-1.23,26.779],[-2.644,-7.542],[0.082,-29.582],[19.534,6.047],[0,0]],"o":[[0,0],[2.677,-5.117],[0,0],[1.625,4.636],[0,0],[0,0],[0,0]],"v":[[3.989,208.932],[11.665,183.761],[52.738,114.376],[63.152,137.546],[68.654,194.017],[34.205,172.481],[33.229,186.471]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.278431385756,0.603921592236,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.568627476692,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[36.322,161.654]},"a":{"a":0,"k":[36.322,161.654]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 8","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":3,"s":[{"i":[[0,0],[-10.027,-5.165],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-57.717,170.652],[-35.659,145.906],[-46.887,115.458],[-57.717,131.96]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.31,"y":0},"t":17,"s":[{"i":[[0,0],[-10.027,-5.165],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-59.967,169.902],[-35.659,145.906],[-46.887,118.925],[-57.717,133.034]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[-22.618,-10.75],[0,0],[3.136,-10.592]],"o":[[0,0],[0,0],[0,0],[-5.496,18.565]],"v":[[-55.656,195.398],[-16.499,170.515],[-51.677,111.95],[-61.908,129.86]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[-24.999,-14.595],[0,0],[3.136,-10.592]],"o":[[0,0],[0,0],[0,0],[-5.496,18.565]],"v":[[-58.638,187.54],[-20.723,163.671],[-51.677,111.95],[-61.908,129.86]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[-19.833,-6.004],[0,0],[3.136,-10.592]],"o":[[0,0],[0,0],[0,0],[-5.496,18.565]],"v":[[-52.432,197.178],[-16.499,170.515],[-51.677,111.95],[-61.908,129.86]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[-22.618,-10.75],[0,0],[3.136,-10.592]],"o":[[0,0],[0,0],[0,0],[-5.496,18.565]],"v":[[-58.134,190.559],[-18.481,166.186],[-51.677,111.95],[-61.908,129.86]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":108,"s":[{"i":[[0,0],[-23.171,-10.995],[0,0],[3.273,-11.056]],"o":[[0,0],[0,0],[0,0],[-5.737,19.379]],"v":[[-55.467,196.516],[-15.659,171.594],[-51.887,111.644],[-62.092,129.721]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":125,"s":[{"i":[[0,0],[-10.027,-5.063],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-59.217,169.975],[-36.409,142.466],[-46.887,116.369],[-57.717,132.545]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":143,"s":[{"i":[[0,0],[-10.027,-5.009],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-57.717,176.126],[-31.409,148.377],[-50.637,116.061],[-57.717,131.352]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":160,"s":[{"i":[[0,0],[-13.591,-7.046],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-59.467,168.652],[-35.659,143.656],[-46.887,115.458],[-57.717,131.96]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[-10.027,-5.165],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-57.717,170.652],[-35.659,145.906],[-46.887,115.458],[-57.717,131.96]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.278431385756,0.603921592236,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":40},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":3,"s":[{"i":[[0,0],[0,0],[0,0],[16.948,-15.582]],"o":[[-10.559,-10.471],[0,0],[0,0],[0,0]],"v":[[3.989,204.729],[-21.805,186.673],[-24.383,175.044],[-59.92,194.25]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.31,"y":0},"t":17,"s":[{"i":[[0,0],[0,0],[0,0],[16.948,-15.582]],"o":[[-10.559,-10.471],[0,0],[0,0],[0,0]],"v":[[3.989,207.979],[-21.305,189.173],[-23.883,177.544],[-61.67,192.25]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[0,0],[0,0],[16.948,-16.441]],"o":[[-10.559,-11.048],[0,0],[0,0],[0,0]],"v":[[-0.681,211.045],[-18.91,193.04],[-24.601,184.84],[-55.922,199.169]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[0,0],[0,0],[16.948,-16.441]],"o":[[-10.559,-11.048],[0,0],[0,0],[0,0]],"v":[[-0.681,211.045],[-18.91,193.04],[-25.346,182.306],[-57.165,196.634]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[0,0],[0,0],[16.948,-16.441]],"o":[[-10.559,-11.048],[0,0],[0,0],[0,0]],"v":[[-0.681,211.045],[-18.91,193.04],[-24.936,183.7],[-53.257,199.808]],"c":false}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[0,0],[0,0],[16.948,-16.441]],"o":[[-10.559,-11.048],[0,0],[0,0],[0,0]],"v":[[-0.681,211.045],[-18.91,193.04],[-24.601,184.84],[-57.409,197.896]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":108,"s":[{"i":[[0,0],[0,0],[0,0],[16.948,-16.479]],"o":[[-10.559,-11.073],[0,0],[0,0],[0,0]],"v":[[-0.886,211.18],[-18.805,193.209],[-24.633,185.16],[-55.67,199.473]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":125,"s":[{"i":[[0,0],[0,0],[0,0],[16.948,-15.275]],"o":[[-10.559,-10.264],[0,0],[0,0],[0,0]],"v":[[3.989,203.88],[-21.805,186.18],[-24.383,174.78],[-61.17,192.607]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":143,"s":[{"i":[[0,0],[0,0],[0,0],[16.948,-15.111]],"o":[[-10.559,-10.154],[0,0],[0,0],[0,0]],"v":[[3.989,201.924],[-21.805,184.413],[-26.633,175.511],[-55.42,192.499]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":160,"s":[{"i":[[0,0],[0,0],[0,0],[16.948,-15.582]],"o":[[-10.559,-10.471],[0,0],[0,0],[0,0]],"v":[[3.989,204.729],[-21.805,186.673],[-24.383,175.044],[-60.67,193.5]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[0,0],[0,0],[16.948,-15.582]],"o":[[-10.559,-10.471],[0,0],[0,0],[0,0]],"v":[[3.989,204.729],[-21.805,186.673],[-24.383,175.044],[-59.92,194.25]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":80},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":3,"s":[{"i":[[0,0],[-6.875,-14.867],[0,0],[0,0],[0,0],[16.948,-15.582],[-5.169,30.24]],"o":[[6.148,26.584],[0,0],[-10.559,-10.471],[0,0],[0,0],[0,0],[1.139,-6.666]],"v":[[-46.888,115.458],[7.383,194.061],[3.989,204.729],[-21.805,186.673],[-24.383,175.044],[-59.92,194.25],[-58.325,134.124]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.31,"y":0},"t":17,"s":[{"i":[[0,0],[-6.875,-14.867],[0,0],[0,0],[0,0],[16.948,-15.582],[-5.169,25.856]],"o":[[6.148,22.73],[0,0],[-10.559,-10.471],[0,0],[0,0],[0,0],[1.139,-5.7]],"v":[[-46.888,118.925],[7.383,197.311],[3.989,207.979],[-21.305,189.173],[-23.883,177.544],[-61.67,192.25],[-58.325,134.884]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[{"i":[[0,0],[-6.875,-15.687],[0,0],[0,0],[0,0],[16.948,-16.441],[-5.169,31.724]],"o":[[6.148,27.888],[0,0],[-10.559,-11.048],[0,0],[0,0],[0,0],[1.139,-6.993]],"v":[[-51.678,111.95],[7.143,201.346],[-0.681,211.045],[-17.473,192.8],[-24.601,184.84],[-55.922,199.169],[-62.157,130.334]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[{"i":[[0,0],[-6.875,-15.687],[0,0],[0,0],[0,0],[16.948,-16.441],[-5.169,31.724]],"o":[[6.148,27.888],[0,0],[-10.559,-11.048],[0,0],[0,0],[0,0],[1.139,-6.993]],"v":[[-51.678,111.95],[7.143,201.346],[-0.681,211.045],[-17.473,192.8],[-25.098,183.32],[-57.165,196.634],[-62.157,130.334]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[{"i":[[0,0],[-6.875,-15.687],[0,0],[0,0],[0,0],[16.948,-16.441],[-5.169,31.724]],"o":[[6.148,27.888],[0,0],[-10.559,-11.048],[0,0],[0,0],[0,0],[1.139,-6.993]],"v":[[-51.678,111.95],[7.143,201.346],[-0.681,211.045],[-17.473,192.8],[-24.825,184.156],[-53.257,199.808],[-62.157,130.334]],"c":true}]},{"i":{"x":0.627,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[{"i":[[0,0],[-6.875,-15.687],[0,0],[0,0],[0,0],[16.948,-16.441],[-5.169,31.724]],"o":[[6.148,27.888],[0,0],[-10.559,-11.048],[0,0],[0,0],[0,0],[1.139,-6.993]],"v":[[-51.678,111.95],[7.143,201.346],[-0.681,211.045],[-17.473,192.8],[-24.601,184.84],[-57.409,197.896],[-62.157,130.334]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":108,"s":[{"i":[[0,0],[-6.875,-15.723],[0,0],[0,0],[0,0],[16.948,-16.479],[-5.169,31.981]],"o":[[6.148,28.114],[0,0],[-10.559,-11.073],[0,0],[0,0],[0,0],[1.139,-7.05]],"v":[[-51.888,111.644],[7.133,201.523],[-0.886,211.18],[-17.305,192.959],[-24.633,185.16],[-55.67,199.473],[-62.325,130.134]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":125,"s":[{"i":[[0,0],[-6.875,-14.574],[0,0],[0,0],[0,0],[16.948,-15.275],[-5.169,29.644]],"o":[[6.148,26.059],[0,0],[-10.559,-10.264],[0,0],[0,0],[0,0],[1.139,-6.535]],"v":[[-46.888,116.369],[7.383,193.422],[3.989,203.88],[-21.805,186.18],[-24.383,174.78],[-61.17,192.607],[-58.325,134.667]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":143,"s":[{"i":[[0,0],[-6.875,-14.418],[0,0],[0,0],[0,0],[16.948,-15.111],[-5.169,29.327]],"o":[[6.148,25.781],[0,0],[-10.559,-10.154],[0,0],[0,0],[0,0],[1.139,-6.465]],"v":[[-50.638,116.061],[7.383,191.578],[3.989,201.924],[-21.805,184.413],[-26.633,175.511],[-55.42,192.499],[-58.325,133.451]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":160,"s":[{"i":[[0,0],[-6.875,-14.867],[0,0],[0,0],[0,0],[16.948,-15.582],[-5.169,30.24]],"o":[[6.148,26.584],[0,0],[-10.559,-10.471],[0,0],[0,0],[0,0],[1.139,-6.666]],"v":[[-46.888,115.458],[7.383,194.061],[3.989,204.729],[-21.805,186.673],[-24.383,175.044],[-60.67,193.5],[-58.325,134.124]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[-6.875,-14.867],[0,0],[0,0],[0,0],[16.948,-15.582],[-5.169,30.24]],"o":[[6.148,26.584],[0,0],[-10.559,-10.471],[0,0],[0,0],[0,0],[1.139,-6.666]],"v":[[-46.888,115.458],[7.383,194.061],[3.989,204.729],[-21.805,186.673],[-24.383,175.044],[-59.92,194.25],[-58.325,134.124]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.278431385756,0.603921592236,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.568627476692,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 6","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[-26.87,160.094]},"a":{"a":0,"k":[-26.87,160.094]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 9","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"Colar","parent":21,"sr":1,"ks":{"p":{"a":0,"k":[3.766,230.826,0]},"a":{"a":0,"k":[3.766,230.826,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,-3.252],[3.252,0],[0,3.252],[-3.252,0]],"o":[[0,3.252],[-3.252,0],[0,-3.252],[3.252,0]],"v":[[19.071,224.938],[13.183,230.826],[7.294,224.938],[13.183,219.049]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0.112,-3.25],[3.252,0],[0.987,0.187],[-3.252,0]],"o":[[-1.071,0.312],[-3.252,0],[-0.155,-3.248],[3.252,0]],"v":[[19.071,224.938],[12.714,225.076],[7.294,224.938],[13.183,219.049]],"c":true}]},{"t":122,"s":[{"i":[[0,-3.252],[3.252,0],[0,3.252],[-3.252,0]],"o":[[0,3.252],[-3.252,0],[0,-3.252],[3.252,0]],"v":[[19.071,224.938],[13.183,230.826],[7.294,224.938],[13.183,219.049]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.141176477075,0.329411774874,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.3,"y":0.936},"o":{"x":0.3,"y":0},"t":0,"s":[11,230],"to":[0,0],"ti":[0,0]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[11,227.5],"to":[0,0],"ti":[0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[10.5,235.75],"to":[0,0],"ti":[0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[11,227.75],"to":[0,0],"ti":[0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[11,230.5],"to":[0,0],"ti":[0,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[11,229],"to":[0,0],"ti":[0,0]},{"t":179,"s":[11,230]}]},"a":{"a":0,"k":[11,230]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23.89,228.644],[23.89,190.686],[2.475,208.932],[2.475,228.644]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.278431385756,0.603921592236,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":60},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 7","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"Shoulders","parent":17,"sr":1,"ks":{"p":{"a":0,"k":[3.028,157.319,0]},"a":{"a":0,"k":[3.028,157.319,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0.829,-2.081],[-4.327,-1.725],[-0.829,2.081],[4.327,1.725]],"o":[[-0.829,2.081],[4.327,1.725],[0.829,-2.081],[-4.327,-1.725]],"v":[[92.07,140.928],[98.403,147.819],[107.74,147.175],[101.407,140.284]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0.829,-1.794],[-4.327,-1.487],[-0.829,1.794],[4.327,1.487]],"o":[[-0.829,1.794],[4.327,1.487],[0.829,-1.794],[-4.327,-1.487]],"v":[[92.07,142.813],[98.403,148.755],[107.74,148.199],[101.407,142.257]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0.612,-2.124],[-4.001,-1.471],[-0.612,2.124],[4.001,1.471]],"o":[[-0.612,2.124],[4.001,1.471],[0.612,-2.124],[-4.001,-1.471]],"v":[[90.125,142.011],[95.886,149.396],[104.615,147.338],[98.478,140.203]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0.829,-2.081],[-4.327,-1.725],[-0.829,2.081],[4.327,1.725]],"o":[[-0.829,2.081],[4.327,1.725],[0.829,-2.081],[-4.327,-1.725]],"v":[[92.07,140.928],[98.403,147.819],[107.74,147.175],[101.407,140.284]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0.657,-2.315],[-4.454,-1.521],[-0.657,2.315],[4.454,1.521]],"o":[[-0.658,2.315],[4.454,1.521],[0.657,-2.315],[-4.454,-1.521]],"v":[[91.038,139.138],[97.913,146.083],[107.169,144.645],[100.294,137.7]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0.829,-1.99],[-4.327,-1.65],[-0.829,1.99],[4.327,1.65]],"o":[[-0.829,1.99],[4.327,1.65],[0.829,-1.99],[-4.327,-1.65]],"v":[[92.07,141.524],[98.403,148.115],[107.74,147.498],[101.407,140.908]],"c":true}]},{"t":179,"s":[{"i":[[0.829,-2.081],[-4.327,-1.725],[-0.829,2.081],[4.327,1.725]],"o":[[-0.829,2.081],[4.327,1.725],[0.829,-2.081],[-4.327,-1.725]],"v":[[92.07,140.928],[98.403,147.819],[107.74,147.175],[101.407,140.284]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.141176477075,0.329411774874,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[6.124,-8.833],[0,0],[5.37,9.28]],"o":[[45.684,12.87],[0,0],[-13.414,-19.851]],"v":[[81.801,136.907],[136.108,180.575],[134.478,158.515]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[4.962,-6.069],[0,0],[5.37,8.002]],"o":[[45.684,11.098],[0,0],[-14.254,-15.997]],"v":[[81.801,139.345],[135.358,180],[134.478,158.728]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[4.939,-9.169],[0,0],[5.424,8.95]],"o":[[41.903,10.2],[0,0],[-13.336,-19.034]],"v":[[80.633,138.592],[132.266,179.028],[129.384,154.608]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[6.124,-8.833],[0,0],[5.37,9.28]],"o":[[45.684,12.87],[0,0],[-13.414,-19.851]],"v":[[81.801,136.907],[136.108,180.575],[134.478,158.515]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[5.386,-10.035],[0,0],[6.109,9.605]],"o":[[46.592,10.281],[0,0],[-14.989,-20.392]],"v":[[80.473,135.607],[138.168,178.495],[134.675,152.675]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[6.124,-8.449],[0,0],[5.37,8.876]],"o":[[45.684,12.31],[0,0],[-13.414,-18.987]],"v":[[81.801,137.677],[136.108,179.445],[134.478,158.345]],"c":true}]},{"t":179,"s":[{"i":[[6.124,-8.833],[0,0],[5.37,9.28]],"o":[[45.684,12.87],[0,0],[-13.414,-19.851]],"v":[[81.801,136.907],[136.108,180.575],[134.478,158.515]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":40},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[-3.259,-1.955],[-21.722,-17.831],[5.372,9.277],[19.646,6.944]],"o":[[0,0],[3.259,1.955],[0,0],[0,0],[-7.76,-2.743]],"v":[[80.763,133.529],[89.141,153.13],[136.104,180.576],[134.478,158.515],[100.328,135.718]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[-3.259,-1.686],[-21.604,-19.001],[5.372,8],[19.646,5.988]],"o":[[0,0],[3.259,1.686],[0,0],[0,0],[-7.76,-2.365]],"v":[[80.763,136.433],[89.141,153.335],[135.354,180.001],[134.478,158.728],[100.328,138.32]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[-3.056,-1.763],[-20.676,-16.538],[5.426,8.947],[18.111,5.793]],"o":[[0,0],[3.056,1.763],[0,0],[0,0],[-7.153,-2.288]],"v":[[79.233,136.907],[87.774,156.607],[132.263,181.529],[129.384,154.608],[97.465,135.083]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[-3.259,-1.955],[-21.722,-17.831],[5.372,9.277],[19.646,6.944]],"o":[[0,0],[3.259,1.955],[0,0],[0,0],[-7.76,-2.743]],"v":[[80.763,133.529],[89.141,153.13],[136.104,180.576],[134.478,158.515],[100.328,135.718]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[-3.408,-1.855],[-23.107,-17.549],[6.111,9.601],[20.151,5.945]],"o":[[0,0],[3.408,1.855],[0,0],[0,0],[-7.959,-2.348]],"v":[[79.164,132.039],[89.111,152.561],[138.164,178.496],[134.675,152.675],[98.846,132.849]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[-3.259,-1.87],[-21.722,-17.055],[5.372,8.874],[19.646,6.642]],"o":[[0,0],[3.259,1.87],[0,0],[0,0],[-7.76,-2.623]],"v":[[80.763,134.447],[89.141,153.195],[136.104,179.446],[134.478,158.345],[100.328,136.54]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[-3.259,-1.955],[-21.722,-17.831],[5.372,9.277],[19.646,6.944]],"o":[[0,0],[3.259,1.955],[0,0],[0,0],[-7.76,-2.743]],"v":[[80.763,133.529],[89.141,153.13],[136.104,180.576],[134.478,158.515],[100.328,135.718]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.411764711142,0.800000011921,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 9","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[-0.829,-2.081],[4.327,-1.725],[0.829,2.081],[-4.327,1.725]],"o":[[0.829,2.081],[-4.327,1.725],[-0.829,-2.081],[4.327,-1.725]],"v":[[-86.015,141.507],[-92.348,148.398],[-101.685,147.754],[-95.352,140.863]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[-0.829,-1.794],[4.327,-1.487],[0.829,1.794],[-4.327,1.487]],"o":[[0.829,1.794],[-4.327,1.487],[-0.829,-1.794],[4.327,-1.487]],"v":[[-86.015,143.312],[-92.348,149.254],[-101.685,148.698],[-95.352,142.757]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-0.843,-2.097],[4.629,-1.64],[0.843,2.097],[-4.629,1.64]],"o":[[0.843,2.097],[-4.629,1.64],[-0.843,-2.097],[4.629,-1.64]],"v":[[-87.736,140.373],[-94.592,148.638],[-104.501,146.311],[-97.894,138.295]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-0.829,-2.081],[4.327,-1.725],[0.829,2.081],[-4.327,1.725]],"o":[[0.829,2.081],[-4.327,1.725],[-0.829,-2.081],[4.327,-1.725]],"v":[[-86.015,141.507],[-92.348,148.398],[-101.685,147.754],[-95.352,140.863]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-0.62,-2.309],[4.479,-1.445],[0.62,2.309],[-4.479,1.445]],"o":[[0.62,2.309],[-4.479,1.445],[-0.62,-2.309],[4.479,-1.445]],"v":[[-84.797,140.263],[-91.785,147.06],[-101.017,145.495],[-94.029,138.699]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[-0.829,-1.99],[4.327,-1.65],[0.829,1.99],[-4.327,1.65]],"o":[[0.829,1.99],[-4.327,1.65],[-0.829,-1.99],[4.327,-1.65]],"v":[[-86.015,142.077],[-92.348,148.668],[-101.685,148.052],[-95.352,141.461]],"c":true}]},{"t":179,"s":[{"i":[[-0.829,-2.081],[4.327,-1.725],[0.829,2.081],[-4.327,1.725]],"o":[[0.829,2.081],[-4.327,1.725],[-0.829,-2.081],[4.327,-1.725]],"v":[[-86.015,141.507],[-92.348,148.398],[-101.685,147.754],[-95.352,140.863]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.141176477075,0.329411774874,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[-2.454,-9.412],[0,0],[-5.37,9.28]],"o":[[-45.684,12.87],[0,0],[19.26,-21.185]],"v":[[-75.746,137.486],[-130.053,181.154],[-128.423,159.094]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[-2.454,-8.116],[0,0],[-5.37,8.002]],"o":[[-45.684,11.098],[0,0],[19.26,-18.268]],"v":[[-75.746,139.844],[-128.303,179.249],[-128.423,159.477]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-2.434,-9.459],[0,0],[-5.877,9.173]],"o":[[-48.779,11.971],[0,0],[20.856,-20.803]],"v":[[-76,138.553],[-133.759,181.398],[-133.87,154.374]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-2.454,-9.412],[0,0],[-5.37,9.28]],"o":[[-45.684,12.87],[0,0],[19.26,-21.185]],"v":[[-75.746,137.486],[-130.053,181.154],[-128.423,159.094]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-1.511,-10.323],[0,0],[-6.266,9.449]],"o":[[-46.76,9.525],[0,0],[21.275,-20.915]],"v":[[-74.174,136.912],[-132.57,178.656],[-129.163,154.065]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[-2.454,-9.003],[0,0],[-5.37,8.876]],"o":[[-45.684,12.31],[0,0],[19.26,-20.263]],"v":[[-75.746,138.231],[-130.053,179.999],[-128.423,158.899]],"c":true}]},{"t":179,"s":[{"i":[[-2.454,-9.412],[0,0],[-5.37,9.28]],"o":[[-45.684,12.87],[0,0],[19.26,-21.185]],"v":[[-75.746,137.486],[-130.053,181.154],[-128.423,159.094]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":40},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[3.259,-1.955],[21.722,-17.831],[-5.372,9.277],[-19.646,6.944]],"o":[[0,0],[-3.259,1.955],[0,0],[0,0],[7.76,-2.743]],"v":[[-74.708,134.108],[-83.086,153.709],[-130.049,181.155],[-128.423,159.094],[-94.273,136.296]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[3.259,-1.686],[21.549,-18],[-5.372,8],[-19.646,5.988]],"o":[[0,0],[-3.259,1.686],[0,0],[0,0],[7.76,-2.365]],"v":[[-74.708,136.932],[-83.086,153.834],[-128.299,179.25],[-128.423,159.477],[-94.273,138.819]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[3.499,-1.891],[23.409,-17.402],[-5.879,9.17],[-21.003,6.557]],"o":[[0,0],[-3.499,1.891],[0,0],[0,0],[8.296,-2.59]],"v":[[-74.835,135.197],[-84.099,154.38],[-133.755,181.399],[-133.87,154.374],[-96.788,134.251]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[3.259,-1.955],[21.722,-17.831],[-5.372,9.277],[-19.646,6.944]],"o":[[0,0],[-3.259,1.955],[0,0],[0,0],[7.76,-2.743]],"v":[[-74.708,134.108],[-83.086,153.709],[-130.049,181.155],[-128.423,159.094],[-94.273,136.296]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[3.438,-1.792],[23.393,-17.088],[-6.268,9.446],[-20.248,5.608]],"o":[[0,0],[-3.438,1.792],[0,0],[0,0],[7.998,-2.215]],"v":[[-72.806,133.388],[-83.089,153.622],[-132.566,178.658],[-129.163,154.065],[-92.502,133.903]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[3.259,-1.87],[21.722,-17.055],[-5.372,8.874],[-19.646,6.642]],"o":[[0,0],[-3.259,1.87],[0,0],[0,0],[7.76,-2.623]],"v":[[-74.708,135],[-83.086,153.749],[-130.049,180],[-128.423,158.899],[-94.273,137.093]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[3.259,-1.955],[21.722,-17.831],[-5.372,9.277],[-19.646,6.944]],"o":[[0,0],[-3.259,1.955],[0,0],[0,0],[7.76,-2.743]],"v":[[-74.708,134.108],[-83.086,153.709],[-130.049,181.155],[-128.423,159.094],[-94.273,136.296]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.411764711142,0.800000011921,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 10","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"Body Staff","parent":21,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.3],"y":[0.84]},"o":{"x":[0.3],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.2],"y":[0]},"t":14,"s":[-0.5]},{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":105,"s":[2]},{"t":122,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.3,"y":0.84},"o":{"x":0.3,"y":0},"t":0,"s":[3.284,231.263,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[3.284,229.263,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[7.284,236.263,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[3.284,229.263,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[3.284,233.263,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[3.284,230.263,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[3.284,231.263,0]}]},"a":{"a":0,"k":[3.284,231.263,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[-7.648,-2.096],[3.217,-24.597]],"o":[[0,0],[0,0],[0,0]],"v":[[-149.463,184.098],[-139.75,189.329],[-148.023,224.556]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[-8.516,-2.022],[3.583,-23.727]],"o":[[0,0],[0,0],[0,0]],"v":[[-151.449,185.31],[-139.75,190.575],[-148.962,224.556]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[-7.648,-2.096],[3.217,-24.597]],"o":[[0,0],[0,0],[0,0]],"v":[[-149.463,184.098],[-139.75,189.329],[-148.023,224.556]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[-7.648,-1.98],[3.217,-23.237]],"o":[[0,0],[0,0],[0,0]],"v":[[-149.463,184.029],[-139.75,188.971],[-148.023,222.25]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[-7.648,-2.156],[3.217,-25.301]],"o":[[0,0],[0,0],[0,0]],"v":[[-149.463,184.134],[-139.75,189.515],[-148.023,225.75]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[-7.648,-2.096],[3.217,-24.597]],"o":[[0,0],[0,0],[0,0]],"v":[[-149.463,184.098],[-139.75,189.329],[-148.023,224.556]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.72549021244,0.823529422283,0.243137255311,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[-7.648,-2.096],[3.217,-24.597],[2.217,4.078],[-8.985,21.205]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-139.75,189.329],[-148.023,224.556],[-157.894,217.417],[-149.463,184.098]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-8.516,-2.022],[3.583,-23.727],[2.469,3.933],[-10.005,20.455]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-139.75,190.575],[-148.962,224.556],[-159.954,217.67],[-151.449,185.31]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-7.648,-2.096],[3.217,-24.597],[2.217,4.078],[-8.985,21.205]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-139.75,189.329],[-148.023,224.556],[-157.894,217.417],[-149.463,184.098]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-7.648,-1.98],[3.217,-23.237],[2.217,3.852],[-8.985,20.033]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-139.75,188.971],[-148.023,222.25],[-157.894,215.506],[-149.463,184.029]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[-7.648,-2.156],[3.217,-25.301],[2.217,4.194],[-8.985,21.812]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-139.75,189.515],[-148.023,225.75],[-157.894,218.407],[-149.463,184.134]],"c":true}]},{"t":179,"s":[{"i":[[-7.648,-2.096],[3.217,-24.597],[2.217,4.078],[-8.985,21.205]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-139.75,189.329],[-148.023,224.556],[-157.894,217.417],[-149.463,184.098]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.309803932905,0.403921574354,0.270588248968,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[-5.75,-2.1],[2.46,-10.59],[0,0],[-2.84,6.7]],"o":[[0,0],[-6.512,-1.088],[1.32,-4.96],[0,0]],"v":[[-139.753,189.334],[-144.647,206.101],[-154.546,199.678],[-149.463,184.098]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-6.403,-2.026],[2.74,-10.216],[0,0],[-3.162,6.463]],"o":[[0,0],[-7.251,-1.05],[1.47,-4.784],[0,0]],"v":[[-139.753,190.579],[-145.203,206.754],[-156.226,200.558],[-151.449,185.31]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-5.75,-2.1],[2.46,-10.59],[0,0],[-2.84,6.7]],"o":[[0,0],[-6.512,-1.088],[1.32,-4.96],[0,0]],"v":[[-139.753,189.334],[-144.647,206.101],[-154.546,199.678],[-149.463,184.098]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-5.75,-1.984],[2.46,-10.005],[0,0],[-2.84,6.33]],"o":[[0,0],[-6.512,-1.028],[1.32,-4.686],[0,0]],"v":[[-139.753,188.975],[-144.647,204.816],[-154.546,198.747],[-149.463,184.029]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[-5.75,-2.16],[2.46,-10.893],[0,0],[-2.84,6.892]],"o":[[0,0],[-6.512,-1.119],[1.32,-5.102],[0,0]],"v":[[-139.753,189.519],[-144.647,206.767],[-154.546,200.16],[-149.463,184.134]],"c":true}]},{"t":179,"s":[{"i":[[-5.75,-2.1],[2.46,-10.59],[0,0],[-2.84,6.7]],"o":[[0,0],[-6.512,-1.088],[1.32,-4.96],[0,0]],"v":[[-139.753,189.334],[-144.647,206.101],[-154.546,199.678],[-149.463,184.098]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.176470592618,0.450980395079,0.713725507259,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[-7.148,-1.779]],"o":[[0,0],[0,0]],"v":[[-157.607,214.22],[-147.398,220.093]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[-7.96,-1.717]],"o":[[0,0],[0,0]],"v":[[-159.634,214.585],[-148.266,220.251]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[-7.148,-1.779]],"o":[[0,0],[0,0]],"v":[[-157.607,214.22],[-147.398,220.093]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[-7.148,-1.681]],"o":[[0,0],[0,0]],"v":[[-157.607,212.486],[-147.398,218.034]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[-7.148,-1.83]],"o":[[0,0],[0,0]],"v":[[-157.607,215.118],[-147.398,221.159]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[-7.148,-1.779]],"o":[[0,0],[0,0]],"v":[[-157.607,214.22],[-147.398,220.093]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.72549021244,0.40000000596,0.501960813999,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[-6.856,-1.514]],"o":[[0,0],[0,0]],"v":[[-156.248,205.415],[-146.068,212.19]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[-7.635,-1.46]],"o":[[0,0],[0,0]],"v":[[-158.122,206.092],[-146.786,212.627]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[-6.856,-1.514]],"o":[[0,0],[0,0]],"v":[[-156.248,205.415],[-146.068,212.19]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[-6.856,-1.43]],"o":[[0,0],[0,0]],"v":[[-156.248,204.167],[-146.068,210.568]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[-6.856,-1.557]],"o":[[0,0],[0,0]],"v":[[-156.248,206.061],[-146.068,213.03]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[-6.856,-1.514]],"o":[[0,0],[0,0]],"v":[[-156.248,205.415],[-146.068,212.19]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.72549021244,0.40000000596,0.501960813999,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[-5.755,-2.096],[3.217,-24.597],[2.217,4.078],[-8.985,21.205]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-139.75,189.329],[-148.023,224.556],[-157.894,217.417],[-148.939,182.845]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-6.408,-2.022],[3.583,-23.727],[2.469,3.933],[-10.005,20.455]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-139.75,190.575],[-148.962,224.556],[-159.954,217.67],[-150.866,184.101]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[-5.755,-2.096],[3.217,-24.597],[2.217,4.078],[-8.985,21.205]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-139.75,189.329],[-148.023,224.556],[-157.894,217.417],[-148.939,182.845]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[-5.755,-1.98],[3.217,-23.237],[2.217,3.852],[-8.985,20.033]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-139.75,188.971],[-148.023,222.25],[-157.894,215.506],[-148.939,182.845]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[-5.755,-2.156],[3.217,-25.301],[2.217,4.194],[-8.985,21.812]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-139.75,189.515],[-148.023,225.75],[-157.894,218.407],[-148.939,182.845]],"c":true}]},{"t":179,"s":[{"i":[[-5.755,-2.096],[3.217,-24.597],[2.217,4.078],[-8.985,21.205]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-139.75,189.329],[-148.023,224.556],[-157.894,217.417],[-148.939,182.845]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.874509811401,0.89411765337,0.917647063732,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 6","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[0,-4.809]],"o":[[0,0],[0,0]],"v":[[86.919,176.71],[82.763,182.298]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[0.211,-4.448]],"o":[[0,0],[0,0]],"v":[[87.969,176.52],[83.573,181.487]],"c":false}]},{"t":122,"s":[{"i":[[0,0],[0,-4.809]],"o":[[0,0],[0,0]],"v":[[86.919,176.71],[82.763,182.298]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.96862745285,0.494117647409,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":23},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[3.951,4.604],[-1.758,2.729],[4.065,-1.596],[4.53,1.625],[-3.116,-4.817],[1.917,-3.054],[-6.68,-8.416],[-3.928,-1.555],[-1.89,0],[-3.194,1.316],[-2.9,3.654]],"o":[[-2.951,-3.438],[4.509,-7],[-4.48,1.758],[-4.978,-1.786],[2.643,4.086],[-3.226,5.139],[3.015,3.799],[3.009,1.192],[1.907,0],[3.82,-1.574],[6.68,-8.416]],"v":[[117.379,193.761],[116.416,184.905],[110.425,177.384],[89.505,177.297],[83.879,184.321],[81.884,193.761],[80.71,214.804],[91.924,221.734],[99.632,225.535],[107.722,221.551],[118.553,214.804]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[3.744,4.449],[-1.876,2.438],[4.32,-0.188],[6.224,0.517],[-2.9,-4.606],[2.049,-2.731],[-6.303,-8.106],[-3.855,-1.629],[-1.888,-0.091],[-3.009,0.302],[-3.057,3.239]],"o":[[-2.796,-3.323],[4.811,-6.255],[-4.385,0.191],[-5.229,-0.434],[2.46,3.907],[-3.448,4.596],[2.845,3.659],[3.452,0.66],[1.905,0.092],[3.885,-1.271],[7.042,-7.46]],"v":[[117.645,193.763],[117.072,185.527],[111.418,178.281],[90.526,177.189],[84.599,183.412],[82.191,192.046],[80.094,211.449],[90.92,219.967],[98.465,220.653],[106.755,220.123],[117.894,213.28]],"c":true}]},{"t":122,"s":[{"i":[[3.951,4.604],[-1.758,2.729],[4.065,-1.596],[4.53,1.625],[-3.116,-4.817],[1.917,-3.054],[-6.68,-8.416],[-3.928,-1.555],[-1.89,0],[-3.194,1.316],[-2.9,3.654]],"o":[[-2.951,-3.438],[4.509,-7],[-4.48,1.758],[-4.978,-1.786],[2.643,4.086],[-3.226,5.139],[3.015,3.799],[3.009,1.192],[1.907,0],[3.82,-1.574],[6.68,-8.416]],"v":[[117.379,193.761],[116.416,184.905],[110.425,177.384],[89.505,177.297],[83.879,184.321],[81.884,193.761],[80.71,214.804],[91.924,221.734],[99.632,225.535],[107.722,221.551],[118.553,214.804]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.764705896378,0.635294139385,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[114.429,180.145],[91.585,219.914],[94.199,222.314],[113.678,189.419]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[117.038,181.917],[94.195,221.687],[96.809,224.087],[116.288,191.192]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[101.592,178.977],[80.351,209.468],[82.857,211.815],[103.759,182.335]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[116.179,181.645],[93.335,221.414],[95.949,223.814],[115.428,190.919]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[112.429,179.395],[89.585,219.164],[92.199,221.564],[111.678,188.669]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[115.554,181.145],[92.71,220.914],[95.324,223.314],[114.803,190.419]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[114.429,180.145],[91.585,219.914],[94.199,222.314],[113.678,189.419]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":50},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[102.204,177.384],[80.71,214.804],[86.823,219.207],[111.588,177.384]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[104.813,179.157],[83.319,216.576],[89.432,220.98],[114.198,179.157]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[89.318,177.741],[76.418,199.165],[77.58,207.248],[96.939,178.131]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[103.954,178.884],[82.46,216.304],[88.573,220.707],[113.338,178.884]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[100.204,176.634],[78.71,214.054],[84.823,218.457],[109.588,176.634]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[103.329,178.384],[81.835,215.804],[87.948,220.207],[112.713,178.384]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[102.204,177.384],[80.71,214.804],[86.823,219.207],[111.588,177.384]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":50},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[-0.362,-0.733],[0,0],[-0.321,-0.047],[0,0],[0.585,-0.571],[0,0],[-0.055,-0.32],[0,0],[0.724,0.38],[0,0],[0.287,-0.151],[0,0],[-0.138,0.806],[0,0],[0.232,0.227],[0,0],[-0.809,0.118],[0,0],[-0.144,0.291],[0,0]],"o":[[0,0],[0.144,0.291],[0,0],[0.809,0.118],[0,0],[-0.232,0.227],[0,0],[0.138,0.806],[0,0],[-0.287,-0.151],[0,0],[-0.724,0.38],[0,0],[0.055,-0.32],[0,0],[-0.585,-0.571],[0,0],[0.321,-0.047],[0,0],[0.362,-0.733]],"v":[[100.516,193.532],[102.002,196.543],[102.745,197.083],[106.068,197.566],[106.615,199.248],[104.21,201.592],[103.926,202.465],[104.494,205.774],[103.063,206.814],[100.091,205.252],[99.173,205.252],[96.201,206.814],[94.769,205.774],[95.337,202.465],[95.053,201.592],[92.649,199.248],[93.196,197.566],[96.518,197.083],[97.261,196.543],[98.747,193.532]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[-0.329,-0.696],[0,0],[-0.319,-0.059],[0,0],[0.61,-0.499],[0,0],[-0.041,-0.299],[0,0],[0.706,0.387],[0,0],[0.294,-0.126],[0,0],[-0.173,0.739],[0,0],[0.222,0.221],[0,0],[-0.813,0.07],[0,0],[-0.156,0.262],[0,0]],"o":[[0,0],[0.131,0.276],[0,0],[0.803,0.148],[0,0],[-0.242,0.198],[0,0],[0.103,0.752],[0,0],[-0.28,-0.154],[0,0],[-0.74,0.317],[0,0],[0.069,-0.293],[0,0],[-0.56,-0.556],[0,0],[0.323,-0.028],[0,0],[0.394,-0.661]],"v":[[100.812,192.736],[102.164,195.592],[102.882,196.127],[106.18,196.734],[106.652,198.317],[104.147,200.368],[103.826,201.162],[104.247,204.25],[102.772,205.142],[99.872,203.554],[98.955,203.509],[95.918,204.81],[94.534,203.779],[95.246,200.746],[95.001,199.925],[92.702,197.641],[93.322,196.112],[96.663,195.826],[97.428,195.363],[99.045,192.65]],"c":true}]},{"t":122,"s":[{"i":[[-0.362,-0.733],[0,0],[-0.321,-0.047],[0,0],[0.585,-0.571],[0,0],[-0.055,-0.32],[0,0],[0.724,0.38],[0,0],[0.287,-0.151],[0,0],[-0.138,0.806],[0,0],[0.232,0.227],[0,0],[-0.809,0.118],[0,0],[-0.144,0.291],[0,0]],"o":[[0,0],[0.144,0.291],[0,0],[0.809,0.118],[0,0],[-0.232,0.227],[0,0],[0.138,0.806],[0,0],[-0.287,-0.151],[0,0],[-0.724,0.38],[0,0],[0.055,-0.32],[0,0],[-0.585,-0.571],[0,0],[0.321,-0.047],[0,0],[0.362,-0.733]],"v":[[100.516,193.532],[102.002,196.543],[102.745,197.083],[106.068,197.566],[106.615,199.248],[104.21,201.592],[103.926,202.465],[104.494,205.774],[103.063,206.814],[100.091,205.252],[99.173,205.252],[96.201,206.814],[94.769,205.774],[95.337,202.465],[95.053,201.592],[92.649,199.248],[93.196,197.566],[96.518,197.083],[97.261,196.543],[98.747,193.532]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.870588243008,0.749019622803,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[1.913,3.063],[-1.547,3.279],[3.068,-0.706],[2.377,0.483],[-1.55,-3.29],[1.285,-1.976],[-3.976,-5.009],[-1.125,0],[-1.726,2.175]],"o":[[-1.423,-2.28],[1.551,-3.289],[-2.753,0.633],[-3.085,-0.626],[1.739,3.69],[-1.969,3.027],[1.795,2.261],[1.135,0],[3.976,-5.009]],"v":[[109.213,194.051],[106.595,185.574],[105.019,183.32],[93.627,183.317],[92.062,185.574],[89.734,193.708],[87.157,208.125],[99.412,214.602],[112.191,208.125]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[1.776,2.925],[-1.689,2.958],[3.095,-0.504],[2.353,0.561],[-1.404,-3.118],[1.371,-1.765],[-3.751,-4.825],[-1.124,-0.054],[-1.82,1.928]],"o":[[-1.322,-2.177],[1.694,-2.967],[-2.777,0.453],[-3.054,-0.728],[1.575,3.496],[-2.1,2.704],[1.693,2.178],[1.134,0.055],[4.191,-4.44]],"v":[[109.476,193.636],[107.234,185.67],[105.758,183.509],[94.379,182.955],[92.717,184.967],[90.034,192.377],[86.827,205.585],[98.783,212.168],[111.832,206.796]],"c":true}]},{"t":122,"s":[{"i":[[1.913,3.063],[-1.547,3.279],[3.068,-0.706],[2.377,0.483],[-1.55,-3.29],[1.285,-1.976],[-3.976,-5.009],[-1.125,0],[-1.726,2.175]],"o":[[-1.423,-2.28],[1.551,-3.289],[-2.753,0.633],[-3.085,-0.626],[1.739,3.69],[-1.969,3.027],[1.795,2.261],[1.135,0],[3.976,-5.009]],"v":[[109.213,194.051],[106.595,185.574],[105.019,183.32],[93.627,183.317],[92.062,185.574],[89.734,193.708],[87.157,208.125],[99.412,214.602],[112.191,208.125]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.96862745285,0.494117647409,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 6","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[4.243,4.337],[15.462,-2.354],[4.75,0.775],[5.035,-6.23],[-6.68,-8.416],[-1.89,0],[-2.9,3.654]],"o":[[-4.243,-4.337],[-4.758,0.724],[-12.368,-2.017],[-3.813,4.719],[3.015,3.799],[1.907,0],[6.68,-8.416]],"v":[[117.379,193.761],[109.588,177.384],[89.505,177.297],[81.884,193.761],[80.71,214.804],[99.632,225.535],[118.553,214.804]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[4.047,4.216],[15.547,-1.428],[4.71,0.946],[5.303,-5.518],[-6.303,-8.106],[-1.888,-0.091],[-3.057,3.239]],"o":[[-4.047,-4.216],[-4.784,0.44],[-12.265,-2.463],[-4.016,4.18],[2.845,3.659],[1.905,0.092],[7.042,-7.46]],"v":[[117.645,193.763],[110.583,178.241],[90.526,177.189],[82.191,192.046],[80.094,211.449],[98.478,221.028],[117.894,213.28]],"c":true}]},{"t":122,"s":[{"i":[[4.243,4.337],[15.462,-2.354],[4.75,0.775],[5.035,-6.23],[-6.68,-8.416],[-1.89,0],[-2.9,3.654]],"o":[[-4.243,-4.337],[-4.758,0.724],[-12.368,-2.017],[-3.813,4.719],[3.015,3.799],[1.907,0],[6.68,-8.416]],"v":[[117.379,193.761],[109.588,177.384],[89.505,177.297],[81.884,193.761],[80.71,214.804],[99.632,225.535],[118.553,214.804]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.945098042488,0.86274510622,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 7","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-102.446,187.233],[-68.187,187.233]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.811764717102,0.058823529631,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-102.446,189.329],[-68.187,189.329]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.878431379795,0.639215707779,0.203921571374,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[-85.317,188.281],"to":[0,0],"ti":[0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[-81.356,191.087],"to":[0,0],"ti":[0,0]},{"t":122,"s":[-85.317,188.281]}]},"a":{"a":0,"k":[-85.317,188.281]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 9","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[0,0],[0,-0.711],[0,0],[-0.782,0.12],[-7.797,-4.771],[-1.328,-0.915],[-2.423,1.685],[-1.511,1.052],[-3.986,-0.613],[0,0.791],[0,0],[0.711,0]],"o":[[0,0],[-0.711,0],[0,0],[0,0.791],[3.986,-0.613],[1.546,0.946],[2.43,1.674],[1.295,-0.9],[6.855,-4.771],[0.782,0.12],[0,0],[0,-0.711],[0,0]],"v":[[-70.702,202.52],[-101.158,202.52],[-102.446,203.808],[-102.446,216.921],[-100.962,218.194],[-78.828,220.663],[-74.714,223.832],[-66.656,223.833],[-62.575,220.663],[-40.441,218.194],[-38.958,216.921],[-38.958,203.808],[-40.246,202.52]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[0,0],[0,-0.586],[0,0],[-0.782,0.099],[-7.797,-3.931],[-1.328,-0.753],[-2.423,1.388],[-1.511,0.866],[-3.986,-0.505],[0,0.651],[0,0],[0.711,0]],"o":[[0,0],[-0.711,0],[0,0],[0,0.651],[3.986,-0.505],[1.546,0.779],[2.43,1.379],[1.295,-0.742],[6.855,-3.931],[0.782,0.099],[0,0],[0,-0.586],[0,0]],"v":[[-68.242,206.424],[-98.698,206.424],[-99.986,207.485],[-99.946,219.436],[-98.462,220.484],[-74.968,222.471],[-70.853,225.081],[-62.795,225.082],[-57.959,222.827],[-37.941,220.484],[-36.458,219.436],[-36.498,207.485],[-37.786,206.424]],"c":true}]},{"t":122,"s":[{"i":[[0,0],[0,0],[0,-0.711],[0,0],[-0.782,0.12],[-7.797,-4.771],[-1.328,-0.915],[-2.423,1.685],[-1.511,1.052],[-3.986,-0.613],[0,0.791],[0,0],[0.711,0]],"o":[[0,0],[-0.711,0],[0,0],[0,0.791],[3.986,-0.613],[1.546,0.946],[2.43,1.674],[1.295,-0.9],[6.855,-4.771],[0.782,0.12],[0,0],[0,-0.711],[0,0]],"v":[[-70.702,202.52],[-101.158,202.52],[-102.446,203.808],[-102.446,216.921],[-100.962,218.194],[-78.828,220.663],[-74.714,223.832],[-66.656,223.833],[-62.575,220.663],[-40.441,218.194],[-38.958,216.921],[-38.958,203.808],[-40.246,202.52]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.278431385756,0.603921592236,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.56862745098,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-98.879,228.74],[-98.879,212.153],[-42.524,212.153],[-42.524,228.74]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-99.004,229.47],[-99.004,212.152],[-42.649,212.152],[-42.653,229.908]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-96.379,227.064],[-96.379,212.153],[-40.024,212.153],[-40.077,225.565]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-98.879,230.03],[-98.879,212.153],[-42.524,212.153],[-42.524,230.03]],"c":false}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-98.879,226.45],[-98.879,212.153],[-42.524,212.153],[-42.524,226.45]],"c":false}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-98.879,229.271],[-98.879,212.153],[-42.524,212.153],[-42.524,229.271]],"c":false}]},{"t":179,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-98.879,228.74],[-98.879,212.153],[-42.524,212.153],[-42.524,228.74]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.278431385756,0.603921592236,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 7","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-98.879,231.263],[-98.879,212.153],[-42.524,212.153],[-42.524,231.263]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-99.004,232.105],[-99.004,212.152],[-42.649,212.152],[-42.649,232.105]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-98.879,229.332],[-98.879,212.153],[-42.524,212.153],[-42.577,227.833]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-98.879,232.75],[-98.879,212.153],[-42.524,212.153],[-42.524,232.75]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-98.879,228.625],[-98.879,212.153],[-42.524,212.153],[-42.524,228.625]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-98.879,231.875],[-98.879,212.153],[-42.524,212.153],[-42.524,231.875]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-98.879,231.263],[-98.879,212.153],[-42.524,212.153],[-42.524,231.263]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.466666668653,0.86274510622,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 8","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"BODY","sr":1,"ks":{"p":{"a":0,"k":[259.284,512.013,0]},"a":{"a":0,"k":[3.284,231.263,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4,0.4],"y":[1,1,1]},"o":{"x":[0.3,0.3,0.3],"y":[0,0,0]},"t":0,"s":[100,100,100]},{"i":{"x":[0.208,0.208,0.208],"y":[0.708,0.635,1]},"o":{"x":[0.36,0.36,0.36],"y":[0,0,0]},"t":14,"s":[98,103,100]},{"i":{"x":[0.63,0.63,0.63],"y":[1.01,1.057,1]},"o":{"x":[0.298,0.298,0.298],"y":[-0.041,-0.069,0]},"t":50,"s":[101,99,100]},{"i":{"x":[0.633,0.633,0.633],"y":[0.873,0.807,1]},"o":{"x":[0.301,0.301,0.301],"y":[0.01,0.057,0]},"t":59,"s":[99,101,100]},{"i":{"x":[0.645,0.645,0.645],"y":[1.006,1.145,1]},"o":{"x":[0.312,0.312,0.312],"y":[-0.088,-0.269,0]},"t":70,"s":[101,99,100]},{"i":{"x":[0.619,0.619,0.619],"y":[1,1,1]},"o":{"x":[0.288,0.288,0.288],"y":[0.03,0.34,0]},"t":79,"s":[99,100,100]},{"i":{"x":[0.3,0.3,0.3],"y":[1,1,1]},"o":{"x":[0.5,0.5,0.5],"y":[0,0,0]},"t":105,"s":[100,99,100]},{"i":{"x":[0.3,0.3,0.3],"y":[1,1,1]},"o":{"x":[0.5,0.5,0.5],"y":[0,0,0]},"t":122,"s":[99,102,100]},{"i":{"x":[0.5,0.5,0.5],"y":[1,1,1]},"o":{"x":[0.5,0.5,0.5],"y":[0,0,0]},"t":140,"s":[101,98,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,1]},"o":{"x":[0.3,0.3,0.3],"y":[0,0,0]},"t":157,"s":[99,102,100]},{"t":179,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[0,0.915],[0,0],[0,0],[-0.357,-2.623]],"o":[[0.31,-2.374],[0,0],[0,0],[0,0],[0,0]],"v":[[47.561,133.089],[41.996,92.066],[39.996,92.066],[-35.332,91.066],[-40.723,132.37]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[0,0.915],[0,0],[0,0],[-0.357,-2.623]],"o":[[0.31,-2.374],[0,0],[0,0],[0,0],[0,0]],"v":[[47.561,133.089],[41.996,92.066],[39.996,92.066],[-35.332,91.066],[-40.723,132.37]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[-0.139,0.904],[0,0],[0,0],[-0.357,-2.623]],"o":[[0.31,-2.374],[0,0],[0,0],[0,0],[0,0]],"v":[[47.561,133.089],[52.155,101.953],[50.179,101.649],[-35.371,84.457],[-40.723,132.37]],"c":false}]},{"i":{"x":0.7,"y":1},"o":{"x":0.167,"y":0},"t":122,"s":[{"i":[[0,0],[0,0.915],[0,0],[0,0],[-0.357,-2.623]],"o":[[0.31,-2.374],[0,0],[0,0],[0,0],[0,0]],"v":[[47.561,133.089],[39.996,87.566],[37.996,87.566],[-37.332,86.566],[-40.723,132.37]],"c":false}]},{"t":140,"s":[{"i":[[0,0],[0,0.915],[0,0],[0,0],[-0.357,-2.623]],"o":[[0.31,-2.374],[0,0],[0,0],[0,0],[0,0]],"v":[[47.561,133.089],[41.996,92.066],[39.996,92.066],[-35.332,91.066],[-40.723,132.37]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.792156875134,0.482352942228,0.333333343267,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[2.293,-3.25],[12.614,13.813],[0,0],[0,0]],"o":[[-14.002,15.33],[-2.167,-3.135],[0,0],[0,0]],"v":[[43.627,131.076],[-36.939,131.139],[-34.95,94.656],[41.644,93.216]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[2.293,-3.25],[13.063,11.361],[0,0],[0,0]],"o":[[-12.503,10.924],[-2.167,-3.135],[0,0],[0,0]],"v":[[43.753,125.076],[-36.813,125.139],[-34.824,88.656],[41.771,87.216]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[36.623,-33.576],[4.939,25.611],[0,0],[0,0]],"o":[[-19.127,23.674],[-2.167,-3.135],[0,0],[0,0]],"v":[[25.127,189.076],[-38.689,136.639],[-35.54,88.063],[51.633,103.036]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[2.181,-3.327],[13.327,10.49],[0,0],[0,0]],"o":[[-12.69,12.807],[-2.273,-3.059],[0,0],[0,0]],"v":[[42.565,119.693],[-37.952,122.51],[-39.363,81.551],[37.137,77.494]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[2.293,-3.25],[15.188,15.986],[0,0],[0,0]],"o":[[-22.628,22.299],[-2.167,-3.135],[0,0],[0,0]],"v":[[44.753,137.326],[-37.063,137.389],[-35.074,100.906],[41.521,99.466]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[2.293,-3.25],[12.614,13.813],[0,0],[0,0]],"o":[[-14.002,15.33],[-2.167,-3.135],[0,0],[0,0]],"v":[[43.503,124.951],[-37.063,125.014],[-35.074,88.531],[41.521,87.091]],"c":true}]},{"t":179,"s":[{"i":[[2.293,-3.25],[12.614,13.813],[0,0],[0,0]],"o":[[-14.002,15.33],[-2.167,-3.135],[0,0],[0,0]],"v":[[43.627,131.076],[-36.939,131.139],[-34.95,94.656],[41.644,93.216]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.792156875134,0.482352942228,0.333333343267,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":30},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[-1.833,-3.747],[-9.504,0],[-8.077,15.692],[0,0]],"o":[[0,0],[7.813,15.978],[9.13,0],[1.837,-3.568],[0,0]],"v":[[-35.332,91.066],[-43.799,145.673],[9.739,202.07],[50.24,145.673],[41.079,90.906]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[-1.833,-3.747],[-9.504,0],[-8.077,15.692],[0,0]],"o":[[0,0],[7.813,15.978],[9.13,0],[1.837,-3.568],[0,0]],"v":[[-35.332,91.066],[-43.799,145.673],[9.739,202.07],[50.24,145.673],[41.079,90.906]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[-1.833,-3.747],[-9.504,0],[-8.077,15.692],[0,0]],"o":[[0,0],[7.813,15.978],[9.13,0],[1.837,-3.568],[0,0]],"v":[[-35.371,84.457],[-43.799,145.673],[9.739,202.07],[50.24,145.673],[51.425,100.667]],"c":true}]},{"i":{"x":0.7,"y":1},"o":{"x":0.167,"y":0},"t":122,"s":[{"i":[[0,0],[-1.833,-3.747],[-9.504,0],[-8.077,15.692],[0,0]],"o":[[0,0],[7.813,15.978],[9.13,0],[1.837,-3.568],[0,0]],"v":[[-37.332,86.566],[-43.799,145.673],[9.739,202.07],[50.24,145.673],[39.079,86.406]],"c":true}]},{"t":140,"s":[{"i":[[0,0],[-1.833,-3.747],[-9.504,0],[-8.077,15.692],[0,0]],"o":[[0,0],[7.813,15.978],[9.13,0],[1.837,-3.568],[0,0]],"v":[[-35.332,91.066],[-43.799,145.673],[9.739,202.07],[50.24,145.673],[41.079,90.906]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.952941179276,0.666666686535,0.509803950787,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[3.21,145.238]},"a":{"a":0,"k":[3.21,145.238]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 10","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[12.171,-35.933]],"o":[[0,0],[0,0]],"v":[[138.375,164.436],[124.29,228.265]],"c":false}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[15.21,-22.265]],"o":[[0,0],[0,0]],"v":[[138.875,165.436],[127.29,229.015]],"c":false}]},{"t":122,"s":[{"i":[[0,0],[12.171,-35.933]],"o":[[0,0],[0,0]],"v":[[138.375,164.436],[124.29,228.265]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":60},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[14.46,18.081],[46.78,8]],"o":[[-0.79,-6.706],[-13,-16.24],[0,0]],"v":[[160.481,216.825],[141.779,168.243],[50.239,128.073]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.456,-3.5],[0.557,4.543]],"o":[[0,0],[0,0],[0,0]],"v":[[156.388,216.26],[157.57,224.672],[164.462,216.46]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.3,"y":0.314},"o":{"x":0.3,"y":0},"t":0,"s":[{"i":[[0,0],[-13,-16.24],[-1.67,-13.02],[0,0],[9.86,-2.45],[8.65,10.74],[0,0],[0,0],[22.91,-28.46],[1.6,-12.36],[0,0],[-11.92,14.9],[-46.78,8]],"o":[[46.78,8],[12.24,15.31],[0,0],[0,0],[-1.62,-12.41],[-22.91,-28.46],[0,0],[0,0],[-8.68,10.78],[-10.3,-2.47],[1.8,-13.4],[13,-16.24],[0,0]],"v":[[50.24,128.073],[141.78,168.243],[159.831,222.943],[159.831,222.943],[146.911,228.843],[131.52,180.303],[50.24,145.673],[-42.325,145.656],[-125.08,180.303],[-140.489,228.983],[-153.96,222.943],[-135.339,168.243],[-43.799,128.073]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.2,"y":0},"t":14,"s":[{"i":[[0,0],[-13,-16.24],[-1.67,-13.02],[0,0],[9.86,-2.572],[8.647,11.278],[0,0],[0,0],[22.914,-29.876],[1.6,-12.976],[0,0],[-11.92,14.9],[-46.78,8]],"o":[[46.78,8],[12.24,15.31],[0,0],[0,0],[-1.62,-13.029],[-22.91,-29.879],[0,0],[0,0],[-8.68,11.318],[-10.3,-2.593],[1.8,-13.4],[13,-16.24],[0,0]],"v":[[50.24,128.073],[141.78,168.243],[159.831,222.943],[159.831,222.943],[146.911,228.836],[131.52,177.876],[50.24,141.519],[-42.325,141.5],[-125.08,177.876],[-140.489,228.983],[-153.96,222.943],[-135.339,168.243],[-43.799,128.073]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[{"i":[[0,0],[-13,-16.24],[-1.67,-13.02],[0,0],[9.995,-2.381],[8.766,10.44],[0,0],[0,0],[23.229,-27.657],[1.622,-12.012],[0,0],[-11.92,14.9],[-46.78,8]],"o":[[46.78,8],[12.24,15.31],[0,0],[0,0],[-1.642,-12.061],[-23.225,-27.659],[0,0],[0,0],[-8.8,10.477],[-13.402,-1.983],[1.8,-13.4],[13,-16.24],[0,0]],"v":[[50.24,128.073],[141.78,168.243],[159.831,222.943],[159.831,222.943],[151.005,227.222],[135.403,181.673],[53.005,148.017],[-40.834,148],[-122.976,182.173],[-137.473,229.233],[-153.96,222.943],[-135.339,168.243],[-43.799,128.073]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[{"i":[[0,0],[-12.99,-16.421],[-1.67,-13.158],[0,0],[9.86,-2.476],[8.647,10.856],[0,0],[0,0],[22.914,-28.76],[1.6,-12.491],[0,0],[-11.925,15.055],[-46.78,8.085]],"o":[[46.78,8.085],[12.24,15.473],[0,0],[0,0],[-1.62,-12.542],[-22.91,-28.763],[0,0],[0,0],[-8.68,10.895],[-10.3,-2.496],[1.8,-13.543],[13,-16.413],[0,0]],"v":[[50.24,127],[141.78,167.597],[159.831,222.879],[159.831,222.879],[146.911,228.842],[131.52,179.786],[50.24,144.787],[-42.325,144.769],[-125.08,179.786],[-140.489,228.983],[-153.96,222.879],[-135.339,167.597],[-43.799,127]],"c":true}]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[{"i":[[0,0],[-13,-16.24],[-1.67,-13.02],[0,0],[9.86,-2.381],[8.647,10.44],[0,0],[0,0],[22.914,-27.656],[1.6,-12.012],[0,0],[-11.92,14.9],[-46.78,8]],"o":[[46.78,8],[12.24,15.31],[0,0],[0,0],[-1.62,-12.061],[-22.91,-27.659],[0,0],[0,0],[-8.68,10.477],[-10.3,-2.401],[1.8,-13.4],[13,-16.24],[0,0]],"v":[[50.24,128.073],[141.78,168.243],[159.831,222.943],[159.831,222.943],[146.911,228.847],[131.52,181.673],[50.24,148.017],[-42.325,148],[-125.08,181.673],[-140.489,228.983],[-153.96,222.943],[-135.339,168.243],[-43.799,128.073]],"c":true}]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[{"i":[[0,0],[-12.99,-16.662],[-1.67,-13.352],[0,0],[9.86,-2.512],[8.647,11.016],[0,0],[0,0],[22.914,-29.183],[1.6,-12.675],[0,0],[-11.925,15.277],[-46.78,8.204]],"o":[[46.78,8.204],[12.24,15.7],[0,0],[0,0],[-1.62,-12.726],[-22.91,-29.186],[0,0],[0,0],[-8.68,11.055],[-10.3,-2.533],[1.8,-13.742],[13,-16.654],[0,0]],"v":[[50.24,125.5],[141.78,166.694],[159.831,222.789],[159.831,222.789],[146.911,228.84],[131.52,179.062],[50.24,143.549],[-42.325,143.531],[-125.08,179.062],[-140.489,228.983],[-153.96,222.789],[-135.339,166.694],[-43.799,125.5]],"c":true}]},{"t":179,"s":[{"i":[[0,0],[-13,-16.24],[-1.67,-13.02],[0,0],[9.86,-2.45],[8.65,10.74],[0,0],[0,0],[22.91,-28.46],[1.6,-12.36],[0,0],[-11.92,14.9],[-46.78,8]],"o":[[46.78,8],[12.24,15.31],[0,0],[0,0],[-1.62,-12.41],[-22.91,-28.46],[0,0],[0,0],[-8.68,10.78],[-10.3,-2.47],[1.8,-13.4],[13,-16.24],[0,0]],"v":[[50.24,128.073],[141.78,168.243],[159.831,222.943],[159.831,222.943],[146.911,228.843],[131.52,180.303],[50.24,145.673],[-42.325,145.656],[-125.08,180.303],[-140.489,228.983],[-153.96,222.943],[-135.339,168.243],[-43.799,128.073]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":40},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 6","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-12.171,-35.933]],"o":[[0,0],[0,0]],"v":[[-131.936,164.436],[-118.525,228.065]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":60},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 7","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-13.857,17.327],[-46.78,8]],"o":[[1.036,-8.138],[13,-16.24],[0,0]],"v":[[-153.96,216.889],[-135.339,168.243],[-43.799,128.073]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.456,-3.5],[-0.557,4.543]],"o":[[0,0],[0,0],[0,0]],"v":[[-149.864,216.26],[-151.037,225.065],[-157.894,216.46]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.168627455831,0.435294121504,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 8","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[51.768,2.904],[0,0],[12.462,-2.133],[0,0],[4.682,-70.293],[-28.289,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[-50.051,2.749],[0,0],[0,0],[25.399,0.033],[-3.443,-75.494]],"v":[[51.239,128.251],[51.239,128.073],[-43.8,128.072],[-43.8,128.073],[-154.546,223.448],[-117.779,231.263],[123.65,231.263],[159.831,223.317]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.380392163992,0.784313738346,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 9","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 11","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[8.011,1.022],[0,0],[0.613,-2.542],[-61,-0.25],[0,0]],"o":[[0,0],[-4.669,1.095],[-0.613,2.542],[51.255,0.21],[0,0]],"v":[[42.569,108.018],[-37.549,109.04],[-46.887,115.458],[7,151.75],[52.738,114.376]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.278431385756,0.603921592236,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.278431385756,0.603921592236,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 12","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"Hair Back","parent":15,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":4,"s":[0]},{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.365],"y":[0]},"t":18,"s":[-5]},{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":52,"s":[6]},{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.4],"y":[0]},"t":61,"s":[2]},{"i":{"x":[0.7],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":72,"s":[6]},{"i":{"x":[0.624],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":83,"s":[2]},{"i":{"x":[0.374],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":101,"s":[7]},{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":127,"s":[-6]},{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":145,"s":[8]},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.3],"y":[0]},"t":161,"s":[2]},{"t":179,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.3,"y":0},"t":0,"s":[2.149,79.56,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.36,"y":0},"t":14,"s":[1.325,95.538,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.3,"y":0},"t":50,"s":[-17.492,69.216,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.4,"y":0},"t":59,"s":[-17.702,76.718,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.7,"y":1},"o":{"x":0.5,"y":0},"t":70,"s":[-22.414,56.738,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.619,"y":1},"o":{"x":0.3,"y":0},"t":79,"s":[-20.838,66.637,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":105,"s":[-22.449,61.562,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.5,"y":0},"t":122,"s":[2.868,83.62,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.5,"y":1},"o":{"x":0.5,"y":0},"t":140,"s":[1.089,40.413,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.3,"y":0},"t":157,"s":[2.073,89.422,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[2.149,79.56,0]}]},"a":{"a":0,"k":[2.149,79.56,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-7.782,-34.44],[-11.109,45.489]],"o":[[0,0],[0,0],[11.891,52.627],[9.338,-38.237]],"v":[[44.928,64.679],[-39.551,62.209],[-67.363,147.237],[75.662,151.237]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.035294119269,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.235294118524,0.207843139768,0.207843139768,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0}]} \ No newline at end of file diff --git a/TMessagesProj/src/main/res/raw/sms_incoming_info.json b/TMessagesProj/src/main/res/raw/sms_incoming_info.json new file mode 100644 index 000000000..23b384df8 --- /dev/null +++ b/TMessagesProj/src/main/res/raw/sms_incoming_info.json @@ -0,0 +1,12453 @@ +{ + "v": "5.5.7", + "meta": { + "g": "LottieFiles AE 0.1.20", + "a": "", + "k": "", + "d": "", + "tc": "" + }, + "fr": 60, + "ip": 0, + "op": 90, + "w": 512, + "h": 512, + "nm": "Comp 1", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 3, + "nm": "NULL SHAKING", + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 0, + "ix": 11 + }, + "r": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 16, + "s": [ + 0 + ] + }, + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 21, + "s": [ + -4 + ] + }, + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 25, + "s": [ + 3.5 + ] + }, + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 28, + "s": [ + -3.5 + ] + }, + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 31.666, + "s": [ + 3.5 + ] + }, + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 35, + "s": [ + -3.5 + ] + }, + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 38.334, + "s": [ + 3.5 + ] + }, + { + "i": { + "x": [ + 0.833 + ], + "y": [ + 0.833 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 41.666, + "s": [ + -3.5 + ] + }, + { + "i": { + "x": [ + 0.466 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.167 + ], + "y": [ + 0.167 + ] + }, + "t": 45, + "s": [ + 4 + ] + }, + { + "i": { + "x": [ + 0.1 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.28 + ], + "y": [ + 0 + ] + }, + "t": 49, + "s": [ + -3 + ] + }, + { + "t": 62, + "s": [ + 0 + ] + } + ], + "ix": 10 + }, + "p": { + "a": 0, + "k": [ + 146, + 248, + 0 + ], + "ix": 2 + }, + "a": { + "a": 0, + "k": [ + 50, + 50, + 0 + ], + "ix": 1 + }, + "s": { + "a": 0, + "k": [ + 100, + 100, + 100 + ], + "ix": 6 + } + }, + "ao": 0, + "ip": 0, + "op": 180, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 2, + "ty": 3, + "nm": "Null 1", + "parent": 1, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 0, + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.28, + "y": 0 + }, + "t": 49, + "s": [ + 175.986, + 49.523, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.72, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 60, + "s": [ + 80, + 48.997, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "t": 68, + "s": [ + 86, + 49, + 0 + ] + } + ], + "ix": 2 + }, + "a": { + "a": 0, + "k": [ + 50, + 50, + 0 + ], + "ix": 1 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.7, + 0.7, + 0.7 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.3, + 0.3, + 0.3 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 63, + "s": [ + 93, + 93, + 100 + ] + }, + { + "i": { + "x": [ + 0.7, + 0.7, + 0.7 + ], + "y": [ + 1, + 1, + 1 + ] + }, + "o": { + "x": [ + 0.3, + 0.3, + 0.3 + ], + "y": [ + 0, + 0, + 0 + ] + }, + "t": 70, + "s": [ + 102, + 102, + 100 + ] + }, + { + "t": 76, + "s": [ + 100, + 100, + 100 + ] + } + ], + "ix": 6 + } + }, + "ao": 0, + "ip": 0, + "op": 180, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 3, + "ty": 4, + "nm": "Bubble", + "parent": 4, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.753 + ], + "y": [ + 1.054 + ] + }, + "o": { + "x": [ + 0.476 + ], + "y": [ + 0 + ] + }, + "t": 45, + "s": [ + -2 + ] + }, + { + "i": { + "x": [ + 0.211 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.128 + ], + "y": [ + 0.041 + ] + }, + "t": 50, + "s": [ + -11 + ] + }, + { + "i": { + "x": [ + 0.74 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.3 + ], + "y": [ + 0 + ] + }, + "t": 63, + "s": [ + 5 + ] + }, + { + "i": { + "x": [ + 0.7 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.26 + ], + "y": [ + 0 + ] + }, + "t": 72, + "s": [ + -5 + ] + }, + { + "i": { + "x": [ + 0.7 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.3 + ], + "y": [ + 0 + ] + }, + "t": 79, + "s": [ + 2 + ] + }, + { + "i": { + "x": [ + 0.7 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.3 + ], + "y": [ + 0 + ] + }, + "t": 84, + "s": [ + -1 + ] + }, + { + "t": 88, + "s": [ + 0 + ] + } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.28, + "y": 0 + }, + "t": 45, + "s": [ + -198.493, + 196.74, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "t": 60, + "s": [ + -138.58, + 154.514, + 0 + ] + } + ], + "ix": 2 + }, + "a": { + "a": 0, + "k": [ + -138.58, + 154.514, + 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.28, + "y": 0 + }, + "t": 45, + "s": [ + { + "i": [ + [ + 0, + -0.005 + ], + [ + 0, + 0 + ], + [ + 0, + -0.012 + ], + [ + 0, + 0 + ], + [ + 0, + -0.026 + ], + [ + 0, + 0 + ], + [ + 0, + 0.036 + ], + [ + 0, + 0 + ], + [ + 0, + -0.014 + ], + [ + 0, + 0 + ], + [ + 0, + 0.027 + ], + [ + 0, + 0 + ], + [ + 0, + 0.032 + ], + [ + 0, + 0 + ], + [ + 0, + 0.002 + ], + [ + 0, + 0 + ], + [ + 0, + 0.044 + ], + [ + 0, + 0 + ], + [ + 0, + -0.019 + ], + [ + 0, + 0 + ], + [ + 0, + 0.016 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.044 + ], + [ + 0, + 0 + ], + [ + 0, + 0.007 + ], + [ + 0, + 0 + ], + [ + 0, + -0.043 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0.002 + ], + [ + 0, + 0 + ], + [ + 0, + 0.032 + ], + [ + 0, + 0 + ], + [ + 0, + 0.025 + ], + [ + 0, + 0 + ], + [ + 0, + -0.013 + ], + [ + 0, + 0 + ], + [ + 0, + 0.039 + ], + [ + 0, + 0 + ], + [ + 0, + -0.027 + ], + [ + 0, + 0 + ], + [ + 0, + -0.012 + ], + [ + 0, + 0 + ], + [ + 0, + -0.006 + ], + [ + 0, + 0 + ], + [ + 0, + -0.043 + ], + [ + 0, + 0 + ], + [ + 0, + 0.007 + ], + [ + 0, + 0 + ], + [ + 0, + -0.044 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0.016 + ], + [ + 0, + 0 + ], + [ + 0, + -0.018 + ], + [ + 0, + 0 + ], + [ + 0, + 0.044 + ] + ], + "v": [ + [ + -139.671, + -26.485 + ], + [ + -139.672, + -26.462 + ], + [ + -139.672, + -26.427 + ], + [ + -139.671, + -26.262 + ], + [ + -139.671, + -26.151 + ], + [ + -139.672, + -26.022 + ], + [ + -139.672, + -26.043 + ], + [ + -139.672, + -26.246 + ], + [ + -139.672, + -26.245 + ], + [ + -139.673, + -26.039 + ], + [ + -139.673, + -26.016 + ], + [ + -139.673, + -26.149 + ], + [ + -139.673, + -26.261 + ], + [ + -139.673, + -26.42 + ], + [ + -139.673, + -26.455 + ], + [ + -139.673, + -26.484 + ], + [ + -139.673, + -26.58 + ], + [ + -139.673, + -26.8 + ], + [ + -139.673, + -26.844 + ], + [ + -139.673, + -26.745 + ], + [ + -139.673, + -26.767 + ], + [ + -139.673, + -26.987 + ], + [ + -139.672, + -27.07 + ], + [ + -139.672, + -27.07 + ], + [ + -139.672, + -26.987 + ], + [ + -139.672, + -26.755 + ], + [ + -139.672, + -26.734 + ], + [ + -139.672, + -26.837 + ], + [ + -139.671, + -26.79 + ], + [ + -139.671, + -26.579 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 50, + "s": [ + { + "i": [ + [ + 0.004, + 0 + ], + [ + 0, + 0 + ], + [ + -0.001, + -0.001 + ], + [ + 0, + 0 + ], + [ + 0.003, + -0.002 + ], + [ + 0, + 0 + ], + [ + 0.002, + 0.003 + ], + [ + 0, + 0 + ], + [ + 0.001, + -0.001 + ], + [ + 0, + 0 + ], + [ + 0.003, + 0.002 + ], + [ + 0, + 0 + ], + [ + -0.003, + 0.002 + ], + [ + 0, + 0 + ], + [ + 0.001, + 0 + ], + [ + 0, + 0 + ], + [ + -0.001, + 0.003 + ], + [ + 0, + 0 + ], + [ + -0.003, + -0.001 + ], + [ + 0, + 0 + ], + [ + 0, + 0.001 + ], + [ + 0, + 0 + ], + [ + -0.004, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.003 + ], + [ + 0, + 0 + ], + [ + -0.001, + 0 + ], + [ + 0, + 0 + ], + [ + -0.001, + -0.003 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -0.001, + 0 + ], + [ + 0, + 0 + ], + [ + 0.003, + 0.002 + ], + [ + 0, + 0 + ], + [ + -0.003, + 0.002 + ], + [ + 0, + 0 + ], + [ + -0.001, + -0.001 + ], + [ + 0, + 0 + ], + [ + -0.002, + 0.003 + ], + [ + 0, + 0 + ], + [ + -0.003, + -0.002 + ], + [ + 0, + 0 + ], + [ + 0.001, + -0.001 + ], + [ + 0, + 0 + ], + [ + -0.004, + 0 + ], + [ + 0, + 0 + ], + [ + 0.001, + -0.003 + ], + [ + 0, + 0 + ], + [ + 0.001, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.003 + ], + [ + 0, + 0 + ], + [ + 0.004, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0.001 + ], + [ + 0, + 0 + ], + [ + 0.003, + -0.001 + ], + [ + 0, + 0 + ], + [ + 0.001, + 0.003 + ] + ], + "v": [ + [ + -30.341, + -19.184 + ], + [ + -30.359, + -19.182 + ], + [ + -30.36, + -19.18 + ], + [ + -30.347, + -19.168 + ], + [ + -30.348, + -19.161 + ], + [ + -30.363, + -19.152 + ], + [ + -30.372, + -19.153 + ], + [ + -30.382, + -19.167 + ], + [ + -30.385, + -19.167 + ], + [ + -30.395, + -19.153 + ], + [ + -30.404, + -19.151 + ], + [ + -30.418, + -19.161 + ], + [ + -30.419, + -19.168 + ], + [ + -30.406, + -19.179 + ], + [ + -30.407, + -19.182 + ], + [ + -30.424, + -19.184 + ], + [ + -30.429, + -19.191 + ], + [ + -30.424, + -19.206 + ], + [ + -30.415, + -19.209 + ], + [ + -30.398, + -19.202 + ], + [ + -30.396, + -19.203 + ], + [ + -30.398, + -19.219 + ], + [ + -30.392, + -19.225 + ], + [ + -30.374, + -19.225 + ], + [ + -30.368, + -19.219 + ], + [ + -30.37, + -19.203 + ], + [ + -30.368, + -19.201 + ], + [ + -30.349, + -19.208 + ], + [ + -30.341, + -19.205 + ], + [ + -30.335, + -19.19 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 63, + "s": [ + { + "i": [ + [ + 0.04, + -0.003 + ], + [ + 0, + 0 + ], + [ + -0.01, + -0.009 + ], + [ + 0, + 0 + ], + [ + 0.032, + -0.019 + ], + [ + 0, + 0 + ], + [ + 0.019, + 0.026 + ], + [ + 0, + 0 + ], + [ + 0.007, + -0.01 + ], + [ + 0, + 0 + ], + [ + 0.031, + 0.019 + ], + [ + 0, + 0 + ], + [ + -0.028, + 0.023 + ], + [ + 0, + 0 + ], + [ + 0.015, + 0.002 + ], + [ + 0, + 0 + ], + [ + -0.012, + 0.032 + ], + [ + 0, + 0 + ], + [ + -0.035, + -0.014 + ], + [ + 0, + 0 + ], + [ + 0.002, + 0.012 + ], + [ + 0, + 0 + ], + [ + -0.039, + 0 + ], + [ + 0, + 0 + ], + [ + 0.005, + -0.032 + ], + [ + 0, + 0 + ], + [ + -0.013, + 0.005 + ], + [ + 0, + 0 + ], + [ + -0.011, + -0.031 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -0.015, + 0.001 + ], + [ + 0, + 0 + ], + [ + 0.027, + 0.023 + ], + [ + 0, + 0 + ], + [ + -0.03, + 0.018 + ], + [ + 0, + 0 + ], + [ + -0.007, + -0.01 + ], + [ + 0, + 0 + ], + [ + -0.019, + 0.028 + ], + [ + 0, + 0 + ], + [ + -0.031, + -0.02 + ], + [ + 0, + 0 + ], + [ + 0.01, + -0.009 + ], + [ + 0, + 0 + ], + [ + -0.039, + -0.004 + ], + [ + 0, + 0 + ], + [ + 0.012, + -0.031 + ], + [ + 0, + 0 + ], + [ + 0.013, + 0.005 + ], + [ + 0, + 0 + ], + [ + -0.005, + -0.032 + ], + [ + 0, + 0 + ], + [ + 0.038, + 0 + ], + [ + 0, + 0 + ], + [ + -0.002, + 0.011 + ], + [ + 0, + 0 + ], + [ + 0.035, + -0.013 + ], + [ + 0, + 0 + ], + [ + 0.011, + 0.032 + ] + ], + "v": [ + [ + 116.892, + -4.646 + ], + [ + 116.7, + -4.63 + ], + [ + 116.689, + -4.605 + ], + [ + 116.827, + -4.486 + ], + [ + 116.818, + -4.406 + ], + [ + 116.662, + -4.313 + ], + [ + 116.571, + -4.328 + ], + [ + 116.463, + -4.474 + ], + [ + 116.432, + -4.473 + ], + [ + 116.332, + -4.325 + ], + [ + 116.238, + -4.309 + ], + [ + 116.085, + -4.404 + ], + [ + 116.079, + -4.485 + ], + [ + 116.219, + -4.6 + ], + [ + 116.209, + -4.625 + ], + [ + 116.024, + -4.646 + ], + [ + 115.972, + -4.715 + ], + [ + 116.033, + -4.873 + ], + [ + 116.121, + -4.905 + ], + [ + 116.298, + -4.834 + ], + [ + 116.323, + -4.849 + ], + [ + 116.297, + -5.008 + ], + [ + 116.361, + -5.068 + ], + [ + 116.548, + -5.068 + ], + [ + 116.611, + -5.008 + ], + [ + 116.585, + -4.841 + ], + [ + 116.609, + -4.826 + ], + [ + 116.805, + -4.9 + ], + [ + 116.892, + -4.867 + ], + [ + 116.946, + -4.715 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 70, + "s": [ + { + "i": [ + [ + 0.685, + -0.07 + ], + [ + 0, + 0 + ], + [ + -0.177, + -0.183 + ], + [ + 0, + 0 + ], + [ + 0.547, + -0.39 + ], + [ + 0, + 0 + ], + [ + 0.334, + 0.54 + ], + [ + 0, + 0 + ], + [ + 0.114, + -0.202 + ], + [ + 0, + 0 + ], + [ + 0.53, + 0.398 + ], + [ + 0, + 0 + ], + [ + -0.479, + 0.471 + ], + [ + 0, + 0 + ], + [ + 0.251, + 0.034 + ], + [ + 0, + 0 + ], + [ + -0.208, + 0.651 + ], + [ + 0, + 0 + ], + [ + -0.601, + -0.289 + ], + [ + 0, + 0 + ], + [ + 0.032, + 0.24 + ], + [ + 0, + 0 + ], + [ + -0.665, + 0 + ], + [ + 0, + 0 + ], + [ + 0.086, + -0.658 + ], + [ + 0, + 0 + ], + [ + -0.218, + 0.098 + ], + [ + 0, + 0 + ], + [ + -0.19, + -0.638 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -0.253, + 0.026 + ], + [ + 0, + 0 + ], + [ + 0.467, + 0.482 + ], + [ + 0, + 0 + ], + [ + -0.517, + 0.369 + ], + [ + 0, + 0 + ], + [ + -0.122, + -0.197 + ], + [ + 0, + 0 + ], + [ + -0.326, + 0.577 + ], + [ + 0, + 0 + ], + [ + -0.537, + -0.403 + ], + [ + 0, + 0 + ], + [ + 0.181, + -0.178 + ], + [ + 0, + 0 + ], + [ + -0.678, + -0.091 + ], + [ + 0, + 0 + ], + [ + 0.203, + -0.635 + ], + [ + 0, + 0 + ], + [ + 0.219, + 0.105 + ], + [ + 0, + 0 + ], + [ + -0.088, + -0.659 + ], + [ + 0, + 0 + ], + [ + 0.663, + 0 + ], + [ + 0, + 0 + ], + [ + -0.031, + 0.237 + ], + [ + 0, + 0 + ], + [ + 0.606, + -0.274 + ], + [ + 0, + 0 + ], + [ + 0.197, + 0.66 + ] + ], + "v": [ + [ + 105.911, + -36.647 + ], + [ + 102.604, + -36.309 + ], + [ + 102.416, + -35.794 + ], + [ + 104.791, + -33.343 + ], + [ + 104.64, + -31.685 + ], + [ + 101.95, + -29.766 + ], + [ + 100.378, + -30.083 + ], + [ + 98.52, + -33.091 + ], + [ + 97.996, + -33.081 + ], + [ + 96.268, + -30.023 + ], + [ + 94.653, + -29.685 + ], + [ + 92.02, + -31.66 + ], + [ + 91.908, + -33.321 + ], + [ + 94.315, + -35.689 + ], + [ + 94.141, + -36.209 + ], + [ + 90.966, + -36.634 + ], + [ + 90.066, + -38.058 + ], + [ + 91.112, + -41.325 + ], + [ + 92.633, + -41.98 + ], + [ + 95.677, + -40.518 + ], + [ + 96.111, + -40.833 + ], + [ + 95.671, + -44.102 + ], + [ + 96.76, + -45.346 + ], + [ + 99.981, + -45.346 + ], + [ + 101.07, + -44.105 + ], + [ + 100.618, + -40.667 + ], + [ + 101.046, + -40.35 + ], + [ + 104.414, + -41.874 + ], + [ + 105.919, + -41.187 + ], + [ + 106.852, + -38.053 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 77, + "s": [ + { + "i": [ + [ + 1.964, + -0.201 + ], + [ + 0, + 0 + ], + [ + -0.508, + -0.524 + ], + [ + 0, + 0 + ], + [ + 1.568, + -1.118 + ], + [ + 0, + 0 + ], + [ + 0.957, + 1.549 + ], + [ + 0, + 0 + ], + [ + 0.327, + -0.579 + ], + [ + 0, + 0 + ], + [ + 1.52, + 1.14 + ], + [ + 0, + 0 + ], + [ + -1.373, + 1.351 + ], + [ + 0, + 0 + ], + [ + 0.72, + 0.097 + ], + [ + 0, + 0 + ], + [ + -0.597, + 1.866 + ], + [ + 0, + 0 + ], + [ + -1.722, + -0.827 + ], + [ + 0, + 0 + ], + [ + 0.093, + 0.689 + ], + [ + 0, + 0 + ], + [ + -1.905, + 0 + ], + [ + 0, + 0 + ], + [ + 0.248, + -1.885 + ], + [ + 0, + 0 + ], + [ + -0.624, + 0.282 + ], + [ + 0, + 0 + ], + [ + -0.544, + -1.828 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -0.726, + 0.074 + ], + [ + 0, + 0 + ], + [ + 1.34, + 1.383 + ], + [ + 0, + 0 + ], + [ + -1.482, + 1.057 + ], + [ + 0, + 0 + ], + [ + -0.349, + -0.566 + ], + [ + 0, + 0 + ], + [ + -0.934, + 1.654 + ], + [ + 0, + 0 + ], + [ + -1.541, + -1.156 + ], + [ + 0, + 0 + ], + [ + 0.518, + -0.51 + ], + [ + 0, + 0 + ], + [ + -1.942, + -0.26 + ], + [ + 0, + 0 + ], + [ + 0.583, + -1.82 + ], + [ + 0, + 0 + ], + [ + 0.627, + 0.301 + ], + [ + 0, + 0 + ], + [ + -0.254, + -1.888 + ], + [ + 0, + 0 + ], + [ + 1.901, + 0 + ], + [ + 0, + 0 + ], + [ + -0.089, + 0.679 + ], + [ + 0, + 0 + ], + [ + 1.738, + -0.786 + ], + [ + 0, + 0 + ], + [ + 0.564, + 1.892 + ] + ], + "v": [ + [ + 140.028, + -24.611 + ], + [ + 130.547, + -23.642 + ], + [ + 130.008, + -22.165 + ], + [ + 136.816, + -15.137 + ], + [ + 136.383, + -10.385 + ], + [ + 128.671, + -4.883 + ], + [ + 124.165, + -5.792 + ], + [ + 118.839, + -14.416 + ], + [ + 117.335, + -14.387 + ], + [ + 112.383, + -5.621 + ], + [ + 107.754, + -4.651 + ], + [ + 100.204, + -10.314 + ], + [ + 99.884, + -15.076 + ], + [ + 106.783, + -21.865 + ], + [ + 106.286, + -23.353 + ], + [ + 97.182, + -24.574 + ], + [ + 94.602, + -28.654 + ], + [ + 97.6, + -38.02 + ], + [ + 101.961, + -39.898 + ], + [ + 110.687, + -35.706 + ], + [ + 111.931, + -36.61 + ], + [ + 110.672, + -45.981 + ], + [ + 113.792, + -49.548 + ], + [ + 123.028, + -49.548 + ], + [ + 126.149, + -45.99 + ], + [ + 124.854, + -36.136 + ], + [ + 126.08, + -35.226 + ], + [ + 135.735, + -39.594 + ], + [ + 140.049, + -37.624 + ], + [ + 142.725, + -28.642 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 84, + "s": [ + { + "i": [ + [ + 3.457, + -0.354 + ], + [ + 0, + 0 + ], + [ + -0.894, + -0.923 + ], + [ + 0, + 0 + ], + [ + 2.76, + -1.969 + ], + [ + 0, + 0 + ], + [ + 1.684, + 2.728 + ], + [ + 0, + 0 + ], + [ + 0.576, + -1.019 + ], + [ + 0, + 0 + ], + [ + 2.676, + 2.007 + ], + [ + 0, + 0 + ], + [ + -2.417, + 2.378 + ], + [ + 0, + 0 + ], + [ + 1.268, + 0.17 + ], + [ + 0, + 0 + ], + [ + -1.052, + 3.286 + ], + [ + 0, + 0 + ], + [ + -3.033, + -1.457 + ], + [ + 0, + 0 + ], + [ + 0.163, + 1.213 + ], + [ + 0, + 0 + ], + [ + -3.354, + 0 + ], + [ + 0, + 0 + ], + [ + 0.436, + -3.319 + ], + [ + 0, + 0 + ], + [ + -1.099, + 0.497 + ], + [ + 0, + 0 + ], + [ + -0.959, + -3.219 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -1.278, + 0.131 + ], + [ + 0, + 0 + ], + [ + 2.359, + 2.435 + ], + [ + 0, + 0 + ], + [ + -2.61, + 1.862 + ], + [ + 0, + 0 + ], + [ + -0.615, + -0.996 + ], + [ + 0, + 0 + ], + [ + -1.645, + 2.912 + ], + [ + 0, + 0 + ], + [ + -2.713, + -2.035 + ], + [ + 0, + 0 + ], + [ + 0.912, + -0.897 + ], + [ + 0, + 0 + ], + [ + -3.42, + -0.459 + ], + [ + 0, + 0 + ], + [ + 1.026, + -3.204 + ], + [ + 0, + 0 + ], + [ + 1.103, + 0.53 + ], + [ + 0, + 0 + ], + [ + -0.447, + -3.325 + ], + [ + 0, + 0 + ], + [ + 3.348, + 0 + ], + [ + 0, + 0 + ], + [ + -0.157, + 1.196 + ], + [ + 0, + 0 + ], + [ + 3.06, + -1.384 + ], + [ + 0, + 0 + ], + [ + 0.992, + 3.331 + ] + ], + "v": [ + [ + 156.295, + -23.152 + ], + [ + 139.6, + -21.445 + ], + [ + 138.652, + -18.844 + ], + [ + 150.639, + -6.47 + ], + [ + 149.877, + 1.898 + ], + [ + 136.298, + 11.586 + ], + [ + 128.363, + 9.985 + ], + [ + 118.986, + -5.201 + ], + [ + 116.338, + -5.149 + ], + [ + 107.618, + 10.285 + ], + [ + 99.467, + 11.993 + ], + [ + 86.173, + 2.022 + ], + [ + 85.611, + -6.362 + ], + [ + 97.757, + -18.316 + ], + [ + 96.883, + -20.937 + ], + [ + 80.852, + -23.086 + ], + [ + 76.31, + -30.269 + ], + [ + 81.589, + -46.761 + ], + [ + 89.268, + -50.067 + ], + [ + 104.632, + -42.687 + ], + [ + 106.822, + -44.279 + ], + [ + 104.605, + -60.779 + ], + [ + 110.099, + -67.06 + ], + [ + 126.361, + -67.06 + ], + [ + 131.857, + -60.795 + ], + [ + 129.576, + -43.444 + ], + [ + 131.735, + -41.842 + ], + [ + 148.735, + -49.532 + ], + [ + 156.332, + -46.065 + ], + [ + 161.043, + -30.248 + ] + ], + "c": true + } + ] + }, + { + "t": 89, + "s": [ + { + "i": [ + [ + 2.869, + -0.293 + ], + [ + 0, + 0 + ], + [ + -0.742, + -0.766 + ], + [ + 0, + 0 + ], + [ + 2.291, + -1.634 + ], + [ + 0, + 0 + ], + [ + 1.398, + 2.264 + ], + [ + 0, + 0 + ], + [ + 0.478, + -0.846 + ], + [ + 0, + 0 + ], + [ + 2.221, + 1.666 + ], + [ + 0, + 0 + ], + [ + -2.006, + 1.974 + ], + [ + 0, + 0 + ], + [ + 1.052, + 0.141 + ], + [ + 0, + 0 + ], + [ + -0.873, + 2.727 + ], + [ + 0, + 0 + ], + [ + -2.517, + -1.209 + ], + [ + 0, + 0 + ], + [ + 0.135, + 1.007 + ], + [ + 0, + 0 + ], + [ + -2.784, + 0 + ], + [ + 0, + 0 + ], + [ + 0.362, + -2.755 + ], + [ + 0, + 0 + ], + [ + -0.912, + 0.413 + ], + [ + 0, + 0 + ], + [ + -0.796, + -2.671 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -1.061, + 0.108 + ], + [ + 0, + 0 + ], + [ + 1.958, + 2.021 + ], + [ + 0, + 0 + ], + [ + -2.166, + 1.545 + ], + [ + 0, + 0 + ], + [ + -0.51, + -0.827 + ], + [ + 0, + 0 + ], + [ + -1.365, + 2.417 + ], + [ + 0, + 0 + ], + [ + -2.251, + -1.689 + ], + [ + 0, + 0 + ], + [ + 0.757, + -0.745 + ], + [ + 0, + 0 + ], + [ + -2.838, + -0.381 + ], + [ + 0, + 0 + ], + [ + 0.851, + -2.659 + ], + [ + 0, + 0 + ], + [ + 0.916, + 0.44 + ], + [ + 0, + 0 + ], + [ + -0.371, + -2.759 + ], + [ + 0, + 0 + ], + [ + 2.779, + 0 + ], + [ + 0, + 0 + ], + [ + -0.13, + 0.992 + ], + [ + 0, + 0 + ], + [ + 2.539, + -1.149 + ], + [ + 0, + 0 + ], + [ + 0.823, + 2.764 + ] + ], + "v": [ + [ + 149.892, + -23.726 + ], + [ + 136.037, + -22.309 + ], + [ + 135.25, + -20.151 + ], + [ + 145.198, + -9.882 + ], + [ + 144.565, + -2.937 + ], + [ + 133.296, + 5.103 + ], + [ + 126.71, + 3.775 + ], + [ + 118.928, + -8.828 + ], + [ + 116.73, + -8.786 + ], + [ + 109.494, + 4.024 + ], + [ + 102.729, + 5.441 + ], + [ + 91.696, + -2.834 + ], + [ + 91.229, + -9.792 + ], + [ + 101.31, + -19.713 + ], + [ + 100.584, + -21.888 + ], + [ + 87.28, + -23.672 + ], + [ + 83.511, + -29.633 + ], + [ + 87.892, + -43.32 + ], + [ + 94.264, + -46.064 + ], + [ + 107.015, + -39.939 + ], + [ + 108.833, + -41.26 + ], + [ + 106.994, + -54.954 + ], + [ + 111.553, + -60.167 + ], + [ + 125.049, + -60.167 + ], + [ + 129.61, + -54.967 + ], + [ + 127.717, + -40.567 + ], + [ + 129.509, + -39.238 + ], + [ + 143.618, + -45.62 + ], + [ + 149.922, + -42.742 + ], + [ + 153.832, + -29.616 + ] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 1, + "ty": "sh", + "ix": 2, + "ks": { + "a": 1, + "k": [ + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.28, + "y": 0 + }, + "t": 45, + "s": [ + { + "i": [ + [ + 0, + -0.006 + ], + [ + 0, + 0 + ], + [ + 0, + -0.015 + ], + [ + 0, + 0 + ], + [ + 0, + -0.031 + ], + [ + 0, + 0 + ], + [ + 0, + 0.044 + ], + [ + 0, + 0 + ], + [ + 0, + -0.016 + ], + [ + 0, + 0 + ], + [ + 0, + 0.032 + ], + [ + 0, + 0 + ], + [ + 0, + 0.038 + ], + [ + 0, + 0 + ], + [ + 0, + 0.003 + ], + [ + 0, + 0 + ], + [ + 0, + 0.052 + ], + [ + 0, + 0 + ], + [ + 0, + -0.023 + ], + [ + 0, + 0 + ], + [ + 0, + 0.019 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.053 + ], + [ + 0, + 0 + ], + [ + 0, + 0.008 + ], + [ + 0, + 0 + ], + [ + 0, + -0.051 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0.002 + ], + [ + 0, + 0 + ], + [ + 0, + 0.039 + ], + [ + 0, + 0 + ], + [ + 0, + 0.03 + ], + [ + 0, + 0 + ], + [ + 0, + -0.016 + ], + [ + 0, + 0 + ], + [ + 0, + 0.046 + ], + [ + 0, + 0 + ], + [ + 0, + -0.032 + ], + [ + 0, + 0 + ], + [ + 0, + -0.014 + ], + [ + 0, + 0 + ], + [ + 0, + -0.007 + ], + [ + 0, + 0 + ], + [ + 0, + -0.051 + ], + [ + 0, + 0 + ], + [ + 0, + 0.008 + ], + [ + 0, + 0 + ], + [ + 0, + -0.053 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0.019 + ], + [ + 0, + 0 + ], + [ + 0, + -0.022 + ], + [ + 0, + 0 + ], + [ + 0, + 0.053 + ] + ], + "v": [ + [ + -139.819, + -26.476 + ], + [ + -139.82, + -26.449 + ], + [ + -139.82, + -26.407 + ], + [ + -139.819, + -26.21 + ], + [ + -139.819, + -26.076 + ], + [ + -139.82, + -25.922 + ], + [ + -139.82, + -25.947 + ], + [ + -139.82, + -26.19 + ], + [ + -139.82, + -26.189 + ], + [ + -139.821, + -25.943 + ], + [ + -139.821, + -25.915 + ], + [ + -139.821, + -26.074 + ], + [ + -139.821, + -26.208 + ], + [ + -139.821, + -26.399 + ], + [ + -139.821, + -26.441 + ], + [ + -139.821, + -26.475 + ], + [ + -139.822, + -26.59 + ], + [ + -139.821, + -26.853 + ], + [ + -139.821, + -26.905 + ], + [ + -139.821, + -26.788 + ], + [ + -139.821, + -26.813 + ], + [ + -139.821, + -27.076 + ], + [ + -139.821, + -27.176 + ], + [ + -139.82, + -27.176 + ], + [ + -139.82, + -27.076 + ], + [ + -139.82, + -26.8 + ], + [ + -139.82, + -26.774 + ], + [ + -139.819, + -26.897 + ], + [ + -139.819, + -26.841 + ], + [ + -139.819, + -26.589 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 50, + "s": [ + { + "i": [ + [ + 0.016, + -0.001 + ], + [ + 0, + 0 + ], + [ + -0.004, + -0.004 + ], + [ + 0, + 0 + ], + [ + 0.013, + -0.008 + ], + [ + 0, + 0 + ], + [ + 0.008, + 0.011 + ], + [ + 0, + 0 + ], + [ + 0.003, + -0.004 + ], + [ + 0, + 0 + ], + [ + 0.012, + 0.008 + ], + [ + 0, + 0 + ], + [ + -0.011, + 0.009 + ], + [ + 0, + 0 + ], + [ + 0.006, + 0.001 + ], + [ + 0, + 0 + ], + [ + -0.005, + 0.013 + ], + [ + 0, + 0 + ], + [ + -0.014, + -0.006 + ], + [ + 0, + 0 + ], + [ + 0.001, + 0.005 + ], + [ + 0, + 0 + ], + [ + -0.016, + 0 + ], + [ + 0, + 0 + ], + [ + 0.002, + -0.013 + ], + [ + 0, + 0 + ], + [ + -0.005, + 0.002 + ], + [ + 0, + 0 + ], + [ + -0.004, + -0.013 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -0.006, + 0.001 + ], + [ + 0, + 0 + ], + [ + 0.011, + 0.01 + ], + [ + 0, + 0 + ], + [ + -0.012, + 0.007 + ], + [ + 0, + 0 + ], + [ + -0.003, + -0.004 + ], + [ + 0, + 0 + ], + [ + -0.008, + 0.011 + ], + [ + 0, + 0 + ], + [ + -0.013, + -0.008 + ], + [ + 0, + 0 + ], + [ + 0.004, + -0.004 + ], + [ + 0, + 0 + ], + [ + -0.016, + -0.002 + ], + [ + 0, + 0 + ], + [ + 0.005, + -0.013 + ], + [ + 0, + 0 + ], + [ + 0.005, + 0.002 + ], + [ + 0, + 0 + ], + [ + -0.002, + -0.013 + ], + [ + 0, + 0 + ], + [ + 0.016, + 0 + ], + [ + 0, + 0 + ], + [ + -0.001, + 0.005 + ], + [ + 0, + 0 + ], + [ + 0.014, + -0.005 + ], + [ + 0, + 0 + ], + [ + 0.005, + 0.013 + ] + ], + "v": [ + [ + -73.167, + -19.174 + ], + [ + -73.245, + -19.167 + ], + [ + -73.25, + -19.157 + ], + [ + -73.194, + -19.109 + ], + [ + -73.197, + -19.076 + ], + [ + -73.261, + -19.038 + ], + [ + -73.298, + -19.044 + ], + [ + -73.341, + -19.104 + ], + [ + -73.354, + -19.104 + ], + [ + -73.394, + -19.043 + ], + [ + -73.432, + -19.037 + ], + [ + -73.494, + -19.075 + ], + [ + -73.497, + -19.108 + ], + [ + -73.44, + -19.155 + ], + [ + -73.445, + -19.165 + ], + [ + -73.519, + -19.174 + ], + [ + -73.541, + -19.202 + ], + [ + -73.516, + -19.266 + ], + [ + -73.48, + -19.279 + ], + [ + -73.408, + -19.25 + ], + [ + -73.398, + -19.256 + ], + [ + -73.409, + -19.321 + ], + [ + -73.383, + -19.345 + ], + [ + -73.307, + -19.345 + ], + [ + -73.281, + -19.321 + ], + [ + -73.292, + -19.253 + ], + [ + -73.282, + -19.247 + ], + [ + -73.203, + -19.277 + ], + [ + -73.167, + -19.263 + ], + [ + -73.145, + -19.202 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 56, + "s": [ + { + "i": [ + [ + 0.051, + -0.004 + ], + [ + 0, + 0 + ], + [ + -0.013, + -0.011 + ], + [ + 0, + 0 + ], + [ + 0.041, + -0.025 + ], + [ + 0, + 0 + ], + [ + 0.025, + 0.034 + ], + [ + 0, + 0 + ], + [ + 0.009, + -0.013 + ], + [ + 0, + 0 + ], + [ + 0.04, + 0.025 + ], + [ + 0, + 0 + ], + [ + -0.036, + 0.03 + ], + [ + 0, + 0 + ], + [ + 0.019, + 0.002 + ], + [ + 0, + 0 + ], + [ + -0.016, + 0.041 + ], + [ + 0, + 0 + ], + [ + -0.045, + -0.018 + ], + [ + 0, + 0 + ], + [ + 0.002, + 0.015 + ], + [ + 0, + 0 + ], + [ + -0.05, + 0 + ], + [ + 0, + 0 + ], + [ + 0.007, + -0.041 + ], + [ + 0, + 0 + ], + [ + -0.016, + 0.006 + ], + [ + 0, + 0 + ], + [ + -0.014, + -0.04 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -0.019, + 0.002 + ], + [ + 0, + 0 + ], + [ + 0.035, + 0.03 + ], + [ + 0, + 0 + ], + [ + -0.039, + 0.023 + ], + [ + 0, + 0 + ], + [ + -0.009, + -0.012 + ], + [ + 0, + 0 + ], + [ + -0.025, + 0.036 + ], + [ + 0, + 0 + ], + [ + -0.04, + -0.025 + ], + [ + 0, + 0 + ], + [ + 0.014, + -0.011 + ], + [ + 0, + 0 + ], + [ + -0.051, + -0.006 + ], + [ + 0, + 0 + ], + [ + 0.015, + -0.04 + ], + [ + 0, + 0 + ], + [ + 0.016, + 0.007 + ], + [ + 0, + 0 + ], + [ + -0.007, + -0.041 + ], + [ + 0, + 0 + ], + [ + 0.05, + 0 + ], + [ + 0, + 0 + ], + [ + -0.002, + 0.015 + ], + [ + 0, + 0 + ], + [ + 0.046, + -0.017 + ], + [ + 0, + 0 + ], + [ + 0.015, + 0.041 + ] + ], + "v": [ + [ + 24.803, + -6.163 + ], + [ + 24.554, + -6.141 + ], + [ + 24.54, + -6.109 + ], + [ + 24.719, + -5.955 + ], + [ + 24.707, + -5.851 + ], + [ + 24.505, + -5.73 + ], + [ + 24.387, + -5.75 + ], + [ + 24.247, + -5.939 + ], + [ + 24.208, + -5.939 + ], + [ + 24.078, + -5.746 + ], + [ + 23.957, + -5.725 + ], + [ + 23.759, + -5.849 + ], + [ + 23.75, + -5.954 + ], + [ + 23.931, + -6.102 + ], + [ + 23.918, + -6.135 + ], + [ + 23.68, + -6.162 + ], + [ + 23.612, + -6.251 + ], + [ + 23.691, + -6.456 + ], + [ + 23.805, + -6.497 + ], + [ + 24.034, + -6.406 + ], + [ + 24.066, + -6.425 + ], + [ + 24.033, + -6.631 + ], + [ + 24.115, + -6.709 + ], + [ + 24.357, + -6.709 + ], + [ + 24.439, + -6.631 + ], + [ + 24.405, + -6.415 + ], + [ + 24.437, + -6.395 + ], + [ + 24.69, + -6.491 + ], + [ + 24.803, + -6.448 + ], + [ + 24.874, + -6.251 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 63, + "s": [ + { + "i": [ + [ + 1.061, + -0.106 + ], + [ + 0, + 0 + ], + [ + -0.274, + -0.278 + ], + [ + 0, + 0 + ], + [ + 0.847, + -0.592 + ], + [ + 0, + 0 + ], + [ + 0.517, + 0.821 + ], + [ + 0, + 0 + ], + [ + 0.177, + -0.307 + ], + [ + 0, + 0 + ], + [ + 0.821, + 0.604 + ], + [ + 0, + 0 + ], + [ + -0.742, + 0.716 + ], + [ + 0, + 0 + ], + [ + 0.389, + 0.051 + ], + [ + 0, + 0 + ], + [ + -0.323, + 0.989 + ], + [ + 0, + 0 + ], + [ + -0.93, + -0.438 + ], + [ + 0, + 0 + ], + [ + 0.05, + 0.365 + ], + [ + 0, + 0 + ], + [ + -1.029, + 0 + ], + [ + 0, + 0 + ], + [ + 0.134, + -0.999 + ], + [ + 0, + 0 + ], + [ + -0.337, + 0.15 + ], + [ + 0, + 0 + ], + [ + -0.294, + -0.968 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -0.392, + 0.039 + ], + [ + 0, + 0 + ], + [ + 0.724, + 0.733 + ], + [ + 0, + 0 + ], + [ + -0.801, + 0.56 + ], + [ + 0, + 0 + ], + [ + -0.189, + -0.3 + ], + [ + 0, + 0 + ], + [ + -0.505, + 0.876 + ], + [ + 0, + 0 + ], + [ + -0.832, + -0.612 + ], + [ + 0, + 0 + ], + [ + 0.28, + -0.27 + ], + [ + 0, + 0 + ], + [ + -1.049, + -0.138 + ], + [ + 0, + 0 + ], + [ + 0.315, + -0.964 + ], + [ + 0, + 0 + ], + [ + 0.339, + 0.159 + ], + [ + 0, + 0 + ], + [ + -0.137, + -1 + ], + [ + 0, + 0 + ], + [ + 1.027, + 0 + ], + [ + 0, + 0 + ], + [ + -0.048, + 0.36 + ], + [ + 0, + 0 + ], + [ + 0.939, + -0.416 + ], + [ + 0, + 0 + ], + [ + 0.304, + 1.002 + ] + ], + "v": [ + [ + 43.049, + -1.267 + ], + [ + 37.926, + -0.754 + ], + [ + 37.635, + 0.029 + ], + [ + 41.313, + 3.752 + ], + [ + 41.079, + 6.27 + ], + [ + 36.913, + 9.184 + ], + [ + 34.478, + 8.703 + ], + [ + 31.601, + 4.134 + ], + [ + 30.789, + 4.149 + ], + [ + 28.113, + 8.793 + ], + [ + 25.612, + 9.307 + ], + [ + 21.533, + 6.307 + ], + [ + 21.361, + 3.784 + ], + [ + 25.088, + 0.188 + ], + [ + 24.819, + -0.601 + ], + [ + 19.901, + -1.247 + ], + [ + 18.507, + -3.409 + ], + [ + 20.127, + -8.371 + ], + [ + 22.483, + -9.365 + ], + [ + 27.197, + -7.145 + ], + [ + 27.869, + -7.624 + ], + [ + 27.189, + -12.588 + ], + [ + 28.874, + -14.478 + ], + [ + 33.864, + -14.478 + ], + [ + 35.55, + -12.593 + ], + [ + 34.851, + -7.373 + ], + [ + 35.513, + -6.891 + ], + [ + 40.729, + -9.204 + ], + [ + 43.06, + -8.161 + ], + [ + 44.505, + -3.402 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 70, + "s": [ + { + "i": [ + [ + 2.101, + -0.215 + ], + [ + 0, + 0 + ], + [ + -0.543, + -0.562 + ], + [ + 0, + 0 + ], + [ + 1.678, + -1.199 + ], + [ + 0, + 0 + ], + [ + 1.024, + 1.662 + ], + [ + 0, + 0 + ], + [ + 0.35, + -0.621 + ], + [ + 0, + 0 + ], + [ + 1.626, + 1.222 + ], + [ + 0, + 0 + ], + [ + -1.469, + 1.449 + ], + [ + 0, + 0 + ], + [ + 0.771, + 0.104 + ], + [ + 0, + 0 + ], + [ + -0.639, + 2.002 + ], + [ + 0, + 0 + ], + [ + -1.843, + -0.887 + ], + [ + 0, + 0 + ], + [ + 0.099, + 0.739 + ], + [ + 0, + 0 + ], + [ + -2.039, + 0 + ], + [ + 0, + 0 + ], + [ + 0.265, + -2.022 + ], + [ + 0, + 0 + ], + [ + -0.668, + 0.303 + ], + [ + 0, + 0 + ], + [ + -0.583, + -1.961 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -0.777, + 0.08 + ], + [ + 0, + 0 + ], + [ + 1.434, + 1.483 + ], + [ + 0, + 0 + ], + [ + -1.586, + 1.134 + ], + [ + 0, + 0 + ], + [ + -0.374, + -0.607 + ], + [ + 0, + 0 + ], + [ + -1, + 1.774 + ], + [ + 0, + 0 + ], + [ + -1.649, + -1.239 + ], + [ + 0, + 0 + ], + [ + 0.554, + -0.547 + ], + [ + 0, + 0 + ], + [ + -2.078, + -0.279 + ], + [ + 0, + 0 + ], + [ + 0.623, + -1.952 + ], + [ + 0, + 0 + ], + [ + 0.671, + 0.323 + ], + [ + 0, + 0 + ], + [ + -0.271, + -2.025 + ], + [ + 0, + 0 + ], + [ + 2.035, + 0 + ], + [ + 0, + 0 + ], + [ + -0.096, + 0.728 + ], + [ + 0, + 0 + ], + [ + 1.86, + -0.843 + ], + [ + 0, + 0 + ], + [ + 0.603, + 2.029 + ] + ], + "v": [ + [ + 48.875, + -33.672 + ], + [ + 38.729, + -32.632 + ], + [ + 38.153, + -31.048 + ], + [ + 45.438, + -23.511 + ], + [ + 44.975, + -18.413 + ], + [ + 36.722, + -12.513 + ], + [ + 31.9, + -13.488 + ], + [ + 26.201, + -22.738 + ], + [ + 24.592, + -22.706 + ], + [ + 19.293, + -13.305 + ], + [ + 14.339, + -12.265 + ], + [ + 6.26, + -18.338 + ], + [ + 5.918, + -23.445 + ], + [ + 13.3, + -30.726 + ], + [ + 12.768, + -32.323 + ], + [ + 3.026, + -33.632 + ], + [ + 0.266, + -38.007 + ], + [ + 3.474, + -48.053 + ], + [ + 8.14, + -50.067 + ], + [ + 17.478, + -45.571 + ], + [ + 18.809, + -46.541 + ], + [ + 17.462, + -56.591 + ], + [ + 20.8, + -60.417 + ], + [ + 30.684, + -60.417 + ], + [ + 34.023, + -56.601 + ], + [ + 32.637, + -46.032 + ], + [ + 33.95, + -45.056 + ], + [ + 44.281, + -49.741 + ], + [ + 48.898, + -47.628 + ], + [ + 51.761, + -37.994 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 77, + "s": [ + { + "i": [ + [ + 3.616, + -0.37 + ], + [ + 0, + 0 + ], + [ + -0.935, + -0.965 + ], + [ + 0, + 0 + ], + [ + 2.887, + -2.059 + ], + [ + 0, + 0 + ], + [ + 1.762, + 2.853 + ], + [ + 0, + 0 + ], + [ + 0.602, + -1.066 + ], + [ + 0, + 0 + ], + [ + 2.798, + 2.099 + ], + [ + 0, + 0 + ], + [ + -2.527, + 2.487 + ], + [ + 0, + 0 + ], + [ + 1.326, + 0.178 + ], + [ + 0, + 0 + ], + [ + -1.1, + 3.437 + ], + [ + 0, + 0 + ], + [ + -3.172, + -1.523 + ], + [ + 0, + 0 + ], + [ + 0.17, + 1.269 + ], + [ + 0, + 0 + ], + [ + -3.508, + 0 + ], + [ + 0, + 0 + ], + [ + 0.456, + -3.472 + ], + [ + 0, + 0 + ], + [ + -1.149, + 0.52 + ], + [ + 0, + 0 + ], + [ + -1.003, + -3.366 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -1.337, + 0.137 + ], + [ + 0, + 0 + ], + [ + 2.467, + 2.547 + ], + [ + 0, + 0 + ], + [ + -2.73, + 1.947 + ], + [ + 0, + 0 + ], + [ + -0.643, + -1.042 + ], + [ + 0, + 0 + ], + [ + -1.721, + 3.046 + ], + [ + 0, + 0 + ], + [ + -2.837, + -2.128 + ], + [ + 0, + 0 + ], + [ + 0.954, + -0.939 + ], + [ + 0, + 0 + ], + [ + -3.577, + -0.48 + ], + [ + 0, + 0 + ], + [ + 1.073, + -3.351 + ], + [ + 0, + 0 + ], + [ + 1.154, + 0.554 + ], + [ + 0, + 0 + ], + [ + -0.467, + -3.477 + ], + [ + 0, + 0 + ], + [ + 3.501, + 0 + ], + [ + 0, + 0 + ], + [ + -0.164, + 1.251 + ], + [ + 0, + 0 + ], + [ + 3.2, + -1.448 + ], + [ + 0, + 0 + ], + [ + 1.038, + 3.483 + ] + ], + "v": [ + [ + 76.583, + -22.997 + ], + [ + 59.124, + -21.212 + ], + [ + 58.132, + -18.492 + ], + [ + 70.668, + -5.551 + ], + [ + 69.871, + 3.201 + ], + [ + 55.67, + 13.332 + ], + [ + 47.372, + 11.658 + ], + [ + 37.565, + -4.224 + ], + [ + 34.796, + -4.17 + ], + [ + 25.677, + 11.972 + ], + [ + 17.152, + 13.758 + ], + [ + 3.249, + 3.331 + ], + [ + 2.661, + -5.438 + ], + [ + 15.364, + -17.94 + ], + [ + 14.449, + -20.681 + ], + [ + -2.315, + -22.928 + ], + [ + -7.066, + -30.441 + ], + [ + -1.545, + -47.688 + ], + [ + 6.486, + -51.146 + ], + [ + 22.553, + -43.427 + ], + [ + 24.844, + -45.092 + ], + [ + 22.526, + -62.348 + ], + [ + 28.271, + -68.917 + ], + [ + 45.278, + -68.917 + ], + [ + 51.025, + -62.365 + ], + [ + 48.641, + -44.219 + ], + [ + 50.899, + -42.543 + ], + [ + 68.677, + -50.586 + ], + [ + 76.622, + -46.959 + ], + [ + 81.549, + -30.418 + ] + ], + "c": true + } + ] + }, + { + "t": 84, + "s": [ + { + "i": [ + [ + 2.869, + -0.293 + ], + [ + 0, + 0 + ], + [ + -0.742, + -0.766 + ], + [ + 0, + 0 + ], + [ + 2.291, + -1.634 + ], + [ + 0, + 0 + ], + [ + 1.398, + 2.264 + ], + [ + 0, + 0 + ], + [ + 0.478, + -0.846 + ], + [ + 0, + 0 + ], + [ + 2.221, + 1.666 + ], + [ + 0, + 0 + ], + [ + -2.006, + 1.974 + ], + [ + 0, + 0 + ], + [ + 1.052, + 0.141 + ], + [ + 0, + 0 + ], + [ + -0.873, + 2.727 + ], + [ + 0, + 0 + ], + [ + -2.517, + -1.209 + ], + [ + 0, + 0 + ], + [ + 0.135, + 1.007 + ], + [ + 0, + 0 + ], + [ + -2.784, + 0 + ], + [ + 0, + 0 + ], + [ + 0.362, + -2.755 + ], + [ + 0, + 0 + ], + [ + -0.912, + 0.413 + ], + [ + 0, + 0 + ], + [ + -0.796, + -2.671 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -1.061, + 0.108 + ], + [ + 0, + 0 + ], + [ + 1.958, + 2.021 + ], + [ + 0, + 0 + ], + [ + -2.166, + 1.545 + ], + [ + 0, + 0 + ], + [ + -0.51, + -0.827 + ], + [ + 0, + 0 + ], + [ + -1.365, + 2.417 + ], + [ + 0, + 0 + ], + [ + -2.251, + -1.689 + ], + [ + 0, + 0 + ], + [ + 0.757, + -0.745 + ], + [ + 0, + 0 + ], + [ + -2.838, + -0.381 + ], + [ + 0, + 0 + ], + [ + 0.851, + -2.659 + ], + [ + 0, + 0 + ], + [ + 0.916, + 0.44 + ], + [ + 0, + 0 + ], + [ + -0.371, + -2.759 + ], + [ + 0, + 0 + ], + [ + 2.779, + 0 + ], + [ + 0, + 0 + ], + [ + -0.13, + 0.992 + ], + [ + 0, + 0 + ], + [ + 2.539, + -1.149 + ], + [ + 0, + 0 + ], + [ + 0.823, + 2.764 + ] + ], + "v": [ + [ + 68.456, + -23.726 + ], + [ + 54.601, + -22.309 + ], + [ + 53.813, + -20.151 + ], + [ + 63.762, + -9.882 + ], + [ + 63.129, + -2.937 + ], + [ + 51.859, + 5.103 + ], + [ + 45.274, + 3.775 + ], + [ + 37.492, + -8.828 + ], + [ + 35.294, + -8.786 + ], + [ + 28.058, + 4.024 + ], + [ + 21.293, + 5.441 + ], + [ + 10.26, + -2.834 + ], + [ + 9.793, + -9.792 + ], + [ + 19.874, + -19.713 + ], + [ + 19.148, + -21.888 + ], + [ + 5.844, + -23.672 + ], + [ + 2.074, + -29.633 + ], + [ + 6.455, + -43.32 + ], + [ + 12.828, + -46.064 + ], + [ + 25.579, + -39.939 + ], + [ + 27.397, + -41.26 + ], + [ + 25.557, + -54.954 + ], + [ + 30.116, + -60.167 + ], + [ + 43.613, + -60.167 + ], + [ + 48.174, + -54.967 + ], + [ + 46.281, + -40.567 + ], + [ + 48.073, + -39.238 + ], + [ + 62.182, + -45.62 + ], + [ + 68.486, + -42.742 + ], + [ + 72.396, + -29.616 + ] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 2", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 2, + "ty": "sh", + "ix": 3, + "ks": { + "a": 1, + "k": [ + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.28, + "y": 0 + }, + "t": 45, + "s": [ + { + "i": [ + [ + 0, + -0.003 + ], + [ + 0, + 0 + ], + [ + 0, + -0.007 + ], + [ + 0, + 0 + ], + [ + 0, + -0.014 + ], + [ + 0, + 0 + ], + [ + 0, + 0.02 + ], + [ + 0, + 0 + ], + [ + 0, + -0.007 + ], + [ + 0, + 0 + ], + [ + 0, + 0.014 + ], + [ + 0, + 0 + ], + [ + 0, + 0.017 + ], + [ + 0, + 0 + ], + [ + 0, + 0.001 + ], + [ + 0, + 0 + ], + [ + 0, + 0.024 + ], + [ + 0, + 0 + ], + [ + 0, + -0.01 + ], + [ + 0, + 0 + ], + [ + 0, + 0.009 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.024 + ], + [ + 0, + 0 + ], + [ + 0, + 0.004 + ], + [ + 0, + 0 + ], + [ + 0, + -0.023 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0.001 + ], + [ + 0, + 0 + ], + [ + 0, + 0.017 + ], + [ + 0, + 0 + ], + [ + 0, + 0.013 + ], + [ + 0, + 0 + ], + [ + 0, + -0.007 + ], + [ + 0, + 0 + ], + [ + 0, + 0.021 + ], + [ + 0, + 0 + ], + [ + 0, + -0.015 + ], + [ + 0, + 0 + ], + [ + 0, + -0.006 + ], + [ + 0, + 0 + ], + [ + 0, + -0.003 + ], + [ + 0, + 0 + ], + [ + 0, + -0.023 + ], + [ + 0, + 0 + ], + [ + 0, + 0.004 + ], + [ + 0, + 0 + ], + [ + 0, + -0.024 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0.009 + ], + [ + 0, + 0 + ], + [ + 0, + -0.01 + ], + [ + 0, + 0 + ], + [ + 0, + 0.024 + ] + ], + "v": [ + [ + -139.969, + -26.506 + ], + [ + -139.969, + -26.493 + ], + [ + -139.969, + -26.475 + ], + [ + -139.969, + -26.386 + ], + [ + -139.969, + -26.326 + ], + [ + -139.969, + -26.257 + ], + [ + -139.969, + -26.268 + ], + [ + -139.969, + -26.377 + ], + [ + -139.969, + -26.377 + ], + [ + -139.97, + -26.266 + ], + [ + -139.97, + -26.254 + ], + [ + -139.97, + -26.325 + ], + [ + -139.97, + -26.385 + ], + [ + -139.97, + -26.471 + ], + [ + -139.97, + -26.49 + ], + [ + -139.97, + -26.505 + ], + [ + -139.97, + -26.557 + ], + [ + -139.97, + -26.675 + ], + [ + -139.97, + -26.698 + ], + [ + -139.97, + -26.646 + ], + [ + -139.97, + -26.657 + ], + [ + -139.97, + -26.775 + ], + [ + -139.97, + -26.82 + ], + [ + -139.969, + -26.82 + ], + [ + -139.969, + -26.775 + ], + [ + -139.969, + -26.651 + ], + [ + -139.969, + -26.64 + ], + [ + -139.969, + -26.695 + ], + [ + -139.969, + -26.67 + ], + [ + -139.969, + -26.557 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 50, + "s": [ + { + "i": [ + [ + 0.015, + -0.001 + ], + [ + 0, + 0 + ], + [ + -0.004, + -0.003 + ], + [ + 0, + 0 + ], + [ + 0.012, + -0.007 + ], + [ + 0, + 0 + ], + [ + 0.007, + 0.01 + ], + [ + 0, + 0 + ], + [ + 0.002, + -0.004 + ], + [ + 0, + 0 + ], + [ + 0.012, + 0.007 + ], + [ + 0, + 0 + ], + [ + -0.01, + 0.008 + ], + [ + 0, + 0 + ], + [ + 0.005, + 0.001 + ], + [ + 0, + 0 + ], + [ + -0.005, + 0.012 + ], + [ + 0, + 0 + ], + [ + -0.013, + -0.005 + ], + [ + 0, + 0 + ], + [ + 0.001, + 0.004 + ], + [ + 0, + 0 + ], + [ + -0.014, + 0 + ], + [ + 0, + 0 + ], + [ + 0.002, + -0.012 + ], + [ + 0, + 0 + ], + [ + -0.005, + 0.002 + ], + [ + 0, + 0 + ], + [ + -0.004, + -0.011 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -0.005, + 0 + ], + [ + 0, + 0 + ], + [ + 0.01, + 0.009 + ], + [ + 0, + 0 + ], + [ + -0.011, + 0.007 + ], + [ + 0, + 0 + ], + [ + -0.003, + -0.004 + ], + [ + 0, + 0 + ], + [ + -0.007, + 0.01 + ], + [ + 0, + 0 + ], + [ + -0.012, + -0.007 + ], + [ + 0, + 0 + ], + [ + 0.004, + -0.003 + ], + [ + 0, + 0 + ], + [ + -0.015, + -0.002 + ], + [ + 0, + 0 + ], + [ + 0.004, + -0.011 + ], + [ + 0, + 0 + ], + [ + 0.005, + 0.002 + ], + [ + 0, + 0 + ], + [ + -0.002, + -0.012 + ], + [ + 0, + 0 + ], + [ + 0.014, + 0 + ], + [ + 0, + 0 + ], + [ + -0.001, + 0.004 + ], + [ + 0, + 0 + ], + [ + 0.013, + -0.005 + ], + [ + 0, + 0 + ], + [ + 0.004, + 0.012 + ] + ], + "v": [ + [ + -116.443, + -19.175 + ], + [ + -116.515, + -19.169 + ], + [ + -116.519, + -19.16 + ], + [ + -116.467, + -19.116 + ], + [ + -116.471, + -19.086 + ], + [ + -116.529, + -19.052 + ], + [ + -116.563, + -19.057 + ], + [ + -116.604, + -19.111 + ], + [ + -116.615, + -19.111 + ], + [ + -116.652, + -19.056 + ], + [ + -116.688, + -19.05 + ], + [ + -116.745, + -19.086 + ], + [ + -116.747, + -19.115 + ], + [ + -116.695, + -19.158 + ], + [ + -116.699, + -19.167 + ], + [ + -116.768, + -19.175 + ], + [ + -116.787, + -19.2 + ], + [ + -116.764, + -19.259 + ], + [ + -116.731, + -19.271 + ], + [ + -116.665, + -19.244 + ], + [ + -116.656, + -19.25 + ], + [ + -116.665, + -19.309 + ], + [ + -116.642, + -19.331 + ], + [ + -116.572, + -19.331 + ], + [ + -116.548, + -19.309 + ], + [ + -116.558, + -19.247 + ], + [ + -116.549, + -19.241 + ], + [ + -116.476, + -19.269 + ], + [ + -116.443, + -19.256 + ], + [ + -116.423, + -19.2 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 56, + "s": [ + { + "i": [ + [ + 0.021, + -0.002 + ], + [ + 0, + 0 + ], + [ + -0.005, + -0.005 + ], + [ + 0, + 0 + ], + [ + 0.016, + -0.01 + ], + [ + 0, + 0 + ], + [ + 0.01, + 0.014 + ], + [ + 0, + 0 + ], + [ + 0.003, + -0.005 + ], + [ + 0, + 0 + ], + [ + 0.016, + 0.01 + ], + [ + 0, + 0 + ], + [ + -0.014, + 0.012 + ], + [ + 0, + 0 + ], + [ + 0.008, + 0.001 + ], + [ + 0, + 0 + ], + [ + -0.006, + 0.016 + ], + [ + 0, + 0 + ], + [ + -0.018, + -0.007 + ], + [ + 0, + 0 + ], + [ + 0.001, + 0.006 + ], + [ + 0, + 0 + ], + [ + -0.02, + 0 + ], + [ + 0, + 0 + ], + [ + 0.003, + -0.016 + ], + [ + 0, + 0 + ], + [ + -0.007, + 0.002 + ], + [ + 0, + 0 + ], + [ + -0.006, + -0.016 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -0.008, + 0.001 + ], + [ + 0, + 0 + ], + [ + 0.014, + 0.012 + ], + [ + 0, + 0 + ], + [ + -0.016, + 0.009 + ], + [ + 0, + 0 + ], + [ + -0.004, + -0.005 + ], + [ + 0, + 0 + ], + [ + -0.01, + 0.014 + ], + [ + 0, + 0 + ], + [ + -0.016, + -0.01 + ], + [ + 0, + 0 + ], + [ + 0.005, + -0.004 + ], + [ + 0, + 0 + ], + [ + -0.02, + -0.002 + ], + [ + 0, + 0 + ], + [ + 0.006, + -0.016 + ], + [ + 0, + 0 + ], + [ + 0.007, + 0.003 + ], + [ + 0, + 0 + ], + [ + -0.003, + -0.017 + ], + [ + 0, + 0 + ], + [ + 0.02, + 0 + ], + [ + 0, + 0 + ], + [ + -0.001, + 0.006 + ], + [ + 0, + 0 + ], + [ + 0.018, + -0.007 + ], + [ + 0, + 0 + ], + [ + 0.006, + 0.017 + ] + ], + "v": [ + [ + -52.846, + -6.188 + ], + [ + -52.946, + -6.179 + ], + [ + -52.951, + -6.166 + ], + [ + -52.88, + -6.105 + ], + [ + -52.884, + -6.063 + ], + [ + -52.965, + -6.015 + ], + [ + -53.012, + -6.023 + ], + [ + -53.068, + -6.099 + ], + [ + -53.084, + -6.098 + ], + [ + -53.136, + -6.022 + ], + [ + -53.184, + -6.013 + ], + [ + -53.263, + -6.063 + ], + [ + -53.267, + -6.104 + ], + [ + -53.194, + -6.164 + ], + [ + -53.2, + -6.177 + ], + [ + -53.295, + -6.187 + ], + [ + -53.322, + -6.223 + ], + [ + -53.29, + -6.305 + ], + [ + -53.245, + -6.321 + ], + [ + -53.153, + -6.285 + ], + [ + -53.14, + -6.293 + ], + [ + -53.154, + -6.375 + ], + [ + -53.121, + -6.406 + ], + [ + -53.024, + -6.406 + ], + [ + -52.992, + -6.375 + ], + [ + -53.005, + -6.289 + ], + [ + -52.992, + -6.281 + ], + [ + -52.891, + -6.319 + ], + [ + -52.846, + -6.302 + ], + [ + -52.818, + -6.223 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 63, + "s": [ + { + "i": [ + [ + 2.476, + -0.212 + ], + [ + 0, + 0 + ], + [ + -0.64, + -0.552 + ], + [ + 0, + 0 + ], + [ + 1.977, + -1.179 + ], + [ + 0, + 0 + ], + [ + 1.206, + 1.632 + ], + [ + 0, + 0 + ], + [ + 0.413, + -0.61 + ], + [ + 0, + 0 + ], + [ + 1.916, + 1.202 + ], + [ + 0, + 0 + ], + [ + -1.731, + 1.424 + ], + [ + 0, + 0 + ], + [ + 0.908, + 0.103 + ], + [ + 0, + 0 + ], + [ + -0.753, + 1.967 + ], + [ + 0, + 0 + ], + [ + -2.172, + -0.872 + ], + [ + 0, + 0 + ], + [ + 0.116, + 0.727 + ], + [ + 0, + 0 + ], + [ + -2.402, + 0 + ], + [ + 0, + 0 + ], + [ + 0.312, + -1.987 + ], + [ + 0, + 0 + ], + [ + -0.787, + 0.297 + ], + [ + 0, + 0 + ], + [ + -0.687, + -1.926 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -0.915, + 0.078 + ], + [ + 0, + 0 + ], + [ + 1.69, + 1.458 + ], + [ + 0, + 0 + ], + [ + -1.869, + 1.114 + ], + [ + 0, + 0 + ], + [ + -0.44, + -0.596 + ], + [ + 0, + 0 + ], + [ + -1.178, + 1.743 + ], + [ + 0, + 0 + ], + [ + -1.943, + -1.218 + ], + [ + 0, + 0 + ], + [ + 0.653, + -0.537 + ], + [ + 0, + 0 + ], + [ + -2.449, + -0.275 + ], + [ + 0, + 0 + ], + [ + 0.734, + -1.917 + ], + [ + 0, + 0 + ], + [ + 0.791, + 0.317 + ], + [ + 0, + 0 + ], + [ + -0.32, + -1.99 + ], + [ + 0, + 0 + ], + [ + 2.398, + 0 + ], + [ + 0, + 0 + ], + [ + -0.112, + 0.715 + ], + [ + 0, + 0 + ], + [ + 2.191, + -0.828 + ], + [ + 0, + 0 + ], + [ + 0.711, + 1.994 + ] + ], + "v": [ + [ + -18.642, + -2.657 + ], + [ + -30.597, + -1.636 + ], + [ + -31.277, + -0.08 + ], + [ + -22.692, + 7.325 + ], + [ + -23.238, + 12.333 + ], + [ + -32.963, + 18.13 + ], + [ + -38.645, + 17.172 + ], + [ + -45.36, + 8.085 + ], + [ + -47.257, + 8.115 + ], + [ + -53.501, + 17.352 + ], + [ + -59.339, + 18.374 + ], + [ + -68.859, + 12.408 + ], + [ + -69.262, + 7.389 + ], + [ + -60.563, + 0.236 + ], + [ + -61.189, + -1.333 + ], + [ + -72.669, + -2.618 + ], + [ + -75.922, + -6.917 + ], + [ + -72.142, + -16.786 + ], + [ + -66.643, + -18.764 + ], + [ + -55.64, + -14.348 + ], + [ + -54.071, + -15.301 + ], + [ + -55.659, + -25.174 + ], + [ + -51.725, + -28.933 + ], + [ + -40.079, + -28.933 + ], + [ + -36.143, + -25.184 + ], + [ + -37.776, + -14.801 + ], + [ + -36.23, + -13.842 + ], + [ + -24.055, + -18.444 + ], + [ + -18.616, + -16.37 + ], + [ + -15.242, + -6.904 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 70, + "s": [ + { + "i": [ + [ + 3.669, + -0.424 + ], + [ + 0, + 0 + ], + [ + -0.949, + -1.106 + ], + [ + 0, + 0 + ], + [ + 2.929, + -2.361 + ], + [ + 0, + 0 + ], + [ + 1.788, + 3.27 + ], + [ + 0, + 0 + ], + [ + 0.611, + -1.222 + ], + [ + 0, + 0 + ], + [ + 2.84, + 2.406 + ], + [ + 0, + 0 + ], + [ + -2.565, + 2.851 + ], + [ + 0, + 0 + ], + [ + 1.346, + 0.204 + ], + [ + 0, + 0 + ], + [ + -1.116, + 3.939 + ], + [ + 0, + 0 + ], + [ + -3.218, + -1.746 + ], + [ + 0, + 0 + ], + [ + 0.173, + 1.454 + ], + [ + 0, + 0 + ], + [ + -3.56, + 0 + ], + [ + 0, + 0 + ], + [ + 0.463, + -3.979 + ], + [ + 0, + 0 + ], + [ + -1.166, + 0.596 + ], + [ + 0, + 0 + ], + [ + -1.017, + -3.858 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -1.356, + 0.157 + ], + [ + 0, + 0 + ], + [ + 2.504, + 2.919 + ], + [ + 0, + 0 + ], + [ + -2.77, + 2.232 + ], + [ + 0, + 0 + ], + [ + -0.653, + -1.194 + ], + [ + 0, + 0 + ], + [ + -1.746, + 3.491 + ], + [ + 0, + 0 + ], + [ + -2.879, + -2.439 + ], + [ + 0, + 0 + ], + [ + 0.968, + -1.076 + ], + [ + 0, + 0 + ], + [ + -3.629, + -0.55 + ], + [ + 0, + 0 + ], + [ + 1.088, + -3.841 + ], + [ + 0, + 0 + ], + [ + 1.171, + 0.635 + ], + [ + 0, + 0 + ], + [ + -0.474, + -3.985 + ], + [ + 0, + 0 + ], + [ + 3.553, + 0 + ], + [ + 0, + 0 + ], + [ + -0.167, + 1.433 + ], + [ + 0, + 0 + ], + [ + 3.247, + -1.659 + ], + [ + 0, + 0 + ], + [ + 1.053, + 3.993 + ] + ], + "v": [ + [ + -11.273, + -32.29 + ], + [ + -28.989, + -30.243 + ], + [ + -29.996, + -27.126 + ], + [ + -17.275, + -12.293 + ], + [ + -18.083, + -2.261 + ], + [ + -32.494, + 9.352 + ], + [ + -40.915, + 7.433 + ], + [ + -50.866, + -10.771 + ], + [ + -53.676, + -10.709 + ], + [ + -62.93, + 7.793 + ], + [ + -71.58, + 9.84 + ], + [ + -85.688, + -2.112 + ], + [ + -86.285, + -12.163 + ], + [ + -73.395, + -26.493 + ], + [ + -74.323, + -29.635 + ], + [ + -91.335, + -32.211 + ], + [ + -96.155, + -40.822 + ], + [ + -90.553, + -60.591 + ], + [ + -82.404, + -64.555 + ], + [ + -66.099, + -55.708 + ], + [ + -63.775, + -57.616 + ], + [ + -66.127, + -77.395 + ], + [ + -60.297, + -84.924 + ], + [ + -43.039, + -84.924 + ], + [ + -37.207, + -77.414 + ], + [ + -39.627, + -56.615 + ], + [ + -37.336, + -54.694 + ], + [ + -19.295, + -63.913 + ], + [ + -11.234, + -59.756 + ], + [ + -6.234, + -40.796 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 77, + "s": [ + { + "i": [ + [ + 2.869, + -0.293 + ], + [ + 0, + 0 + ], + [ + -0.742, + -0.766 + ], + [ + 0, + 0 + ], + [ + 2.291, + -1.634 + ], + [ + 0, + 0 + ], + [ + 1.398, + 2.264 + ], + [ + 0, + 0 + ], + [ + 0.478, + -0.846 + ], + [ + 0, + 0 + ], + [ + 2.221, + 1.666 + ], + [ + 0, + 0 + ], + [ + -2.006, + 1.974 + ], + [ + 0, + 0 + ], + [ + 1.052, + 0.141 + ], + [ + 0, + 0 + ], + [ + -0.873, + 2.727 + ], + [ + 0, + 0 + ], + [ + -2.517, + -1.209 + ], + [ + 0, + 0 + ], + [ + 0.135, + 1.007 + ], + [ + 0, + 0 + ], + [ + -2.784, + 0 + ], + [ + 0, + 0 + ], + [ + 0.362, + -2.755 + ], + [ + 0, + 0 + ], + [ + -0.912, + 0.413 + ], + [ + 0, + 0 + ], + [ + -0.796, + -2.671 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -1.061, + 0.108 + ], + [ + 0, + 0 + ], + [ + 1.958, + 2.021 + ], + [ + 0, + 0 + ], + [ + -2.166, + 1.545 + ], + [ + 0, + 0 + ], + [ + -0.51, + -0.827 + ], + [ + 0, + 0 + ], + [ + -1.365, + 2.417 + ], + [ + 0, + 0 + ], + [ + -2.251, + -1.689 + ], + [ + 0, + 0 + ], + [ + 0.757, + -0.745 + ], + [ + 0, + 0 + ], + [ + -2.838, + -0.381 + ], + [ + 0, + 0 + ], + [ + 0.851, + -2.659 + ], + [ + 0, + 0 + ], + [ + 0.916, + 0.44 + ], + [ + 0, + 0 + ], + [ + -0.371, + -2.759 + ], + [ + 0, + 0 + ], + [ + 2.779, + 0 + ], + [ + 0, + 0 + ], + [ + -0.13, + 0.992 + ], + [ + 0, + 0 + ], + [ + 2.539, + -1.149 + ], + [ + 0, + 0 + ], + [ + 0.823, + 2.764 + ] + ], + "v": [ + [ + -13.552, + -23.726 + ], + [ + -27.407, + -22.309 + ], + [ + -28.194, + -20.151 + ], + [ + -18.246, + -9.882 + ], + [ + -18.878, + -2.937 + ], + [ + -30.148, + 5.103 + ], + [ + -36.734, + 3.775 + ], + [ + -44.515, + -8.828 + ], + [ + -46.713, + -8.786 + ], + [ + -53.95, + 4.024 + ], + [ + -60.715, + 5.441 + ], + [ + -71.748, + -2.834 + ], + [ + -72.215, + -9.792 + ], + [ + -62.134, + -19.713 + ], + [ + -62.86, + -21.888 + ], + [ + -76.164, + -23.672 + ], + [ + -79.933, + -29.633 + ], + [ + -75.552, + -43.32 + ], + [ + -69.179, + -46.064 + ], + [ + -56.429, + -39.939 + ], + [ + -54.611, + -41.26 + ], + [ + -56.45, + -54.954 + ], + [ + -51.891, + -60.167 + ], + [ + -38.395, + -60.167 + ], + [ + -33.834, + -54.967 + ], + [ + -35.727, + -40.567 + ], + [ + -33.935, + -39.238 + ], + [ + -19.826, + -45.62 + ], + [ + -13.521, + -42.742 + ], + [ + -9.611, + -29.616 + ] + ], + "c": true + } + ] + }, + { + "t": 84, + "s": [ + { + "i": [ + [ + 2.869, + -0.293 + ], + [ + 0, + 0 + ], + [ + -0.742, + -0.766 + ], + [ + 0, + 0 + ], + [ + 2.291, + -1.634 + ], + [ + 0, + 0 + ], + [ + 1.398, + 2.264 + ], + [ + 0, + 0 + ], + [ + 0.478, + -0.846 + ], + [ + 0, + 0 + ], + [ + 2.221, + 1.666 + ], + [ + 0, + 0 + ], + [ + -2.006, + 1.974 + ], + [ + 0, + 0 + ], + [ + 1.052, + 0.141 + ], + [ + 0, + 0 + ], + [ + -0.873, + 2.727 + ], + [ + 0, + 0 + ], + [ + -2.517, + -1.209 + ], + [ + 0, + 0 + ], + [ + 0.135, + 1.007 + ], + [ + 0, + 0 + ], + [ + -2.784, + 0 + ], + [ + 0, + 0 + ], + [ + 0.362, + -2.755 + ], + [ + 0, + 0 + ], + [ + -0.912, + 0.413 + ], + [ + 0, + 0 + ], + [ + -0.796, + -2.671 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + -1.061, + 0.108 + ], + [ + 0, + 0 + ], + [ + 1.958, + 2.021 + ], + [ + 0, + 0 + ], + [ + -2.166, + 1.545 + ], + [ + 0, + 0 + ], + [ + -0.51, + -0.827 + ], + [ + 0, + 0 + ], + [ + -1.365, + 2.417 + ], + [ + 0, + 0 + ], + [ + -2.251, + -1.689 + ], + [ + 0, + 0 + ], + [ + 0.757, + -0.745 + ], + [ + 0, + 0 + ], + [ + -2.838, + -0.381 + ], + [ + 0, + 0 + ], + [ + 0.851, + -2.659 + ], + [ + 0, + 0 + ], + [ + 0.916, + 0.44 + ], + [ + 0, + 0 + ], + [ + -0.371, + -2.759 + ], + [ + 0, + 0 + ], + [ + 2.779, + 0 + ], + [ + 0, + 0 + ], + [ + -0.13, + 0.992 + ], + [ + 0, + 0 + ], + [ + 2.539, + -1.149 + ], + [ + 0, + 0 + ], + [ + 0.823, + 2.764 + ] + ], + "v": [ + [ + -13.552, + -23.726 + ], + [ + -27.407, + -22.309 + ], + [ + -28.194, + -20.151 + ], + [ + -18.246, + -9.882 + ], + [ + -18.878, + -2.937 + ], + [ + -30.148, + 5.103 + ], + [ + -36.734, + 3.775 + ], + [ + -44.515, + -8.828 + ], + [ + -46.713, + -8.786 + ], + [ + -53.95, + 4.024 + ], + [ + -60.715, + 5.441 + ], + [ + -71.748, + -2.834 + ], + [ + -72.215, + -9.792 + ], + [ + -62.134, + -19.713 + ], + [ + -62.86, + -21.888 + ], + [ + -76.164, + -23.672 + ], + [ + -79.933, + -29.633 + ], + [ + -75.552, + -43.32 + ], + [ + -69.179, + -46.064 + ], + [ + -56.429, + -39.939 + ], + [ + -54.611, + -41.26 + ], + [ + -56.45, + -54.954 + ], + [ + -51.891, + -60.167 + ], + [ + -38.395, + -60.167 + ], + [ + -33.834, + -54.967 + ], + [ + -35.727, + -40.567 + ], + [ + -33.935, + -39.238 + ], + [ + -19.826, + -45.62 + ], + [ + -13.521, + -42.742 + ], + [ + -9.611, + -29.616 + ] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 3", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ind": 3, + "ty": "sh", + "ix": 4, + "ks": { + "a": 1, + "k": [ + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.28, + "y": 0 + }, + "t": 45, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0.03, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -16.251 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 16.251 + ] + ], + "o": [ + [ + 0, + -16.251 + ], + [ + 0, + 0 + ], + [ + -0.03, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.03, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + -139.497, + -118.659 + ], + [ + -139.551, + -148.083 + ], + [ + -140.089, + -148.083 + ], + [ + -140.143, + -118.659 + ], + [ + -140.143, + 56.579 + ], + [ + -140.143, + 157.111 + ], + [ + -140.014, + 91.768 + ], + [ + -139.547, + 91.768 + ], + [ + -139.493, + 62.344 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 50, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 18.288, + 1.034 + ], + [ + 0, + 0 + ], + [ + 2.406, + -13.769 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 16.348 + ] + ], + "o": [ + [ + 0, + -16.348 + ], + [ + 0, + 0 + ], + [ + -8.573, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 18.882, + -1.372 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 20.438, + -111.866 + ], + [ + -9.288, + -139.942 + ], + [ + -116.448, + -143.529 + ], + [ + -129.598, + -113.45 + ], + [ + -162.95, + 52.399 + ], + [ + -185.809, + 165.932 + ], + [ + -151.835, + 100.481 + ], + [ + -8.106, + 100.82 + ], + [ + 21.493, + 70.218 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 52, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 17.431, + 0.627 + ], + [ + 0, + 0 + ], + [ + 1.458, + -13.649 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 15.212 + ] + ], + "o": [ + [ + 0, + -15.212 + ], + [ + 0, + 0 + ], + [ + -11.543, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 17.792, + -0.832 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 95.887, + -99.713 + ], + [ + 66.378, + -126.333 + ], + [ + -123.929, + -129.356 + ], + [ + -149.819, + -102.087 + ], + [ + -160.581, + 58.617 + ], + [ + -167.821, + 158.663 + ], + [ + -113.962, + 97.753 + ], + [ + 67.875, + 97.873 + ], + [ + 97.308, + 69.722 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 63, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 16.113, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -13.465 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 13.465 + ] + ], + "o": [ + [ + 0, + -13.465 + ], + [ + 0, + 0 + ], + [ + -16.113, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 16.113, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 211.98, + -81.013 + ], + [ + 182.805, + -105.393 + ], + [ + -110.967, + -105.393 + ], + [ + -140.143, + -81.013 + ], + [ + -140.143, + 64.182 + ], + [ + -140.143, + 147.479 + ], + [ + -55.685, + 93.554 + ], + [ + 184.788, + 93.338 + ], + [ + 213.964, + 68.958 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 72, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 15.155, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -17.119 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 17.119 + ] + ], + "o": [ + [ + 0, + -17.119 + ], + [ + 0, + 0 + ], + [ + -15.155, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 15.155, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 191.037, + -133.389 + ], + [ + 163.597, + -164.386 + ], + [ + -112.702, + -164.386 + ], + [ + -140.143, + -133.389 + ], + [ + -140.143, + 51.209 + ], + [ + -140.143, + 157.111 + ], + [ + -74.095, + 88.278 + ], + [ + 165.462, + 88.278 + ], + [ + 192.902, + 57.282 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 79, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 16.251, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -16.251 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 16.251 + ] + ], + "o": [ + [ + 0, + -16.251 + ], + [ + 0, + 0 + ], + [ + -16.251, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 16.251, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 214.983, + -118.659 + ], + [ + 185.558, + -148.083 + ], + [ + -110.718, + -148.083 + ], + [ + -140.143, + -118.659 + ], + [ + -140.143, + 56.579 + ], + [ + -140.143, + 157.111 + ], + [ + -69.319, + 91.768 + ], + [ + 187.558, + 91.768 + ], + [ + 216.983, + 62.344 + ] + ], + "c": true + } + ] + }, + { + "t": 86, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 16.251, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -16.251 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 16.251 + ] + ], + "o": [ + [ + 0, + -16.251 + ], + [ + 0, + 0 + ], + [ + -16.251, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 16.251, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 214.983, + -118.659 + ], + [ + 185.558, + -148.083 + ], + [ + -110.718, + -148.083 + ], + [ + -140.143, + -118.659 + ], + [ + -140.143, + 56.579 + ], + [ + -140.143, + 157.111 + ], + [ + -69.319, + 91.768 + ], + [ + 187.558, + 91.768 + ], + [ + 216.983, + 62.344 + ] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 4", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [ + 0.388235300779, + 0.662745118141, + 0.878431379795, + 1 + ], + "ix": 4 + }, + "o": { + "a": 0, + "k": 100, + "ix": 5 + }, + "r": 1, + "bm": 0, + "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": "Group 1", + "np": 5, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 180, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 4, + "ty": 4, + "nm": "Phone", + "parent": 2, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 1, + "k": [ + { + "i": { + "x": [ + 0.3 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.4 + ], + "y": [ + 0 + ] + }, + "t": 1, + "s": [ + 0 + ] + }, + { + "i": { + "x": [ + 0.5 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.28 + ], + "y": [ + 0 + ] + }, + "t": 10, + "s": [ + -1 + ] + }, + { + "i": { + "x": [ + 0.4 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.28 + ], + "y": [ + 0 + ] + }, + "t": 19, + "s": [ + 2 + ] + }, + { + "i": { + "x": [ + 0.466 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.373 + ], + "y": [ + 0 + ] + }, + "t": 25, + "s": [ + 0 + ] + }, + { + "i": { + "x": [ + 0.1 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.28 + ], + "y": [ + 0 + ] + }, + "t": 49, + "s": [ + 0 + ] + }, + { + "i": { + "x": [ + 0.74 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.3 + ], + "y": [ + 0 + ] + }, + "t": 62, + "s": [ + 7 + ] + }, + { + "i": { + "x": [ + 0.7 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.26 + ], + "y": [ + 0 + ] + }, + "t": 70, + "s": [ + -4 + ] + }, + { + "i": { + "x": [ + 0.7 + ], + "y": [ + 1 + ] + }, + "o": { + "x": [ + 0.3 + ], + "y": [ + 0 + ] + }, + "t": 77, + "s": [ + 2 + ] + }, + { + "t": 82, + "s": [ + 0 + ] + } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { + "x": 0.3, + "y": 1 + }, + "o": { + "x": 0.4, + "y": 0 + }, + "t": 0, + "s": [ + 12.894, + 327.917, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.5, + "y": 1 + }, + "o": { + "x": 0.28, + "y": 0 + }, + "t": 9, + "s": [ + 12.894, + 283.969, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.4, + "y": 1 + }, + "o": { + "x": 0.28, + "y": 0 + }, + "t": 18, + "s": [ + 13.421, + 328.534, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.305, + "y": 0 + }, + "t": 25, + "s": [ + 17.231, + 295.755, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 29, + "s": [ + 17.526, + 300.585, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 33, + "s": [ + 17.498, + 291.999, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 37, + "s": [ + 17.519, + 300.317, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 41, + "s": [ + 17.498, + 291.999, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.725, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 45, + "s": [ + 17.533, + 300.451, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.28, + "y": 0 + }, + "t": 49, + "s": [ + 17.231, + 295.755, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "i": { + "x": 0.72, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 60, + "s": [ + 69.256, + 312.97, + 0 + ], + "to": [ + 0, + 0, + 0 + ], + "ti": [ + 0, + 0, + 0 + ] + }, + { + "t": 68, + "s": [ + 44.038, + 297.917, + 0 + ] + } + ], + "ix": 2 + }, + "a": { + "a": 0, + "k": [ + -80.661, + 238.917, + 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.3, + "y": 1 + }, + "o": { + "x": 0.4, + "y": 0 + }, + "t": 0, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 14.224, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0.162 + ], + [ + 0, + 0 + ], + [ + -11.576, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.162 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 27.874, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.185 + ], + [ + 0, + 0 + ], + [ + -17.629, + 0 + ], + [ + 0, + 0 + ], + [ + 1.08, + 0.243 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 0.162 + ], + [ + 0, + 0 + ], + [ + -11.576, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -0.162 + ], + [ + 0, + 0 + ], + [ + 11.576, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 1.058, + -0.222 + ], + [ + 0, + 0 + ], + [ + -18.962, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0.263 + ], + [ + 0, + 0 + ], + [ + 25.874, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 34.342, + 238.367 + ], + [ + 34.42, + 238.158 + ], + [ + 18.459, + 238.452 + ], + [ + -179.839, + 238.452 + ], + [ + -195.8, + 238.212 + ], + [ + -195.8, + 237.994 + ], + [ + -179.839, + 237.781 + ], + [ + 18.459, + 237.781 + ], + [ + 34.42, + 238.021 + ], + [ + 34.662, + 238.412 + ], + [ + 55.168, + 238.409 + ], + [ + 54.603, + 237.803 + ], + [ + 16.642, + 237.316 + ], + [ + -183.022, + 237.316 + ], + [ + -216.983, + 237.735 + ], + [ + -216.983, + 238.457 + ], + [ + -181.022, + 238.917 + ], + [ + 16.642, + 238.917 + ], + [ + 55.603, + 238.389 + ], + [ + 55.055, + 238.36 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.5, + "y": 1 + }, + "o": { + "x": 0.28, + "y": 0 + }, + "t": 9, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 10.06, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 11.663 + ], + [ + 0, + 0 + ], + [ + -8.188, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -11.663 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 23.032, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -14.033 + ], + [ + 0, + 0 + ], + [ + -14.566, + 0 + ], + [ + 0, + 0 + ], + [ + 0.893, + 18.42 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 11.663 + ], + [ + 0, + 0 + ], + [ + -8.188, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -11.663 + ], + [ + 0, + 0 + ], + [ + 8.188, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0.874, + -16.874 + ], + [ + 0, + 0 + ], + [ + -15.668, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 19.967 + ], + [ + 0, + 0 + ], + [ + 21.379, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 0.822, + -35.614 + ], + [ + 0.822, + 171.119 + ], + [ + -10.467, + 192.236 + ], + [ + -150.725, + 192.236 + ], + [ + -162.015, + 175.02 + ], + [ + -162.015, + -191.763 + ], + [ + -150.725, + -207.027 + ], + [ + -10.467, + -207.027 + ], + [ + 0.822, + -189.812 + ], + [ + 0.822, + -19.52 + ], + [ + 31.459, + -20.47 + ], + [ + 31.192, + -216.758 + ], + [ + -0.174, + -253.737 + ], + [ + -165.15, + -253.737 + ], + [ + -193.211, + -221.913 + ], + [ + -193.211, + 204 + ], + [ + -163.497, + 238.917 + ], + [ + -0.174, + 238.917 + ], + [ + 32.018, + 198.845 + ], + [ + 31.63, + -37.738 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.72, + "y": 1 + }, + "o": { + "x": 0.28, + "y": 0 + }, + "t": 18, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 15.219, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 11.498 + ], + [ + 0, + 0 + ], + [ + -12.387, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -11.498 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 29.826, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -13.089 + ], + [ + 0, + 0 + ], + [ + -18.863, + 0 + ], + [ + 0, + 0 + ], + [ + 1.156, + 17.18 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 11.498 + ], + [ + 0, + 0 + ], + [ + -12.387, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -11.498 + ], + [ + 0, + 0 + ], + [ + 12.387, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 1.132, + -15.738 + ], + [ + 0, + 0 + ], + [ + -20.29, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 18.623 + ], + [ + 0, + 0 + ], + [ + 27.686, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 42.442, + -18.638 + ], + [ + 42.442, + 185.183 + ], + [ + 25.363, + 206.002 + ], + [ + -186.819, + 206.002 + ], + [ + -203.897, + 189.029 + ], + [ + -203.897, + -172.588 + ], + [ + -186.819, + -187.638 + ], + [ + 25.363, + -187.638 + ], + [ + 42.442, + -170.665 + ], + [ + 42.442, + -2.771 + ], + [ + 64.383, + -3.012 + ], + [ + 64.037, + -186.089 + ], + [ + 23.419, + -220.579 + ], + [ + -190.225, + -220.579 + ], + [ + -226.563, + -190.897 + ], + [ + -226.563, + 206.35 + ], + [ + -188.085, + 238.917 + ], + [ + 23.419, + 238.917 + ], + [ + 65.107, + 201.542 + ], + [ + 64.604, + -19.118 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.72, + "y": 1 + }, + "o": { + "x": 0.28, + "y": 0 + }, + "t": 27, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 14.224, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 11.957 + ], + [ + 0, + 0 + ], + [ + -11.576, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -11.957 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 27.874, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -13.611 + ], + [ + 0, + 0 + ], + [ + -17.629, + 0 + ], + [ + 0, + 0 + ], + [ + 1.08, + 17.866 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 11.957 + ], + [ + 0, + 0 + ], + [ + -11.576, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -11.957 + ], + [ + 0, + 0 + ], + [ + 11.576, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 1.058, + -16.366 + ], + [ + 0, + 0 + ], + [ + -18.962, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 19.366 + ], + [ + 0, + 0 + ], + [ + 25.874, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 34.42, + -28.917 + ], + [ + 34.42, + 183.038 + ], + [ + 18.459, + 204.689 + ], + [ + -179.839, + 204.689 + ], + [ + -195.8, + 187.038 + ], + [ + -195.8, + -189.01 + ], + [ + -179.839, + -204.661 + ], + [ + 18.459, + -204.661 + ], + [ + 34.42, + -187.01 + ], + [ + 34.42, + -12.417 + ], + [ + 54.926, + -12.667 + ], + [ + 54.603, + -203.051 + ], + [ + 16.642, + -238.917 + ], + [ + -183.022, + -238.917 + ], + [ + -216.983, + -208.051 + ], + [ + -216.983, + 205.051 + ], + [ + -181.022, + 238.917 + ], + [ + 16.642, + 238.917 + ], + [ + 55.603, + 200.051 + ], + [ + 55.133, + -29.415 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.833, + "y": 0.833 + }, + "o": { + "x": 0.28, + "y": 0 + }, + "t": 48, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 14.224, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 11.957 + ], + [ + 0, + 0 + ], + [ + -11.576, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -11.957 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 27.874, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -13.611 + ], + [ + 0, + 0 + ], + [ + -17.629, + 0 + ], + [ + 0, + 0 + ], + [ + 1.08, + 17.866 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 11.957 + ], + [ + 0, + 0 + ], + [ + -11.576, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -11.957 + ], + [ + 0, + 0 + ], + [ + 11.576, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 1.058, + -16.366 + ], + [ + 0, + 0 + ], + [ + -18.962, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 19.366 + ], + [ + 0, + 0 + ], + [ + 25.874, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 34.42, + -28.917 + ], + [ + 34.42, + 183.038 + ], + [ + 18.459, + 204.689 + ], + [ + -179.839, + 204.689 + ], + [ + -195.8, + 187.038 + ], + [ + -195.8, + -189.01 + ], + [ + -179.839, + -204.661 + ], + [ + 18.459, + -204.661 + ], + [ + 34.42, + -187.01 + ], + [ + 34.42, + -12.417 + ], + [ + 54.926, + -12.667 + ], + [ + 54.603, + -203.051 + ], + [ + 16.642, + -238.917 + ], + [ + -183.022, + -238.917 + ], + [ + -216.983, + -208.051 + ], + [ + -216.983, + 205.051 + ], + [ + -181.022, + 238.917 + ], + [ + 16.642, + 238.917 + ], + [ + 55.603, + 200.051 + ], + [ + 55.133, + -29.415 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.1, + "y": 1 + }, + "o": { + "x": 0.167, + "y": 0.167 + }, + "t": 52, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 13.66, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 12.051 + ], + [ + 0, + 0 + ], + [ + -11.118, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -12.051 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 26.77, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -13.718 + ], + [ + 0, + 0 + ], + [ + -16.93, + 0 + ], + [ + 0, + 0 + ], + [ + 1.037, + 18.006 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 12.051 + ], + [ + 0, + 0 + ], + [ + -11.118, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -12.051 + ], + [ + 0, + 0 + ], + [ + 11.118, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 1.016, + -16.494 + ], + [ + 0, + 0 + ], + [ + -18.211, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 19.518 + ], + [ + 0, + 0 + ], + [ + 24.849, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 30.321, + -9.17 + ], + [ + 29.88, + 182.6 + ], + [ + 14.552, + 204.421 + ], + [ + -175.889, + 204.421 + ], + [ + -191.217, + 186.632 + ], + [ + -191.217, + -192.363 + ], + [ + -175.889, + -208.136 + ], + [ + 14.552, + -208.136 + ], + [ + 29.88, + -190.347 + ], + [ + 30.003, + -6.309 + ], + [ + 49.696, + -6.561 + ], + [ + 49.263, + -206.513 + ], + [ + 12.806, + -242.66 + ], + [ + -178.946, + -242.66 + ], + [ + -211.561, + -211.552 + ], + [ + -211.561, + 204.785 + ], + [ + -177.025, + 238.917 + ], + [ + 12.806, + 238.917 + ], + [ + 50.223, + 199.746 + ], + [ + 50.213, + -9.673 + ] + ], + "c": true + } + ] + }, + { + "i": { + "x": 0.7, + "y": 1 + }, + "o": { + "x": 0.3, + "y": 0 + }, + "t": 62, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 13.743, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 12.13 + ], + [ + 0, + 0 + ], + [ + -11.185, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -12.13 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 26.932, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -13.808 + ], + [ + 0, + 0 + ], + [ + -17.032, + 0 + ], + [ + 0, + 0 + ], + [ + 1.044, + 18.124 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 12.13 + ], + [ + 0, + 0 + ], + [ + -11.185, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -12.13 + ], + [ + 0, + 0 + ], + [ + 11.185, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 1.022, + -16.602 + ], + [ + 0, + 0 + ], + [ + -18.321, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 19.646 + ], + [ + 0, + 0 + ], + [ + 24.999, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 29.991, + 43.193 + ], + [ + 30.545, + 182.231 + ], + [ + 15.124, + 204.194 + ], + [ + -176.468, + 204.194 + ], + [ + -191.889, + 186.289 + ], + [ + -191.889, + -195.191 + ], + [ + -176.468, + -211.067 + ], + [ + 15.124, + -211.067 + ], + [ + 30.545, + -193.162 + ], + [ + 30.379, + -23.949 + ], + [ + 50.192, + -24.203 + ], + [ + 50.045, + -209.434 + ], + [ + 13.368, + -245.818 + ], + [ + -179.543, + -245.818 + ], + [ + -212.355, + -214.506 + ], + [ + -212.355, + 204.561 + ], + [ + -177.61, + 238.917 + ], + [ + 13.368, + 238.917 + ], + [ + 51.011, + 199.489 + ], + [ + 50.003, + 42.687 + ] + ], + "c": true + } + ] + }, + { + "t": 70, + "s": [ + { + "i": [ + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 14.224, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 11.957 + ], + [ + 0, + 0 + ], + [ + -11.576, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -11.957 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 27.874, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -13.611 + ], + [ + 0, + 0 + ], + [ + -17.629, + 0 + ], + [ + 0, + 0 + ], + [ + 1.08, + 17.866 + ], + [ + 0, + 0 + ] + ], + "o": [ + [ + 0, + 0 + ], + [ + 0, + 11.957 + ], + [ + 0, + 0 + ], + [ + -11.576, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + -11.957 + ], + [ + 0, + 0 + ], + [ + 11.576, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ], + [ + 1.058, + -16.366 + ], + [ + 0, + 0 + ], + [ + -18.962, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 19.366 + ], + [ + 0, + 0 + ], + [ + 25.874, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 0 + ] + ], + "v": [ + [ + 34.42, + 21.083 + ], + [ + 34.42, + 183.038 + ], + [ + 18.459, + 204.689 + ], + [ + -179.839, + 204.689 + ], + [ + -195.8, + 187.038 + ], + [ + -195.8, + -189.01 + ], + [ + -179.839, + -204.661 + ], + [ + 18.459, + -204.661 + ], + [ + 34.42, + -187.01 + ], + [ + 34.42, + -72.417 + ], + [ + 54.926, + -72.667 + ], + [ + 54.603, + -203.051 + ], + [ + 16.642, + -238.917 + ], + [ + -183.022, + -238.917 + ], + [ + -216.983, + -208.051 + ], + [ + -216.983, + 205.051 + ], + [ + -181.022, + 238.917 + ], + [ + 16.642, + 238.917 + ], + [ + 55.603, + 200.051 + ], + [ + 55.133, + 20.585 + ] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [ + 0.388235300779, + 0.658823549747, + 0.874509811401, + 1 + ], + "ix": 4 + }, + "o": { + "a": 0, + "k": 100, + "ix": 5 + }, + "r": 1, + "bm": 0, + "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": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 180, + "st": 0, + "bm": 0 + } + ], + "markers": [] +} \ No newline at end of file diff --git a/TMessagesProj/src/main/res/raw/utyan_gigagroup.tgs b/TMessagesProj/src/main/res/raw/utyan_gigagroup.tgs new file mode 100644 index 000000000..a7c24c8c9 --- /dev/null +++ b/TMessagesProj/src/main/res/raw/utyan_gigagroup.tgs @@ -0,0 +1 @@ +{"tgs":1,"v":"5.5.2.2","fr":60,"ip":0,"op":150,"w":512,"h":512,"nm":"21_MEGAPHN_OUT","ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Layer 2","sr":1,"ks":{"p":{"a":0,"k":[250.255,389.665,0]},"a":{"a":0,"k":[-5.745,130.665,0]},"s":{"a":0,"k":[97,97,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.893,1.158],[-2.299,0.06],[-0.732,-0.579],[-0.081,-0.468],[0.081,-0.835],[2.025,-10.677],[1.633,-0.162],[3.438,2.189],[5.221,3.343],[-3.439,3.547],[-0.303,1.273],[0.357,0.31],[0.381,-0.088],[16.647,-11.21],[1.979,0.025],[3.121,0.972],[-0.265,2.083]],"o":[[17.817,-7.798],[0.506,-0.013],[0.618,0.489],[0.081,0.468],[-0.92,9.525],[-0.857,4.518],[-3.549,0.352],[-5.379,-3.426],[-6.034,-3.864],[0.9,-0.928],[0.038,-0.159],[-0.357,-0.31],[-0.54,0.125],[-2.439,1.67],[-2.182,-0.028],[-3.827,-1.192],[0.138,-1.085]],"v":[[-39.47,130.286],[18.97,106.463],[21.338,107.142],[22.208,108.765],[22.31,111.133],[15.386,154.465],[11.209,160.672],[1.528,156.226],[-12.112,147.321],[-10.795,137.724],[6.045,121.38],[5.761,120.318],[4.495,120.209],[-21.284,137.211],[-27.912,139.679],[-37.412,137.547],[-44.017,133.65]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.992156863213,0.709803938866,0.388235300779,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Path-3","bm":0,"hd":false}],"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Layer 1","sr":1,"ks":{"p":{"a":0,"k":[250.454,393.811,0]},"a":{"a":0,"k":[-5.546,137.811,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.587,4.831],[-2.988,4.102]],"o":[[1.616,-4.919],[2.789,-3.828]],"v":[[-52.364,115.183],[-45.388,101.583]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156863213,0.709803938866,0.388235300779,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.752,2.885],[-11.268,0],[-4.611,-1.432]],"o":[[8.309,-6.39],[5.076,0],[20.065,6.232]],"v":[[-35.521,91.457],[-5.546,81.265],[9.04,83.468]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156863213,0.709803938866,0.388235300779,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-33.494],[33.494,0],[0,33.494],[-33.494,0]],"o":[[0,33.494],[-33.494,0],[0,-33.494],[33.494,0]],"v":[[55.099,130.529],[-5.546,191.174],[-66.192,130.529],[-5.546,69.883]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.509803950787,0.180392161012,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.768627464771,0.372549027205,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-33.494],[33.494,0],[0,33.494],[-33.494,0]],"o":[[0,33.494],[-33.494,0],[0,-33.494],[33.494,0]],"v":[[55.099,145.094],[-5.546,205.74],[-66.192,145.094],[-5.546,84.448]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.717647058824,0.400000029919,0.074509803922,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.717647058824,0.4,0.074509803922,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false}],"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"tumba 2","sr":1,"ks":{"p":{"a":0,"k":[251.191,394.738,0]},"a":{"a":0,"k":[917.434,804.129,0]},"s":{"a":0,"k":[47,47,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-45.752,-170.362],[-48.434,131.449]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.568627476692,0.262745112181,0.050980392843,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22.222},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[1199.993,830.554]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":22},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[44.113,-101.249],[44.113,110.844]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.956862747669,0.72549021244,0.443137258291,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22.222},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[636.641,772.708]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-265.04,-0.267],[268.929,0]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.956862747669,0.72549021244,0.443137258291,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22.222},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[894.189,576.315]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[312.174,26.492],[-312.174,26.492],[-312.01,-34.825],[312.338,-34.825]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.568627476692,0.262745112181,0.050980392843,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22.222},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.866666674614,0.537254929543,0.098039217293,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[917.434,588.807]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[258.892,27.732],[-258.892,27.732],[-258.892,-27.732],[258.892,-27.732]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.568627476692,0.262745112181,0.050980392843,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[917.434,620.103]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":50},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[919.76,813.637]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 6","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"fl","c":{"a":0,"k":[0.0941176489,0.466666668653,0.949019610882,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[917.434,784.944]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 7","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[256.203,164.036],[-261.582,164.036],[-258.892,-226.786],[258.892,-226.786]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.568627476692,0.262745112181,0.050980392843,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22.222},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.866666674614,0.537254929543,0.098039217293,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[917.434,819.157]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 8","bm":0,"hd":false}],"ip":0,"op":338,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"hand_r 7","parent":5,"sr":1,"ks":{"p":{"a":0,"k":[-57.465,46.264,0]},"a":{"a":0,"k":[-57.465,46.264,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[2.258,-76.143],[-0.562,-25.34]],"o":[[-0.699,23.585],[0.394,17.747]],"v":[[-346.166,-52.394],[-347.336,-3.469]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[-43.559,-62.493],[-23.677,-2.853]],"o":[[18.811,26.988],[12.772,1.539]],"v":[[-396.198,-16.679],[-331.113,25.858]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":330,"s":[{"i":[[-43.559,-62.493],[-24.217,-2.31]],"o":[[19.174,27.508],[12.358,1.179]],"v":[[-390.879,-44.339],[-325.487,3.666]],"c":false}]},{"t":360,"s":[{"i":[[34.803,-67.761],[28.111,-25.803]],"o":[[-15.32,29.827],[-14.346,13.168]],"v":[[82.669,-41.485],[19.244,45.271]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":165,"op":210,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"hand_r 5","parent":26,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":90,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":105,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":120,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":150,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":165,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":180,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":330,"s":[0]},{"t":360,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[1023.353,492.438,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[1251.692,485.115,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":120,"s":[1103.907,477.792,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[1103.907,477.792,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[1251.692,485.115,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[1023.353,492.438,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":330,"s":[1023.353,492.438,0],"to":[0,0,0],"ti":[0,0,0]},{"t":360,"s":[1103.907,477.792,0]}]},"a":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0.74},"t":90,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.167,"y":0.167},"t":105,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":120,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0.74},"t":150,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.167,"y":0.167},"t":165,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":180,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":330,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"t":360,"s":[-57.465,46.264,0]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[0,0],[0.766,17.961],[-43.559,-62.493],[-39.75,23.564]],"o":[[-138.041,63.818],[-0.273,-6.395],[28.958,41.546],[0,0]],"v":[[-263.794,77.119],[-428.37,-21.393],[-390.879,-44.339],[-286.762,-6.073]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[0,0],[-8.202,15.998],[-7.024,-75.852],[-3.363,-32.814]],"o":[[0.674,-10.564],[2.92,-5.696],[4.67,50.427],[0,0]],"v":[[-359.13,12.934],[-350.85,-118.948],[-306.918,-120.391],[-288.987,-0.857]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[0,0],[-35.165,37.481],[12.705,-75.109],[112.339,28.027]],"o":[[67.781,40.305],[4.379,-4.668],[-8.447,49.933],[0,0]],"v":[[-61.545,-9.165],[25.497,-59.144],[68.324,-49.249],[-57.242,83.066]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[0,0],[-35.165,37.481],[12.705,-75.109],[112.339,28.027]],"o":[[67.781,40.305],[4.379,-4.668],[-8.447,49.933],[0,0]],"v":[[-61.545,-9.165],[25.497,-59.144],[68.324,-49.249],[-57.242,83.066]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[-8.202,15.998],[-7.024,-75.852],[-18.843,-26.172]],"o":[[-22.055,-70.317],[2.92,-5.696],[4.67,50.427],[0,0]],"v":[[-358.591,49.589],[-350.85,-118.948],[-306.918,-120.391],[-269.03,30.071]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[0,0],[0.766,17.961],[-43.559,-62.493],[-39.75,23.564]],"o":[[-138.041,63.818],[-0.273,-6.395],[28.958,41.546],[0,0]],"v":[[-263.794,77.119],[-428.37,-21.393],[-390.879,-44.339],[-286.762,-6.073]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":330,"s":[{"i":[[0,0],[0.766,17.961],[-43.559,-62.493],[-39.75,23.564]],"o":[[-138.041,63.818],[-0.273,-6.395],[28.958,41.546],[0,0]],"v":[[-263.794,77.119],[-428.37,-21.393],[-390.879,-44.339],[-286.762,-6.073]],"c":false}]},{"t":360,"s":[{"i":[[0,0],[-44.846,25.106],[34.803,-67.761],[56.32,-28.16]],"o":[[48.972,-15.595],[5.585,-3.127],[-23.137,45.048],[0,0]],"v":[[-92.639,5.271],[44.832,-63.857],[82.669,-41.485],[-30.591,79.735]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.980392158031,0.564705908298,0.086274512112,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.835294127464,0.152941182256,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":165,"op":210,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"hand_r 6","parent":7,"sr":1,"ks":{"p":{"a":0,"k":[-57.465,46.264,0]},"a":{"a":0,"k":[-57.465,46.264,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[-43.559,-62.493],[-23.677,-2.853]],"o":[[18.811,26.988],[12.772,1.539]],"v":[[-396.198,-16.679],[-331.113,25.858]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[2.258,-76.143],[-0.562,-25.34]],"o":[[-0.699,23.585],[0.394,17.747]],"v":[[-346.166,-52.394],[-347.336,-3.469]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[2.258,-76.143],[-0.562,-25.34]],"o":[[-0.699,23.585],[0.394,17.747]],"v":[[-346.166,-52.394],[-347.336,-3.469]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[-43.559,-62.493],[-23.677,-2.853]],"o":[[18.811,26.988],[12.772,1.539]],"v":[[-396.198,-16.679],[-331.113,25.858]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":330,"s":[{"i":[[-43.559,-62.493],[-24.217,-2.31]],"o":[[19.174,27.508],[12.358,1.179]],"v":[[-390.879,-44.339],[-325.487,3.666]],"c":false}]},{"t":360,"s":[{"i":[[34.803,-67.761],[28.111,-25.803]],"o":[[-15.32,29.827],[-14.346,13.168]],"v":[[82.669,-41.485],[19.244,45.271]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":45,"op":105,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"hand_r 3","parent":26,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":90,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":105,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":120,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":150,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":165,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":180,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":330,"s":[0]},{"t":360,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[1023.353,492.438,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[1251.692,485.115,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":120,"s":[1103.907,477.792,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[1103.907,477.792,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[1251.692,485.115,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[1023.353,492.438,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":330,"s":[1023.353,492.438,0],"to":[0,0,0],"ti":[0,0,0]},{"t":360,"s":[1103.907,477.792,0]}]},"a":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0.74},"t":90,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.167,"y":0.167},"t":105,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":120,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0.74},"t":150,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.167,"y":0.167},"t":165,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":180,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":330,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"t":360,"s":[-57.465,46.264,0]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[0,0],[0.766,17.961],[-43.559,-62.493],[-39.75,23.564]],"o":[[-138.041,63.818],[-0.273,-6.395],[28.958,41.546],[0,0]],"v":[[-263.794,77.119],[-428.37,-21.393],[-390.879,-44.339],[-286.762,-6.073]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[0,0],[-8.202,15.998],[-7.024,-75.852],[-18.843,-26.172]],"o":[[-22.055,-70.317],[2.92,-5.696],[4.67,50.427],[0,0]],"v":[[-358.591,49.589],[-350.85,-118.948],[-306.918,-120.391],[-269.03,30.071]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[0,0],[-35.165,37.481],[12.705,-75.109],[112.339,28.027]],"o":[[67.781,40.305],[4.379,-4.668],[-8.447,49.933],[0,0]],"v":[[-61.545,-9.165],[25.497,-59.144],[68.324,-49.249],[-57.242,83.066]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[0,0],[-35.165,37.481],[12.705,-75.109],[112.339,28.027]],"o":[[67.781,40.305],[4.379,-4.668],[-8.447,49.933],[0,0]],"v":[[-61.545,-9.165],[25.497,-59.144],[68.324,-49.249],[-57.242,83.066]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[-8.202,15.998],[-7.024,-75.852],[-3.363,-32.814]],"o":[[0.674,-10.564],[2.92,-5.696],[4.67,50.427],[0,0]],"v":[[-359.13,12.934],[-350.85,-118.948],[-306.918,-120.391],[-288.987,-0.857]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[0,0],[0.766,17.961],[-43.559,-62.493],[-39.75,23.564]],"o":[[-138.041,63.818],[-0.273,-6.395],[28.958,41.546],[0,0]],"v":[[-263.794,77.119],[-428.37,-21.393],[-390.879,-44.339],[-286.762,-6.073]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":330,"s":[{"i":[[0,0],[0.766,17.961],[-43.559,-62.493],[-39.75,23.564]],"o":[[-138.041,63.818],[-0.273,-6.395],[28.958,41.546],[0,0]],"v":[[-263.794,77.119],[-428.37,-21.393],[-390.879,-44.339],[-286.762,-6.073]],"c":false}]},{"t":360,"s":[{"i":[[0,0],[-44.846,25.106],[34.803,-67.761],[56.32,-28.16]],"o":[[48.972,-15.595],[5.585,-3.127],[-23.137,45.048],[0,0]],"v":[[-92.639,5.271],[44.832,-63.857],[82.669,-41.485],[-30.591,79.735]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.980392158031,0.564705908298,0.086274512112,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.835294127464,0.152941182256,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":45,"op":105,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"hand_l 2","parent":26,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":100,"s":[125.986]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[296.897]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":152,"s":[296.897]},{"t":167,"s":[125.986]}]},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.74,"y":0},"t":91,"s":[678.198,459.699,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[733.477,427.747,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":123,"s":[733.07,459.699,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":150,"s":[733.07,459.699,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.333,"y":0},"t":165,"s":[720.948,459.699,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":179,"s":[678.198,459.699,0],"to":[0,0,0],"ti":[0,0,0]},{"t":330,"s":[678.198,459.699,0]}]},"a":{"a":0,"k":[1033.466,522.223,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.74,"y":0},"t":95,"s":[{"i":[[-27.189,4.382],[-7.415,3.155]],"o":[[27.189,-4.382],[7.415,-3.155]],"v":[[-53.269,23.863],[15.251,12.408]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[{"i":[[-26.059,6.238],[-7.848,3.016]],"o":[[26.059,-6.238],[17.818,-6.848]],"v":[[-43.831,33.176],[18.526,8.085]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":120,"s":[{"i":[[-23.956,10.636],[-23.501,2.998]],"o":[[31.057,-13.789],[8.883,-1.133]],"v":[[-39.73,29.967],[39.769,2.316]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":126,"s":[{"i":[[-23.956,10.636],[-23.501,2.998]],"o":[[31.057,-13.789],[8.883,-1.133]],"v":[[-33.78,7.885],[32.667,-11.358]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":154,"s":[{"i":[[-23.956,10.636],[-23.501,2.998]],"o":[[31.057,-13.789],[8.883,-1.133]],"v":[[-33.78,7.885],[32.667,-11.358]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":169,"s":[{"i":[[-25.244,5.453],[-7.261,4.456]],"o":[[25.338,-5.473],[7.074,-4.447]],"v":[[-37.413,37.6],[23.228,14.974]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":183,"s":[{"i":[[-27.189,4.382],[-7.415,3.155]],"o":[[27.189,-4.382],[7.415,-3.155]],"v":[[-53.269,23.863],[15.251,12.408]],"c":false}]},{"t":330,"s":[{"i":[[-27.189,4.382],[-7.415,3.155]],"o":[[27.189,-4.382],[7.415,-3.155]],"v":[[-49.366,29.237],[15.251,12.408]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":97.5,"s":[5]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":123,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":147.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":175.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":185,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":197.5,"s":[5]},{"t":210,"s":[0]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[95]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":97.5,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":123,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":147.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":175.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":185,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":197.5,"s":[100]},{"t":210,"s":[95]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[1073.115,462.063]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.74,"y":0},"t":95,"s":[{"i":[[0,0],[-25.299,7.284],[17.069,-29.209],[64.952,-7.027]],"o":[[49.681,2.503],[2.732,-0.786],[-9.24,15.813],[0,0]],"v":[[-114.726,-13.03],[15.029,-29.257],[34.112,-13.663],[-81.645,36.377]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[{"i":[[0,0],[-34.083,9.813],[22.995,-39.351],[64.631,-5.932]],"o":[[38.719,-0.311],[3.68,-1.06],[-12.448,21.303],[0,0]],"v":[[-99.376,-20.266],[13.144,-32.345],[38.854,-11.338],[-84.477,52.317]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":118,"s":[{"i":[[0,0],[-37.965,8.46],[57.572,-35.965],[14.784,-12.49]],"o":[[62.966,-34.491],[46.165,-10.287],[-24.261,15.156],[0,0]],"v":[[-152.947,43.584],[38.06,-29.058],[53.381,9.694],[-65.417,85.028]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":126,"s":[{"i":[[0,0],[-44.33,-4.975],[63.869,-22.995],[-20.556,-28.714]],"o":[[-34.818,-65.658],[47.002,5.275],[-29.198,10.512],[0,0]],"v":[[-116.472,51.837],[21.591,-37.981],[32.872,2.224],[-25.264,71.137]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":154,"s":[{"i":[[0,0],[-44.33,-4.975],[63.869,-22.995],[-20.556,-28.714]],"o":[[-34.818,-65.658],[47.002,5.275],[-29.198,10.512],[0,0]],"v":[[-116.472,51.836],[21.591,-37.981],[32.872,2.224],[-25.265,71.137]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.333,"y":0},"t":168,"s":[{"i":[[0,0],[-43.358,7.999],[31.097,-39.744],[43.269,-15.408]],"o":[[25.469,1.162],[4.682,-0.864],[-16.835,21.516],[0,0]],"v":[[-85.695,-17.037],[12.161,-32.014],[46.114,-1.367],[-49.015,54.942]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":183,"s":[{"i":[[0,0],[-25.299,7.284],[17.069,-29.209],[64.952,-7.027]],"o":[[49.681,2.503],[2.732,-0.786],[-9.24,15.813],[0,0]],"v":[[-114.726,-13.03],[15.029,-29.257],[34.112,-13.663],[-81.645,36.377]],"c":false}]},{"t":330,"s":[{"i":[[0,0],[-25.299,7.284],[17.069,-29.209],[64.952,-7.027]],"o":[[49.681,2.503],[2.732,-0.786],[-9.24,15.813],[0,0]],"v":[[-110.823,-7.656],[15.029,-29.257],[34.112,-13.663],[-77.743,41.751]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.980392158031,0.564705908298,0.086274512112,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.835294127464,0.152941182256,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[1097.859,466.351]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":0,"op":338,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Layer 53","parent":11,"sr":1,"ks":{"o":{"a":0,"k":44},"p":{"a":0,"k":[1155.362,405.059,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[9.667,-13.59],[-10.478,1.976],[-0.47,19.238],[3.077,17.334],[11.812,3.148],[0.519,-21.247]],"o":[[11.952,-2.568],[2.545,-17.106],[0.47,-19.239],[-10.369,-2.484],[8.521,13.376],[-0.519,21.246]],"v":[[100.312,57.514],[136.21,58.204],[143.069,7.054],[140.353,-44.73],[108.67,-46.499],[117.456,8.363]],"c":true}]},{"t":105,"s":[{"i":[[35.197,-2.683],[-10.478,1.976],[-0.47,19.238],[6.443,12.379],[33.001,3.41],[-0.33,-21.35]],"o":[[33.747,-5.109],[41.656,-5.896],[0.47,-19.239],[-4.676,-4.6],[42.702,-2.39],[0.665,43.065]],"v":[[93.243,68.644],[101.814,67.519],[144.9,4.185],[135.708,-34.594],[94.18,-58.602],[145.734,5.479]],"c":true}],"h":1},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":106,"s":[{"i":[[-41.145,-2.683],[12.249,1.976],[0.549,19.239],[-7.531,12.379],[-38.577,3.41],[0.385,-21.35]],"o":[[-39.45,-5.109],[-48.695,-5.896],[-0.549,-19.239],[5.466,-4.6],[-49.918,-2.39],[-0.777,43.065]],"v":[[73.439,68.656],[63.42,67.53],[13.053,4.197],[23.798,-34.583],[72.344,-58.591],[12.079,5.49]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":112,"s":[{"i":[[-11.914,-15.095],[-4.95,1.976],[-0.222,19.238],[-7.053,14.835],[7.402,-1.517],[0.486,-21.272]],"o":[[5.928,0.133],[-16.483,-13.498],[0.222,-19.239],[-6.518,-2.999],[-14.751,13.751],[-0.582,26.553]],"v":[[2.405,58.848],[28.383,57.24],[9.382,1.449],[23.125,-52.142],[1.192,-54.695],[-11.889,1.251]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[-2.52,-19.084],[-10.478,1.976],[-0.47,19.238],[-6.9,15.624],[11.812,3.148],[0.519,-21.247]],"o":[[11.952,-2.568],[-6.129,-15.942],[0.47,-19.239],[-10.37,-2.484],[-3.448,18.939],[-0.519,21.246]],"v":[[-16.464,60.666],[17.122,53.933],[8.201,0.566],[19.715,-52.302],[-13.502,-60.666],[-19.592,-0.112]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[-2.52,-19.084],[-10.478,1.976],[-0.47,19.238],[-6.9,15.624],[11.812,3.148],[0.519,-21.247]],"o":[[11.952,-2.568],[-6.129,-15.942],[0.47,-19.239],[-10.37,-2.484],[-3.448,18.939],[-0.519,21.246]],"v":[[-16.464,60.666],[17.122,53.933],[8.201,0.566],[19.715,-52.302],[-13.502,-60.666],[-19.592,-0.112]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":158,"s":[{"i":[[-11.914,-15.095],[-4.95,1.976],[-0.222,19.238],[-7.053,14.835],[7.402,-1.517],[0.486,-21.272]],"o":[[5.928,0.133],[-16.483,-13.498],[0.222,-19.239],[-6.518,-2.999],[-14.751,13.751],[-0.582,26.553]],"v":[[2.405,58.848],[28.383,57.24],[9.382,1.449],[23.125,-52.142],[1.192,-54.695],[-11.889,1.251]],"c":true}]},{"t":164,"s":[{"i":[[-41.145,-2.683],[12.249,1.976],[0.549,19.239],[-7.531,12.379],[-38.577,3.41],[0.385,-21.35]],"o":[[-39.45,-5.109],[-48.695,-5.896],[-0.549,-19.239],[5.466,-4.6],[-49.918,-2.39],[-0.777,43.065]],"v":[[73.439,68.656],[63.42,67.53],[13.053,4.197],[23.798,-34.583],[72.344,-58.591],[12.079,5.49]],"c":true}],"h":1},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[35.197,-2.683],[-10.478,1.976],[-0.47,19.238],[6.443,12.379],[33.001,3.41],[-0.33,-21.35]],"o":[[33.747,-5.109],[41.656,-5.896],[0.47,-19.239],[-4.676,-4.6],[42.702,-2.39],[0.665,43.065]],"v":[[93.243,68.644],[101.814,67.519],[144.9,4.185],[135.708,-34.594],[94.18,-58.602],[145.734,5.479]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[9.667,-13.59],[-10.478,1.976],[-0.47,19.238],[3.077,17.334],[11.812,3.148],[0.519,-21.247]],"o":[[11.952,-2.568],[2.545,-17.106],[0.47,-19.239],[-10.369,-2.484],[8.521,13.376],[-0.519,21.246]],"v":[[100.312,57.514],[136.21,58.204],[143.069,7.054],[140.353,-44.73],[108.67,-46.499],[117.456,8.363]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":330,"s":[{"i":[[9.667,-13.59],[-10.478,1.976],[-0.47,19.238],[3.077,17.334],[11.812,3.148],[0.519,-21.247]],"o":[[11.952,-2.568],[2.545,-17.106],[0.47,-19.239],[-10.369,-2.484],[8.521,13.376],[-0.519,21.246]],"v":[[100.312,57.514],[136.21,58.204],[143.069,7.054],[140.353,-44.73],[108.67,-46.499],[117.456,8.363]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":345,"s":[{"i":[[35.197,-2.683],[-10.478,1.976],[-0.47,19.238],[6.443,12.379],[33.001,3.41],[-0.33,-21.35]],"o":[[33.747,-5.109],[41.656,-5.896],[0.47,-19.239],[-4.676,-4.6],[42.702,-2.39],[0.665,43.065]],"v":[[-146.991,67.539],[-138.42,66.414],[-95.334,3.08],[-104.526,-35.699],[-146.054,-59.707],[-94.5,4.374]],"c":true}]},{"t":360,"s":[{"i":[[-2.52,-19.084],[-10.478,1.976],[-0.47,19.238],[-6.9,15.624],[11.812,3.148],[0.519,-21.247]],"o":[[11.952,-2.568],[-6.129,-15.942],[0.47,-19.239],[-10.37,-2.484],[-3.448,18.939],[-0.519,21.246]],"v":[[-16.464,60.666],[17.122,53.933],[8.201,0.566],[19.715,-52.302],[-13.502,-60.666],[-19.592,-0.112]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.188235297799,0.639215707779,0.901960790157,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-120,"op":540,"st":-120,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"Layer 52","parent":11,"sr":1,"ks":{"p":{"a":0,"k":[1185.362,405.059,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[5.448,45.25],[0,0],[9.441,-9.181],[0.519,-21.247],[-8.439,-8.721],[-16.667,3.062],[0,0]],"o":[[0,0],[-22.348,1.965],[-5.917,5.754],[-0.519,21.247],[8.439,8.721],[0,0],[9.091,-40.004]],"v":[[111.772,-45.429],[76.213,-46.836],[29.709,-31.149],[17.719,2.121],[31.497,40.305],[107.956,61.813],[107.956,61.812]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[34.312,24.122],[18.198,-0.075],[15.563,-11.909],[2.047,-31.078],[-14.571,-10.557],[-22.268,9.071],[0,0]],"o":[[-7.953,-5.591],[-14.319,0.059],[-11.354,8.689],[-1.911,29.012],[20.056,14.531],[0,0],[36.564,-15.76]],"v":[[90.813,-51.823],[53.609,-62.392],[9.643,-49.819],[-12.659,2.888],[9.529,57.154],[87.087,62.293],[87.358,62.292]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[51.452,12.074],[0,0],[20.62,5.495],[0.519,-21.247],[-2.52,-19.085],[-16.667,3.062],[0,0]],"o":[[0,0],[-16.498,-3.871],[-3.448,18.939],[-0.519,21.247],[20.863,-4.482],[0,0],[51.982,-9.55]],"v":[[11.979,-47.077],[11.979,-47.078],[-43.387,-60.668],[-49.477,-0.112],[-46.349,60.668],[9.615,49.795],[9.615,49.795]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[51.452,12.074],[0,0],[20.62,5.495],[0.519,-21.247],[-2.52,-19.085],[-16.667,3.062],[0,0]],"o":[[0,0],[-16.498,-3.871],[-3.448,18.939],[-0.519,21.247],[20.863,-4.482],[0,0],[51.982,-9.55]],"v":[[11.979,-47.077],[11.979,-47.078],[-43.387,-60.668],[-49.477,-0.112],[-46.349,60.668],[9.615,49.795],[9.615,49.795]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[34.312,24.122],[18.198,-0.075],[15.563,-11.909],[2.047,-31.078],[-14.571,-10.557],[-22.268,9.071],[0,0]],"o":[[-7.953,-5.591],[-14.319,0.059],[-11.354,8.689],[-1.911,29.012],[20.056,14.531],[0,0],[36.564,-15.76]],"v":[[90.813,-51.823],[53.609,-62.392],[9.643,-49.819],[-12.659,2.888],[9.529,57.154],[87.087,62.293],[87.358,62.292]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[5.448,45.25],[0,0],[9.441,-9.181],[0.519,-21.247],[-8.439,-8.721],[-16.667,3.062],[0,0]],"o":[[0,0],[-22.348,1.965],[-5.917,5.754],[-0.519,21.247],[8.439,8.721],[0,0],[9.091,-40.004]],"v":[[111.772,-45.429],[76.213,-46.836],[29.709,-31.149],[17.719,2.121],[31.497,40.305],[107.956,61.813],[107.956,61.812]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":330,"s":[{"i":[[5.448,45.25],[0,0],[9.441,-9.181],[0.519,-21.247],[-8.439,-8.721],[-16.667,3.062],[0,0]],"o":[[0,0],[-22.348,1.965],[-5.917,5.754],[-0.519,21.247],[8.439,8.721],[0,0],[9.091,-40.004]],"v":[[111.772,-45.429],[76.213,-46.836],[29.709,-31.149],[17.719,2.121],[31.497,40.305],[107.956,61.813],[107.956,61.812]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":345,"s":[{"i":[[34.312,24.122],[18.198,-0.075],[15.563,-11.909],[2.047,-31.078],[-14.571,-10.557],[-22.268,9.071],[0,0]],"o":[[-7.953,-5.591],[-14.319,0.059],[-11.354,8.689],[-1.911,29.012],[20.056,14.531],[0,0],[36.564,-15.76]],"v":[[-147.985,-52.057],[-185.19,-62.625],[-229.156,-50.052],[-251.458,2.655],[-229.27,56.92],[-151.712,62.059],[-151.441,62.059]],"c":true}]},{"t":360,"s":[{"i":[[51.452,12.074],[0,0],[20.62,5.495],[0.519,-21.247],[-2.52,-19.085],[-16.667,3.062],[0,0]],"o":[[0,0],[-16.498,-3.871],[-3.448,18.939],[-0.519,21.247],[20.863,-4.482],[0,0],[51.982,-9.55]],"v":[[11.979,-47.077],[11.979,-47.078],[-43.387,-60.668],[-49.477,-0.112],[-46.349,60.668],[9.615,49.795],[9.615,49.795]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.188235297799,0.639215707779,0.901960790157,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-120,"op":540,"st":-120,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"mega_circ","parent":26,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.74],"y":[0]},"t":90,"s":[11.128]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":105,"s":[-0.142]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":120,"s":[-11.411]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.74],"y":[0]},"t":150,"s":[-11.411]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":165,"s":[-0.142]},{"t":180,"s":[11.128]}]},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[486.415,220.344,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[924.014,194.031,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":120,"s":[1361.649,212.214,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[1361.649,212.214,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[924.014,194.031,0],"to":[0,0,0],"ti":[0,0,0]},{"t":180,"s":[486.415,220.344,0]}]},"a":{"a":0,"k":[1219.362,405.059,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":60,"s":[92,88,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":69.375,"s":[88,92,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":78.75,"s":[92,88,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":88.125,"s":[88,92,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":97.5,"s":[92,88,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":106.875,"s":[88,92,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":116.25,"s":[92,88,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":125.625,"s":[88,92,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":135,"s":[92,88,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":144.375,"s":[88,92,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":153.75,"s":[92,88,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":163.125,"s":[88,92,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":172.5,"s":[92,88,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":181.875,"s":[88,92,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":191.25,"s":[92,88,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":200.625,"s":[88,92,100]},{"t":210,"s":[92,88,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[-35.101,-0.857],[-9.954,-47.666]],"o":[[23.155,0.565],[2.29,10.966]],"v":[[-26.299,-40.22],[26.299,40.22]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[-81.838,-0.857],[-23.207,-47.666]],"o":[[53.985,0.565],[5.339,10.966]],"v":[[-0.627,-37.531],[122.002,42.91]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[-35.101,-0.857],[-9.954,-47.666]],"o":[[23.155,0.565],[2.29,10.966]],"v":[[-26.299,-40.22],[26.299,40.22]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[-35.101,-0.857],[-9.954,-47.666]],"o":[[23.155,0.565],[2.29,10.966]],"v":[[-26.299,-40.22],[26.299,40.22]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[-81.838,-0.857],[-23.207,-47.666]],"o":[[53.985,0.565],[5.339,10.966]],"v":[[-0.627,-37.531],[122.002,42.91]],"c":false}]},{"t":180,"s":[{"i":[[-35.101,-0.857],[-9.954,-47.666]],"o":[[23.155,0.565],[2.29,10.966]],"v":[[-26.299,-40.22],[26.299,40.22]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":97.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":122.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":147.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":172.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":185,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":197.5,"s":[5]},{"t":210,"s":[5]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":97.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":122.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":147.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":172.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":185,"s":[95]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":197.5,"s":[100]},{"t":210,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[1249.634,282.492]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":50},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[-1.209,-12.405],[0.414,-16.954]],"o":[[1.502,15.415],[-0.659,26.992]],"v":[[-0.914,-24.371],[0.788,24.371]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[-2.819,-12.405],[0.965,-16.954]],"o":[[3.503,15.415],[-1.536,26.992]],"v":[[101.826,-21.682],[105.793,27.06]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[-1.209,-12.405],[0.414,-16.954]],"o":[[1.502,15.415],[-0.659,26.992]],"v":[[-0.914,-24.371],[0.788,24.371]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[-1.209,-12.405],[0.414,-16.954]],"o":[[1.502,15.415],[-0.659,26.992]],"v":[[-0.914,-24.371],[0.788,24.371]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[-2.819,-12.405],[0.965,-16.954]],"o":[[3.503,15.415],[-1.536,26.992]],"v":[[101.826,-21.682],[105.793,27.06]],"c":false}]},{"t":180,"s":[{"i":[[-1.209,-12.405],[0.414,-16.954]],"o":[[1.502,15.415],[-0.659,26.992]],"v":[[-0.914,-24.371],[0.788,24.371]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":97.5,"s":[5]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":122.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":147.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":172.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":185,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":197.5,"s":[5]},{"t":210,"s":[0]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[95]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":97.5,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":122.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":147.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":172.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":185,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":197.5,"s":[100]},{"t":210,"s":[95]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[1282.131,382.239]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":50},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[5.087,-22.301],[24.563,0.6]],"o":[[-11.856,51.979],[-35.101,-0.857]],"v":[[29.299,-43.278],[-29.299,43.271]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[11.859,-22.301],[57.268,0.6]],"o":[[-27.641,51.979],[-81.838,-0.857]],"v":[[122.412,-40.589],[-14.208,45.96]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[5.087,-22.301],[24.563,0.6]],"o":[[-11.856,51.979],[-35.101,-0.857]],"v":[[29.299,-43.278],[-29.299,43.271]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[5.087,-22.301],[24.563,0.6]],"o":[[-11.856,51.979],[-35.101,-0.857]],"v":[[29.299,-43.278],[-29.299,43.271]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[11.859,-22.301],[57.268,0.6]],"o":[[-27.641,51.979],[-81.838,-0.857]],"v":[[122.412,-40.589],[-14.208,45.96]],"c":false}]},{"t":180,"s":[{"i":[[5.087,-22.301],[24.563,0.6]],"o":[[-11.856,51.979],[-35.101,-0.857]],"v":[[29.299,-43.278],[-29.299,43.271]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":60,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":97.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":122.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":147.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":172.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":185,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":197.5,"s":[0]},{"t":210,"s":[5]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":97.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":122.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":147.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":172.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":185,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":197.5,"s":[95]},{"t":210,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[1244.688,524.575]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[2.502,-102.492],[46.522,1.136],[-2.502,102.492],[-46.522,-1.136]],"o":[[-2.502,102.492],[-46.522,-1.136],[2.502,-102.492],[46.522,1.136]],"v":[[84.236,2.056],[-4.53,185.579],[-84.236,-2.056],[4.53,-185.579]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[5.432,-102.492],[101.024,1.136],[-5.432,102.492],[-101.024,-1.136]],"o":[[-5.432,102.492],[-101.024,-1.136],[5.432,-102.492],[101.024,1.136]],"v":[[197.052,4.745],[4.295,188.268],[-168.789,0.633],[23.968,-182.89]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[2.502,-102.492],[46.522,1.136],[-2.502,102.492],[-46.522,-1.136]],"o":[[-2.502,102.492],[-46.522,-1.136],[2.502,-102.492],[46.522,1.136]],"v":[[84.236,2.056],[-4.53,185.579],[-84.236,-2.056],[4.53,-185.579]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[2.502,-102.492],[46.522,1.136],[-2.502,102.492],[-46.522,-1.136]],"o":[[-2.502,102.492],[-46.522,-1.136],[2.502,-102.492],[46.522,1.136]],"v":[[84.236,2.056],[-4.53,185.579],[-84.236,-2.056],[4.53,-185.579]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[5.432,-102.492],[101.024,1.136],[-5.432,102.492],[-101.024,-1.136]],"o":[[-5.432,102.492],[-101.024,-1.136],[5.432,-102.492],[101.024,1.136]],"v":[[197.052,4.745],[4.295,188.268],[-168.789,0.633],[23.968,-182.89]],"c":true}]},{"t":180,"s":[{"i":[[2.502,-102.492],[46.522,1.136],[-2.502,102.492],[-46.522,-1.136]],"o":[[-2.502,102.492],[-46.522,-1.136],[2.502,-102.492],[46.522,1.136]],"v":[[84.236,2.056],[-4.53,185.579],[-84.236,-2.056],[4.53,-185.579]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.188235297799,0.639215707779,0.901960790157,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.188,0.639,0.902,0.5,0.516,0.792,0.951,1,0.843,0.945,1]}},"s":{"a":0,"k":[155.646,-203.321]},"e":{"a":0,"k":[147.919,113.256]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[1219.362,405.059]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false}],"ip":-120,"op":540,"st":-120,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Layer 50","parent":17,"sr":1,"ks":{"p":{"a":0,"k":[-59,144,0]},"a":{"a":0,"k":[980.693,549.414,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[0,0],[-3.14,-23.627],[0,0],[0,0],[40.934,12.075]],"o":[[-9.537,19.531],[-27.625,4.706],[0,0],[19.769,-17.489],[0,0]],"v":[[539.998,-73.702],[528.459,54.215],[470.367,62.617],[469.832,43.164],[466.733,-69.841]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":100,"s":[{"i":[[0,0],[-2.067,-23.627],[0,0],[0,0],[26.941,12.075]],"o":[[-6.277,19.531],[-6.451,-4.498],[0,0],[13.011,-17.489],[0,0]],"v":[[445.618,-72.815],[452.38,53.588],[414.147,61.991],[413.795,42.537],[397.398,-68.954]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[0,0],[-0.176,-23.627],[0,0],[0,0],[2.294,12.075]],"o":[[-0.535,19.531],[-1.548,4.706],[0,0],[1.108,-17.489],[0,0]],"v":[[279.381,-71.254],[278.734,56.663],[275.478,65.066],[275.448,45.612],[275.274,-67.393]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":110,"s":[{"i":[[0,0],[1.715,-23.627],[0,0],[0,0],[-22.352,12.075]],"o":[[5.208,19.531],[15.085,4.706],[0,0],[-10.795,-17.489],[0,0]],"v":[[80.428,-69.28],[86.729,58.636],[112.862,66.986],[113.154,47.533],[116.08,-66.576]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[0,0],[2.788,-23.627],[0,0],[0,0],[-36.346,12.075]],"o":[[8.468,19.531],[24.528,4.706],[0,0],[-17.553,-17.489],[0,0]],"v":[[-32.526,-68.16],[-22.28,59.757],[29.299,68.16],[29.774,48.706],[32.526,-64.299]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[0,0],[2.788,-23.627],[0,0],[0,0],[-36.346,12.075]],"o":[[8.468,19.531],[24.528,4.706],[0,0],[-17.553,-17.489],[0,0]],"v":[[-32.526,-68.16],[-22.28,59.757],[29.299,68.16],[29.774,48.706],[32.526,-64.299]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[1.715,-23.627],[0,0],[0,0],[-22.352,12.075]],"o":[[5.208,19.531],[15.085,4.706],[0,0],[-10.795,-17.489],[0,0]],"v":[[80.428,-69.28],[86.729,58.636],[112.862,66.986],[113.154,47.533],[116.08,-66.576]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[-0.176,-23.627],[0,0],[0,0],[2.294,12.075]],"o":[[-0.535,19.531],[-1.548,4.706],[0,0],[1.108,-17.489],[0,0]],"v":[[279.381,-71.254],[278.734,56.663],[275.478,65.066],[275.448,45.612],[275.274,-67.393]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[0,0],[-2.067,-23.627],[0,0],[0,0],[26.941,12.075]],"o":[[-6.277,19.531],[-6.451,-4.498],[0,0],[13.011,-17.489],[0,0]],"v":[[445.618,-72.815],[452.38,53.588],[414.147,61.991],[413.795,42.537],[397.398,-68.954]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[0,0],[-3.14,-23.627],[0,0],[0,0],[40.934,12.075]],"o":[[-9.537,19.531],[-27.625,4.706],[0,0],[19.769,-17.489],[0,0]],"v":[[539.998,-73.702],[528.459,54.215],[470.367,62.617],[469.832,43.164],[466.733,-69.841]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":330,"s":[{"i":[[0,0],[-3.14,-23.627],[0,0],[0,0],[40.934,12.075]],"o":[[-9.537,19.531],[-27.625,4.706],[0,0],[19.769,-17.489],[0,0]],"v":[[539.998,-73.702],[528.459,54.215],[470.367,62.617],[469.832,43.164],[466.733,-69.841]],"c":true}]},{"t":360,"s":[{"i":[[0,0],[2.788,-23.627],[0,0],[0,0],[-36.346,12.075]],"o":[[8.468,19.531],[24.528,4.706],[0,0],[-17.553,-17.489],[0,0]],"v":[[-32.526,-68.16],[-22.28,59.757],[29.299,68.16],[29.774,48.706],[32.526,-64.299]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.490196079016,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.666666686535,0.141176477075,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[969.734,549.414]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[0,0],[0,0],[40.934,12.075],[0,0],[-3.14,-23.627],[0,0]],"o":[[0,0],[19.769,-17.489],[0,0],[-9.537,19.531],[0,0],[0,0]],"v":[[423.44,51.046],[422.905,31.593],[420.131,-69.574],[493.396,-73.435],[481.857,54.482],[448.45,62.35]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":100,"s":[{"i":[[0,0],[0,0],[26.941,12.075],[0,0],[-2.067,-23.627],[0,0]],"o":[[0,0],[13.011,-17.489],[0,0],[-6.277,19.531],[0,0],[0,0]],"v":[[351.853,55.883],[351.501,36.43],[349.675,-64.737],[407.455,-72.548],[414.217,53.856],[392.229,61.723]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[0,0],[0,0],[2.294,12.075],[0,0],[-0.176,-23.627],[0,0]],"o":[[0,0],[1.108,-17.489],[0,0],[-0.535,19.531],[0,0],[0,0]],"v":[[252.159,53.495],[252.129,34.041],[251.973,-67.125],[256.08,-70.986],[255.433,56.931],[253.561,64.798]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":110,"s":[{"i":[[0,0],[0,0],[-22.352,12.075],[0,0],[1.715,-23.627],[0,0]],"o":[[0,0],[-10.795,-17.489],[0,0],[5.208,19.531],[0,0],[0,0]],"v":[[120.787,61.145],[121.079,41.692],[126.975,-63.956],[71.99,-69.013],[78.291,58.904],[90.945,66.719]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[0,0],[0,0],[-36.346,12.075],[0,0],[2.788,-23.627],[0,0]],"o":[[0,0],[-17.553,-17.489],[0,0],[8.468,19.531],[0,0],[0,0]],"v":[[29.588,56.589],[30.063,37.135],[32.526,-64.031],[-32.526,-67.892],[-22.28,60.024],[7.382,67.892]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[0,0],[0,0],[-36.346,12.075],[0,0],[2.788,-23.627],[0,0]],"o":[[0,0],[-17.553,-17.489],[0,0],[8.468,19.531],[0,0],[0,0]],"v":[[29.588,56.589],[30.063,37.135],[32.526,-64.031],[-32.526,-67.892],[-22.28,60.024],[7.382,67.892]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[0,0],[-22.352,12.075],[0,0],[1.715,-23.627],[0,0]],"o":[[0,0],[-10.795,-17.489],[0,0],[5.208,19.531],[0,0],[0,0]],"v":[[120.787,61.145],[121.079,41.692],[126.975,-63.956],[71.99,-69.013],[78.291,58.904],[90.945,66.719]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[0,0],[2.294,12.075],[0,0],[-0.176,-23.627],[0,0]],"o":[[0,0],[1.108,-17.489],[0,0],[-0.535,19.531],[0,0],[0,0]],"v":[[252.159,53.495],[252.129,34.041],[251.973,-67.125],[256.08,-70.986],[255.433,56.931],[253.561,64.798]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[0,0],[0,0],[26.941,12.075],[0,0],[-2.067,-23.627],[0,0]],"o":[[0,0],[13.011,-17.489],[0,0],[-6.277,19.531],[0,0],[0,0]],"v":[[351.853,55.883],[351.501,36.43],[349.675,-64.737],[407.455,-72.548],[414.217,53.856],[392.229,61.723]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[0,0],[0,0],[40.934,12.075],[0,0],[-3.14,-23.627],[0,0]],"o":[[0,0],[19.769,-17.489],[0,0],[-9.537,19.531],[0,0],[0,0]],"v":[[423.44,51.046],[422.905,31.593],[420.131,-69.574],[493.396,-73.435],[481.857,54.482],[448.45,62.35]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":330,"s":[{"i":[[0,0],[0,0],[40.934,12.075],[0,0],[-3.14,-23.627],[0,0]],"o":[[0,0],[19.769,-17.489],[0,0],[-9.537,19.531],[0,0],[0,0]],"v":[[423.44,51.046],[422.905,31.593],[420.131,-69.574],[493.396,-73.435],[481.857,54.482],[448.45,62.35]],"c":true}]},{"t":360,"s":[{"i":[[0,0],[0,0],[-36.346,12.075],[0,0],[2.788,-23.627],[0,0]],"o":[[0,0],[-17.553,-17.489],[0,0],[8.468,19.531],[0,0],[0,0]],"v":[[29.588,56.589],[30.063,37.135],[32.526,-64.031],[-32.526,-67.892],[-22.28,60.024],[7.382,67.892]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.490196079016,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764717102,0.207843139768,0.007843137719,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[991.651,549.681]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":-121,"op":539,"st":-121,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"Layer 54","parent":17,"sr":1,"ks":{"p":{"a":0,"k":[-59,144,0]},"a":{"a":0,"k":[980.693,549.414,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[0,0],[-3.14,-23.627],[0,0],[0,0],[40.934,12.075]],"o":[[-9.537,19.531],[-27.625,4.706],[0,0],[19.769,-17.489],[0,0]],"v":[[539.998,-73.702],[528.459,54.215],[470.367,62.617],[469.832,43.164],[466.733,-69.841]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":100,"s":[{"i":[[0,0],[-2.067,-23.627],[0,0],[0,0],[26.941,12.075]],"o":[[-6.277,19.531],[-6.451,-4.498],[0,0],[13.011,-17.489],[0,0]],"v":[[445.618,-72.815],[452.38,53.588],[414.147,61.991],[413.795,42.537],[397.398,-68.954]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[0,0],[-0.176,-23.627],[0,0],[0,0],[2.294,12.075]],"o":[[-0.535,19.531],[-1.548,4.706],[0,0],[1.108,-17.489],[0,0]],"v":[[279.381,-71.254],[278.734,56.663],[275.478,65.066],[275.448,45.612],[275.274,-67.393]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":110,"s":[{"i":[[0,0],[1.715,-23.627],[0,0],[0,0],[-22.352,12.075]],"o":[[5.208,19.531],[15.085,4.706],[0,0],[-10.795,-17.489],[0,0]],"v":[[80.428,-69.28],[86.729,58.636],[112.862,66.986],[113.154,47.533],[116.08,-66.576]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[0,0],[2.788,-23.627],[0,0],[0,0],[-36.346,12.075]],"o":[[8.468,19.531],[24.528,4.706],[0,0],[-17.553,-17.489],[0,0]],"v":[[-32.526,-68.16],[-22.28,59.757],[29.299,68.16],[29.774,48.706],[32.526,-64.299]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[0,0],[2.788,-23.627],[0,0],[0,0],[-36.346,12.075]],"o":[[8.468,19.531],[24.528,4.706],[0,0],[-17.553,-17.489],[0,0]],"v":[[-32.526,-68.16],[-22.28,59.757],[29.299,68.16],[29.774,48.706],[32.526,-64.299]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[1.715,-23.627],[0,0],[0,0],[-22.352,12.075]],"o":[[5.208,19.531],[15.085,4.706],[0,0],[-10.795,-17.489],[0,0]],"v":[[80.428,-69.28],[86.729,58.636],[112.862,66.986],[113.154,47.533],[116.08,-66.576]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[-0.176,-23.627],[0,0],[0,0],[2.294,12.075]],"o":[[-0.535,19.531],[-1.548,4.706],[0,0],[1.108,-17.489],[0,0]],"v":[[279.381,-71.254],[278.734,56.663],[275.478,65.066],[275.448,45.612],[275.274,-67.393]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[0,0],[-2.067,-23.627],[0,0],[0,0],[26.941,12.075]],"o":[[-6.277,19.531],[-6.451,-4.498],[0,0],[13.011,-17.489],[0,0]],"v":[[445.618,-72.815],[452.38,53.588],[414.147,61.991],[413.795,42.537],[397.398,-68.954]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[0,0],[-3.14,-23.627],[0,0],[0,0],[40.934,12.075]],"o":[[-9.537,19.531],[-27.625,4.706],[0,0],[19.769,-17.489],[0,0]],"v":[[539.998,-73.702],[528.459,54.215],[470.367,62.617],[469.832,43.164],[466.733,-69.841]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":330,"s":[{"i":[[0,0],[-3.14,-23.627],[0,0],[0,0],[40.934,12.075]],"o":[[-9.537,19.531],[-27.625,4.706],[0,0],[19.769,-17.489],[0,0]],"v":[[539.998,-73.702],[528.459,54.215],[470.367,62.617],[469.832,43.164],[466.733,-69.841]],"c":true}]},{"t":360,"s":[{"i":[[0,0],[2.788,-23.627],[0,0],[0,0],[-36.346,12.075]],"o":[[8.468,19.531],[24.528,4.706],[0,0],[-17.553,-17.489],[0,0]],"v":[[-32.526,-68.16],[-22.28,59.757],[29.299,68.16],[29.774,48.706],[32.526,-64.299]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.490196079016,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":25},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.666666686535,0.141176477075,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[969.734,549.414]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[0,0],[0,0],[40.934,12.075],[0,0],[-3.14,-23.627],[0,0]],"o":[[0,0],[19.769,-17.489],[0,0],[-9.537,19.531],[0,0],[0,0]],"v":[[423.44,51.046],[422.905,31.593],[420.131,-69.574],[493.396,-73.435],[481.857,54.482],[448.45,62.35]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":100,"s":[{"i":[[0,0],[0,0],[26.941,12.075],[0,0],[-2.067,-23.627],[0,0]],"o":[[0,0],[13.011,-17.489],[0,0],[-6.277,19.531],[0,0],[0,0]],"v":[[351.853,55.883],[351.501,36.43],[349.675,-64.737],[407.455,-72.548],[414.217,53.856],[392.229,61.723]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[0,0],[0,0],[2.294,12.075],[0,0],[-0.176,-23.627],[0,0]],"o":[[0,0],[1.108,-17.489],[0,0],[-0.535,19.531],[0,0],[0,0]],"v":[[252.159,53.495],[252.129,34.041],[251.973,-67.125],[256.08,-70.986],[255.433,56.931],[253.561,64.798]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":110,"s":[{"i":[[0,0],[0,0],[-22.352,12.075],[0,0],[1.715,-23.627],[0,0]],"o":[[0,0],[-10.795,-17.489],[0,0],[5.208,19.531],[0,0],[0,0]],"v":[[120.787,61.145],[121.079,41.692],[126.975,-63.956],[71.99,-69.013],[78.291,58.904],[90.945,66.719]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[0,0],[0,0],[-36.346,12.075],[0,0],[2.788,-23.627],[0,0]],"o":[[0,0],[-17.553,-17.489],[0,0],[8.468,19.531],[0,0],[0,0]],"v":[[29.588,56.589],[30.063,37.135],[32.526,-64.031],[-32.526,-67.892],[-22.28,60.024],[7.382,67.892]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[0,0],[0,0],[-36.346,12.075],[0,0],[2.788,-23.627],[0,0]],"o":[[0,0],[-17.553,-17.489],[0,0],[8.468,19.531],[0,0],[0,0]],"v":[[29.588,56.589],[30.063,37.135],[32.526,-64.031],[-32.526,-67.892],[-22.28,60.024],[7.382,67.892]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[0,0],[-22.352,12.075],[0,0],[1.715,-23.627],[0,0]],"o":[[0,0],[-10.795,-17.489],[0,0],[5.208,19.531],[0,0],[0,0]],"v":[[120.787,61.145],[121.079,41.692],[126.975,-63.956],[71.99,-69.013],[78.291,58.904],[90.945,66.719]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[0,0],[2.294,12.075],[0,0],[-0.176,-23.627],[0,0]],"o":[[0,0],[1.108,-17.489],[0,0],[-0.535,19.531],[0,0],[0,0]],"v":[[252.159,53.495],[252.129,34.041],[251.973,-67.125],[256.08,-70.986],[255.433,56.931],[253.561,64.798]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[0,0],[0,0],[26.941,12.075],[0,0],[-2.067,-23.627],[0,0]],"o":[[0,0],[13.011,-17.489],[0,0],[-6.277,19.531],[0,0],[0,0]],"v":[[351.853,55.883],[351.501,36.43],[349.675,-64.737],[407.455,-72.548],[414.217,53.856],[392.229,61.723]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[0,0],[0,0],[40.934,12.075],[0,0],[-3.14,-23.627],[0,0]],"o":[[0,0],[19.769,-17.489],[0,0],[-9.537,19.531],[0,0],[0,0]],"v":[[423.44,51.046],[422.905,31.593],[420.131,-69.574],[493.396,-73.435],[481.857,54.482],[448.45,62.35]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":330,"s":[{"i":[[0,0],[0,0],[40.934,12.075],[0,0],[-3.14,-23.627],[0,0]],"o":[[0,0],[19.769,-17.489],[0,0],[-9.537,19.531],[0,0],[0,0]],"v":[[423.44,51.046],[422.905,31.593],[420.131,-69.574],[493.396,-73.435],[481.857,54.482],[448.45,62.35]],"c":true}]},{"t":360,"s":[{"i":[[0,0],[0,0],[-36.346,12.075],[0,0],[2.788,-23.627],[0,0]],"o":[[0,0],[-17.553,-17.489],[0,0],[8.468,19.531],[0,0],[0,0]],"v":[[29.588,56.589],[30.063,37.135],[32.526,-64.031],[-32.526,-67.892],[-22.28,60.024],[7.382,67.892]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.490196079016,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":25},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764717102,0.207843139768,0.007843137719,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[991.651,549.681]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":-121,"op":539,"st":-121,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"hand_r 4","parent":26,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":90,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":105,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":120,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":150,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":165,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":180,"s":[0]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":330,"s":[0]},{"t":360,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[1023.353,492.438,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[1251.692,485.115,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":120,"s":[1103.907,477.792,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[1103.907,477.792,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[1251.692,485.115,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[1023.353,492.438,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":330,"s":[1023.353,492.438,0],"to":[0,0,0],"ti":[0,0,0]},{"t":360,"s":[1103.907,477.792,0]}]},"a":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0.74},"t":90,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.167,"y":0.167},"t":105,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":120,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0.74},"t":150,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.167,"y":0.167},"t":165,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":180,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":330,"s":[-57.465,46.264,0],"to":[0,0,0],"ti":[0,0,0]},{"t":360,"s":[-57.465,46.264,0]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[0,0],[0.766,17.961],[-43.559,-62.493],[-39.75,23.564]],"o":[[-138.041,63.818],[-0.273,-6.395],[28.958,41.546],[0,0]],"v":[[-263.794,77.119],[-428.37,-21.393],[-390.879,-44.339],[-286.762,-6.073]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[0,0],[-8.202,15.998],[-7.024,-75.852],[-18.843,-26.172]],"o":[[-22.055,-70.317],[2.92,-5.696],[4.67,50.427],[0,0]],"v":[[-358.591,49.589],[-350.85,-118.948],[-306.918,-120.391],[-269.03,30.071]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[0,0],[-35.165,37.481],[12.705,-75.109],[112.339,28.027]],"o":[[67.781,40.305],[4.379,-4.668],[-8.447,49.933],[0,0]],"v":[[-61.545,-9.165],[25.497,-59.144],[68.324,-49.249],[-57.242,83.066]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[0,0],[-35.165,37.481],[12.705,-75.109],[112.339,28.027]],"o":[[67.781,40.305],[4.379,-4.668],[-8.447,49.933],[0,0]],"v":[[-61.545,-9.165],[25.497,-59.144],[68.324,-49.249],[-57.242,83.066]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[-8.202,15.998],[-7.024,-75.852],[-18.843,-26.172]],"o":[[-22.055,-70.317],[2.92,-5.696],[4.67,50.427],[0,0]],"v":[[-358.591,49.589],[-350.85,-118.948],[-306.918,-120.391],[-269.03,30.071]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[0,0],[0.766,17.961],[-43.559,-62.493],[-39.75,23.564]],"o":[[-138.041,63.818],[-0.273,-6.395],[28.958,41.546],[0,0]],"v":[[-263.794,77.119],[-428.37,-21.393],[-390.879,-44.339],[-286.762,-6.073]],"c":false}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":330,"s":[{"i":[[0,0],[0.766,17.961],[-43.559,-62.493],[-39.75,23.564]],"o":[[-138.041,63.818],[-0.273,-6.395],[28.958,41.546],[0,0]],"v":[[-263.794,77.119],[-428.37,-21.393],[-390.879,-44.339],[-286.762,-6.073]],"c":false}]},{"t":360,"s":[{"i":[[0,0],[-44.846,25.106],[34.803,-67.761],[56.32,-28.16]],"o":[[48.972,-15.595],[5.585,-3.127],[-23.137,45.048],[0,0]],"v":[[-92.639,5.271],[44.832,-63.857],[82.669,-41.485],[-30.591,79.735]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.980392158031,0.564705908298,0.086274512112,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.835294127464,0.152941182256,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":105,"op":165,"st":0,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"Layer 49","parent":17,"sr":1,"ks":{"p":{"a":0,"k":[-113,-5,0]},"a":{"a":0,"k":[937.605,399.81,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[0,0],[4.542,5.504],[2.668,-1.104],[8.031,-0.205],[0,0],[0,0],[0.366,-2.93],[1.068,-4.912],[-3.761,0.109]],"o":[[23.914,-0.61],[-1.559,-1.889],[-6.284,2.601],[0,0],[0,0],[-2.826,0.085],[-0.679,5.432],[-0.834,3.835],[10.423,-0.302]],"v":[[567.843,14.913],[598.416,-16.966],[591.603,-18.715],[570.134,-14.362],[570.134,-14.361],[545.592,-13.623],[540.055,-8.393],[537.086,8.311],[542.851,15.668]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":100,"s":[{"i":[[0,0],[2.86,5.504],[1.68,-1.104],[5.057,-0.205],[0,0],[0,0],[0.231,-2.93],[0.672,-4.912],[-2.368,0.109]],"o":[[15.057,-0.61],[-0.982,-1.889],[-3.957,2.601],[0,0],[0,0],[-1.779,0.085],[-0.428,5.432],[-0.525,3.835],[6.563,-0.302]],"v":[[482.081,15.019],[501.331,-16.86],[497.041,-18.608],[483.524,-14.256],[483.524,-14.255],[479.386,-13.949],[475.9,-8.719],[474.03,7.986],[477.66,15.342]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[0,0],[-0.103,5.504],[-0.061,-1.104],[-0.182,-0.205],[0,0],[0,0],[-0.008,-2.93],[-0.024,-4.912],[0.085,0.109]],"o":[[-0.543,-0.61],[0.035,-1.889],[0.143,2.601],[0,0],[0,0],[0.064,0.085],[0.015,5.432],[0.019,3.835],[-0.237,-0.302]],"v":[[331.023,15.206],[330.329,-16.673],[330.484,-18.421],[330.971,-14.069],[330.971,-14.068],[331.528,-13.33],[331.653,-8.1],[331.721,8.604],[331.59,15.961]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":110,"s":[{"i":[[0,0],[-3.066,5.504],[-1.801,-1.104],[-5.421,-0.205],[0,0],[0,0],[-0.247,-2.93],[-0.721,-4.912],[2.539,0.109]],"o":[[-16.143,-0.61],[1.052,-1.889],[4.242,2.601],[0,0],[0,0],[1.907,0.085],[0.458,5.432],[0.563,3.835],[-7.036,-0.302]],"v":[[120.097,16.139],[99.459,-15.74],[104.058,-17.489],[118.55,-13.136],[118.55,-13.135],[128.991,-12.514],[132.728,-7.284],[134.733,9.42],[130.841,16.777]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[0,0],[-4.748,5.504],[-2.789,-1.104],[-8.395,-0.205],[0,0],[0,0],[-0.383,-2.93],[-1.116,-4.912],[3.932,0.109]],"o":[[-24.999,-0.61],[1.63,-1.889],[6.569,2.601],[0,0],[0,0],[2.954,0.085],[0.71,5.432],[0.872,3.835],[-10.896,-0.302]],"v":[[0.345,16.669],[-31.615,-15.21],[-24.493,-16.959],[-2.05,-12.606],[-2.05,-12.605],[23.607,-11.868],[29.395,-6.638],[32.499,10.067],[26.472,17.423]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[0,0],[-4.748,5.504],[-2.789,-1.104],[-8.395,-0.205],[0,0],[0,0],[-0.383,-2.93],[-1.116,-4.912],[3.932,0.109]],"o":[[-24.999,-0.61],[1.63,-1.889],[6.569,2.601],[0,0],[0,0],[2.954,0.085],[0.71,5.432],[0.872,3.835],[-10.896,-0.302]],"v":[[0.345,16.669],[-31.615,-15.21],[-24.493,-16.959],[-2.05,-12.606],[-2.05,-12.605],[23.607,-11.868],[29.395,-6.638],[32.499,10.067],[26.472,17.423]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[-3.066,5.504],[-1.801,-1.104],[-5.421,-0.205],[0,0],[0,0],[-0.247,-2.93],[-0.721,-4.912],[2.539,0.109]],"o":[[-16.143,-0.61],[1.052,-1.889],[4.242,2.601],[0,0],[0,0],[1.907,0.085],[0.458,5.432],[0.563,3.835],[-7.036,-0.302]],"v":[[120.097,16.139],[99.459,-15.74],[104.058,-17.489],[118.55,-13.136],[118.55,-13.135],[128.991,-12.514],[132.728,-7.284],[134.733,9.42],[130.841,16.777]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[-0.103,5.504],[-0.061,-1.104],[-0.182,-0.205],[0,0],[0,0],[-0.008,-2.93],[-0.024,-4.912],[0.085,0.109]],"o":[[-0.543,-0.61],[0.035,-1.889],[0.143,2.601],[0,0],[0,0],[0.064,0.085],[0.015,5.432],[0.019,3.835],[-0.237,-0.302]],"v":[[331.023,15.206],[330.329,-16.673],[330.484,-18.421],[330.971,-14.069],[330.971,-14.068],[331.528,-13.33],[331.653,-8.1],[331.721,8.604],[331.59,15.961]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[0,0],[2.86,5.504],[1.68,-1.104],[5.057,-0.205],[0,0],[0,0],[0.231,-2.93],[0.672,-4.912],[-2.368,0.109]],"o":[[15.057,-0.61],[-0.982,-1.889],[-3.957,2.601],[0,0],[0,0],[-1.779,0.085],[-0.428,5.432],[-0.525,3.835],[6.563,-0.302]],"v":[[482.081,15.019],[501.331,-16.86],[497.041,-18.608],[483.524,-14.256],[483.524,-14.255],[479.386,-13.949],[475.9,-8.719],[474.03,7.986],[477.66,15.342]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[0,0],[4.542,5.504],[2.668,-1.104],[8.031,-0.205],[0,0],[0,0],[0.366,-2.93],[1.068,-4.912],[-3.761,0.109]],"o":[[23.914,-0.61],[-1.559,-1.889],[-6.284,2.601],[0,0],[0,0],[-2.826,0.085],[-0.679,5.432],[-0.834,3.835],[10.423,-0.302]],"v":[[567.843,14.913],[598.416,-16.966],[591.603,-18.715],[570.134,-14.362],[570.134,-14.361],[545.592,-13.623],[540.055,-8.393],[537.086,8.311],[542.851,15.668]],"c":true}]},{"t":330,"s":[{"i":[[0,0],[4.542,5.504],[2.668,-1.104],[8.031,-0.205],[0,0],[0,0],[0.366,-2.93],[1.068,-4.912],[-3.761,0.109]],"o":[[23.914,-0.61],[-1.559,-1.889],[-6.284,2.601],[0,0],[0,0],[-2.826,0.085],[-0.679,5.432],[-0.834,3.835],[10.423,-0.302]],"v":[[567.843,14.913],[598.416,-16.966],[591.603,-18.715],[570.134,-14.362],[570.134,-14.361],[545.592,-13.623],[540.055,-8.393],[537.086,8.311],[542.851,15.668]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764717102,0.207843139768,0.007843137719,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[930.206,443.28]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[0,0],[5.769,-7.722],[3.662,1.304],[10.825,-0.276],[0,0],[0,0],[0.414,3.022],[1.734,7.17],[-3.676,0.107]],"o":[[32.236,-0.823],[-1.98,2.651],[-8.625,-3.07],[0,0],[0,0],[-2.919,0.09],[-1.181,-8.625],[-0.901,-3.727],[9.912,-0.288]],"v":[[562.376,-23.81],[605.544,17.009],[596.481,19.832],[567.302,15.447],[567.302,15.446],[547.398,16.06],[541.538,10.921],[536.546,-15.703],[541.964,-23.171]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":100,"s":[{"i":[[0,0],[3.632,-7.722],[2.306,1.304],[6.816,-0.276],[0,0],[0,0],[0.26,3.022],[1.091,7.17],[-2.315,0.107]],"o":[[20.297,-0.823],[-1.247,2.651],[-5.43,-3.07],[0,0],[0,0],[-1.838,0.09],[-0.743,-8.625],[-0.567,-3.727],[6.241,-0.288]],"v":[[479.272,-23.704],[506.452,17.115],[500.746,19.938],[482.374,15.554],[482.373,15.552],[481.4,14.441],[477.71,9.301],[474.567,-17.323],[477.978,-24.79]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[0,0],[-0.131,-7.722],[-0.083,1.304],[-0.246,-0.276],[0,0],[0,0],[-0.009,3.022],[-0.04,7.17],[0.083,0.107]],"o":[[-0.732,-0.823],[0.045,2.651],[0.196,-3.07],[0,0],[0,0],[0.066,0.09],[0.027,-8.625],[0.021,-3.727],[-0.225,-0.288]],"v":[[332.896,-23.517],[331.916,17.302],[332.121,20.125],[332.784,15.741],[332.784,15.739],[333.235,16.353],[333.368,11.214],[333.482,-15.41],[333.359,-22.878]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":110,"s":[{"i":[[0,0],[-3.894,-7.722],[-2.472,1.304],[-7.308,-0.276],[0,0],[0,0],[-0.279,3.022],[-1.171,7.17],[2.482,0.107]],"o":[[-21.76,-0.823],[1.337,2.651],[5.822,-3.07],[0,0],[0,0],[1.97,0.09],[0.797,-8.625],[0.609,-3.727],[-6.691,-0.288]],"v":[[126.652,-22.584],[97.512,18.235],[103.629,21.058],[123.326,16.674],[123.326,16.672],[130.636,17.169],[134.592,12.03],[137.962,-14.594],[134.304,-22.061]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[0,0],[-6.031,-7.722],[-3.828,1.304],[-11.317,-0.276],[0,0],[0,0],[-0.432,3.022],[-1.813,7.17],[3.843,0.107]],"o":[[-33.699,-0.823],[2.07,2.651],[9.016,-3.07],[0,0],[0,0],[3.051,0.09],[1.234,-8.625],[0.942,-3.727],[-10.362,-0.288]],"v":[[9.558,-22.055],[-35.569,18.765],[-26.095,21.588],[4.409,17.203],[4.409,17.202],[25.216,17.816],[31.342,12.677],[36.561,-13.947],[30.896,-21.415]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[0,0],[-6.031,-7.722],[-3.828,1.304],[-11.317,-0.276],[0,0],[0,0],[-0.432,3.022],[-1.813,7.17],[3.843,0.107]],"o":[[-33.699,-0.823],[2.07,2.651],[9.016,-3.07],[0,0],[0,0],[3.051,0.09],[1.234,-8.625],[0.942,-3.727],[-10.362,-0.288]],"v":[[9.558,-22.055],[-35.569,18.765],[-26.095,21.588],[4.409,17.203],[4.409,17.202],[25.216,17.816],[31.342,12.677],[36.561,-13.947],[30.896,-21.415]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[-3.894,-7.722],[-2.472,1.304],[-7.308,-0.276],[0,0],[0,0],[-0.279,3.022],[-1.171,7.17],[2.482,0.107]],"o":[[-21.76,-0.823],[1.337,2.651],[5.822,-3.07],[0,0],[0,0],[1.97,0.09],[0.797,-8.625],[0.609,-3.727],[-6.691,-0.288]],"v":[[126.652,-22.584],[97.512,18.235],[103.629,21.058],[123.326,16.674],[123.326,16.672],[130.636,17.169],[134.592,12.03],[137.962,-14.594],[134.304,-22.061]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[-0.131,-7.722],[-0.083,1.304],[-0.246,-0.276],[0,0],[0,0],[-0.009,3.022],[-0.04,7.17],[0.083,0.107]],"o":[[-0.732,-0.823],[0.045,2.651],[0.196,-3.07],[0,0],[0,0],[0.066,0.09],[0.027,-8.625],[0.021,-3.727],[-0.225,-0.288]],"v":[[332.896,-23.517],[331.916,17.302],[332.121,20.125],[332.784,15.741],[332.784,15.739],[333.235,16.353],[333.368,11.214],[333.482,-15.41],[333.359,-22.878]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[0,0],[3.632,-7.722],[2.306,1.304],[6.816,-0.276],[0,0],[0,0],[0.26,3.022],[1.091,7.17],[-2.315,0.107]],"o":[[20.297,-0.823],[-1.247,2.651],[-5.43,-3.07],[0,0],[0,0],[-1.838,0.09],[-0.743,-8.625],[-0.567,-3.727],[6.241,-0.288]],"v":[[479.272,-23.704],[506.452,17.115],[500.746,19.938],[482.374,15.554],[482.373,15.552],[481.4,14.441],[477.71,9.301],[474.567,-17.323],[477.978,-24.79]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[0,0],[5.769,-7.722],[3.662,1.304],[10.825,-0.276],[0,0],[0,0],[0.414,3.022],[1.734,7.17],[-3.676,0.107]],"o":[[32.236,-0.823],[-1.98,2.651],[-8.625,-3.07],[0,0],[0,0],[-2.919,0.09],[-1.181,-8.625],[-0.901,-3.727],[9.912,-0.288]],"v":[[562.376,-23.81],[605.544,17.009],[596.481,19.832],[567.302,15.447],[567.302,15.446],[547.398,16.06],[541.538,10.921],[536.546,-15.703],[541.964,-23.171]],"c":true}]},{"t":330,"s":[{"i":[[0,0],[5.769,-7.722],[3.662,1.304],[10.825,-0.276],[0,0],[0,0],[0.414,3.022],[1.734,7.17],[-3.676,0.107]],"o":[[32.236,-0.823],[-1.98,2.651],[-8.625,-3.07],[0,0],[0,0],[-2.919,0.09],[-1.181,-8.625],[-0.901,-3.727],[9.912,-0.288]],"v":[[562.376,-23.81],[605.544,17.009],[596.481,19.832],[567.302,15.447],[567.302,15.446],[547.398,16.06],[541.538,10.921],[536.546,-15.703],[541.964,-23.171]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764717102,0.207843139768,0.007843137719,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[928.496,359.835]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[36.08,5.911],[-28.605,0.73],[0,0],[89.816,-2.292],[0,0],[26.228,-3.116]],"o":[[26.344,1.775],[0,0],[89.822,-2.292],[0,0],[-28.602,0.73],[35.755,-7.762]],"v":[[487.859,-87.06],[550.198,-86.378],[550.198,-86.376],[554.076,79.687],[554.076,79.688],[491.849,83.549]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":100,"s":[{"i":[[50.051,1.594],[-18.011,0.73],[0,0],[81.068,0.136],[0,0],[16.096,-2.014]],"o":[[16.587,1.775],[0,0],[84.034,-1.219],[0,0],[-18.009,0.73],[59.27,-6.573]],"v":[[419.461,-86.791],[468.231,-86.271],[468.231,-86.27],[470.672,79.793],[470.672,79.794],[421.973,83.818]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[-0.819,5.911],[0.649,0.73],[0,0],[-2.039,-2.292],[0,0],[-0.595,-3.116]],"o":[[-0.598,1.775],[0,0],[-2.039,-2.292],[0,0],[0.649,0.73],[-0.811,-7.762]],"v":[[325.271,-86.767],[323.856,-86.084],[323.856,-86.083],[323.768,79.98],[323.768,79.981],[325.18,83.842]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":110,"s":[{"i":[[-41.414,-2.417],[19.309,0.73],[0,0],[-88.065,-4.32],[0,0],[-17.705,-3.116]],"o":[[-17.783,1.775],[0,0],[-67.693,-5.763],[0,0],[19.307,0.73],[-56.2,-4.85]],"v":[[175.893,-82.85],[119.613,-85.152],[119.613,-85.15],[116.996,80.913],[116.996,80.914],[173.944,85.965]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[-37.718,5.911],[29.903,0.73],[0,0],[-93.893,-2.292],[0,0],[-27.419,-3.116]],"o":[[-27.54,1.775],[0,0],[-93.899,-2.292],[0,0],[29.901,0.73],[-37.378,-7.762]],"v":[[68.825,-85.305],[3.656,-84.622],[3.656,-84.62],[-0.397,81.442],[-0.397,81.444],[64.655,85.305]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[-37.718,5.911],[29.903,0.73],[0,0],[-93.893,-2.292],[0,0],[-27.419,-3.116]],"o":[[-27.54,1.775],[0,0],[-93.899,-2.292],[0,0],[29.901,0.73],[-37.378,-7.762]],"v":[[68.825,-85.305],[3.656,-84.622],[3.656,-84.62],[-0.397,81.442],[-0.397,81.444],[64.655,85.305]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[-41.414,-2.417],[19.309,0.73],[0,0],[-88.065,-4.32],[0,0],[-17.705,-3.116]],"o":[[-17.783,1.775],[0,0],[-67.693,-5.763],[0,0],[19.307,0.73],[-56.2,-4.85]],"v":[[175.893,-82.85],[119.613,-85.152],[119.613,-85.15],[116.996,80.913],[116.996,80.914],[173.944,85.965]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[-0.819,5.911],[0.649,0.73],[0,0],[-2.039,-2.292],[0,0],[-0.595,-3.116]],"o":[[-0.598,1.775],[0,0],[-2.039,-2.292],[0,0],[0.649,0.73],[-0.811,-7.762]],"v":[[325.271,-86.767],[323.856,-86.084],[323.856,-86.083],[323.768,79.98],[323.768,79.981],[325.18,83.842]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[50.051,1.594],[-18.011,0.73],[0,0],[81.068,0.136],[0,0],[16.096,-2.014]],"o":[[16.587,1.775],[0,0],[84.034,-1.219],[0,0],[-18.009,0.73],[59.27,-6.573]],"v":[[419.461,-86.791],[468.231,-86.271],[468.231,-86.27],[470.672,79.793],[470.672,79.794],[421.973,83.818]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[36.08,5.911],[-28.605,0.73],[0,0],[89.816,-2.292],[0,0],[26.228,-3.116]],"o":[[26.344,1.775],[0,0],[89.822,-2.292],[0,0],[-28.602,0.73],[35.755,-7.762]],"v":[[487.859,-87.06],[550.198,-86.378],[550.198,-86.376],[554.076,79.687],[554.076,79.688],[491.849,83.549]],"c":true}]},{"t":330,"s":[{"i":[[36.08,5.911],[-28.605,0.73],[0,0],[89.816,-2.292],[0,0],[26.228,-3.116]],"o":[[26.344,1.775],[0,0],[89.822,-2.292],[0,0],[-28.602,0.73],[35.755,-7.762]],"v":[[487.859,-87.06],[550.198,-86.378],[550.198,-86.376],[554.076,79.687],[554.076,79.688],[491.849,83.549]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.490196079016,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.666666686535,0.141176477075,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[937.605,399.81]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false}],"ip":-120,"op":540,"st":-120,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"Layer 48","parent":17,"sr":1,"ks":{"a":{"a":0,"k":[1027.717,404.189,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[68.437,55.728],[68.437,55.728],[66.11,-56.603],[66.11,-56.603]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[39.018,56.431],[39.018,56.431],[39.04,-55.9],[39.04,-55.9]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.371,56.166],[-1.371,56.166],[1.371,-56.166],[1.371,-56.166]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.371,56.166],[-1.371,56.166],[1.371,-56.166],[1.371,-56.166]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[39.018,56.431],[39.018,56.431],[39.04,-55.9],[39.04,-55.9]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[68.437,55.728],[68.437,55.728],[66.11,-56.603],[66.11,-56.603]],"c":true}]},{"t":330,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[68.437,55.728],[68.437,55.728],[66.11,-56.603],[66.11,-56.603]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.576,410.039]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[0,0],[-3.854,12.198],[35.195,-1.012],[0,0],[76.222,-66.443],[0,0],[-80.887,2.327]],"o":[[35.195,-1.012],[-3.551,26.84],[0,0],[-80.887,2.327],[0,0],[76.951,-31.26],[0,0]],"v":[[433.037,-36.455],[491.501,-61.05],[433.612,-8.7],[433.612,-8.699],[227.437,60.175],[226.148,-2.048],[433.037,-36.454]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[0,0],[0.036,12.198],[-0.327,-1.012],[0,0],[-0.708,-66.443],[0,0],[0.751,2.327]],"o":[[-0.327,-1.012],[0.033,26.84],[0,0],[0.751,2.327],[0,0],[-0.715,-31.26],[0,0]],"v":[[194.808,-35.752],[194.265,-60.347],[194.802,-7.997],[194.802,-7.996],[196.718,60.878],[196.729,-1.346],[194.808,-35.752]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[0,0],[4.542,12.198],[-41.472,-1.012],[0,0],[-89.817,-66.443],[0,0],[95.314,2.327]],"o":[[-41.472,-1.012],[4.185,26.84],[0,0],[95.314,2.327],[0,0],[-90.675,-31.26],[0,0]],"v":[[-87.449,-36.018],[-156.34,-60.612],[-88.126,-8.263],[-88.126,-8.262],[154.822,60.612],[156.34,-1.611],[-87.449,-36.017]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[0,0],[4.542,12.198],[-41.472,-1.012],[0,0],[-89.817,-66.443],[0,0],[95.314,2.327]],"o":[[-41.472,-1.012],[4.185,26.84],[0,0],[95.314,2.327],[0,0],[-90.675,-31.26],[0,0]],"v":[[-87.449,-36.018],[-156.34,-60.612],[-88.126,-8.263],[-88.126,-8.262],[154.822,60.612],[156.34,-1.611],[-87.449,-36.017]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0,0],[0.036,12.198],[-0.327,-1.012],[0,0],[-0.708,-66.443],[0,0],[0.751,2.327]],"o":[[-0.327,-1.012],[0.033,26.84],[0,0],[0.751,2.327],[0,0],[-0.715,-31.26],[0,0]],"v":[[194.808,-35.752],[194.265,-60.347],[194.802,-7.997],[194.802,-7.996],[196.718,60.878],[196.729,-1.346],[194.808,-35.752]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[0,0],[-3.854,12.198],[35.195,-1.012],[0,0],[76.222,-66.443],[0,0],[-80.887,2.327]],"o":[[35.195,-1.012],[-3.551,26.84],[0,0],[-80.887,2.327],[0,0],[76.951,-31.26],[0,0]],"v":[[433.037,-36.455],[491.501,-61.05],[433.612,-8.7],[433.612,-8.699],[227.437,60.175],[226.148,-2.048],[433.037,-36.454]],"c":true}]},{"t":330,"s":[{"i":[[0,0],[-3.854,12.198],[35.195,-1.012],[0,0],[76.222,-66.443],[0,0],[-80.887,2.327]],"o":[[35.195,-1.012],[-3.551,26.84],[0,0],[-80.887,2.327],[0,0],[76.951,-31.26],[0,0]],"v":[[433.037,-36.455],[491.501,-61.05],[433.612,-8.7],[433.612,-8.699],[227.437,60.175],[226.148,-2.048],[433.037,-36.454]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[1025.864,467.815]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[38.096,-1.096],[0,0],[78.153,26.798],[0,0],[-80.887,2.327],[0,0],[1.161,-32.001]],"o":[[0,0],[-80.887,2.326],[0,0],[78.882,61.982],[0,0],[41.589,-1.196],[-1.944,-13.182]],"v":[[429.971,35.665],[429.971,35.665],[221.904,13.194],[220.373,-60.73],[429.154,-3.791],[429.154,-3.79],[490.142,59.855]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[-0.354,-1.096],[0,0],[-0.726,26.798],[0,0],[0.751,2.327],[0,0],[-0.011,-32.001]],"o":[[0,0],[0.751,2.326],[0,0],[-0.733,61.982],[0,0],[-0.386,-1.196],[0.018,-13.182]],"v":[[192.901,36.368],[192.901,36.368],[194.834,13.897],[194.848,-60.027],[192.909,-3.088],[192.909,-3.087],[192.342,60.558]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[-44.891,-1.096],[0,0],[-92.093,26.798],[0,0],[95.314,2.327],[0,0],[-1.368,-32.001]],"o":[[0,0],[95.314,2.326],[0,0],[-92.951,61.982],[0,0],[-49.007,-1.196],[2.291,-13.182]],"v":[[-88.012,36.103],[-88.012,36.102],[157.165,13.631],[158.97,-60.292],[-87.049,-3.353],[-87.049,-3.352],[-158.915,60.292]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[-44.891,-1.096],[0,0],[-92.093,26.798],[0,0],[95.314,2.327],[0,0],[-1.368,-32.001]],"o":[[0,0],[95.314,2.326],[0,0],[-92.951,61.982],[0,0],[-49.007,-1.196],[2.291,-13.182]],"v":[[-88.012,36.103],[-88.012,36.102],[157.165,13.631],[158.97,-60.292],[-87.049,-3.353],[-87.049,-3.352],[-158.915,60.292]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[-0.354,-1.096],[0,0],[-0.726,26.798],[0,0],[0.751,2.327],[0,0],[-0.011,-32.001]],"o":[[0,0],[0.751,2.326],[0,0],[-0.733,61.982],[0,0],[-0.386,-1.196],[0.018,-13.182]],"v":[[192.901,36.368],[192.901,36.368],[194.834,13.897],[194.848,-60.027],[192.909,-3.088],[192.909,-3.087],[192.342,60.558]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[38.096,-1.096],[0,0],[78.153,26.798],[0,0],[-80.887,2.327],[0,0],[1.161,-32.001]],"o":[[0,0],[-80.887,2.326],[0,0],[78.882,61.982],[0,0],[41.589,-1.196],[-1.944,-13.182]],"v":[[429.971,35.665],[429.971,35.665],[221.904,13.194],[220.373,-60.73],[429.154,-3.791],[429.154,-3.79],[490.142,59.855]],"c":true}]},{"t":330,"s":[{"i":[[38.096,-1.096],[0,0],[78.153,26.798],[0,0],[-80.887,2.327],[0,0],[1.161,-32.001]],"o":[[0,0],[-80.887,2.326],[0,0],[78.882,61.982],[0,0],[41.589,-1.196],[-1.944,-13.182]],"v":[[429.971,35.665],[429.971,35.665],[221.904,13.194],[220.373,-60.73],[429.154,-3.791],[429.154,-3.79],[490.142,59.855]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[1027.781,340.242]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[0.7,-2.216],[-0.081,2.231]],"o":[[0.292,-2.211],[0.326,2.212]],"v":[[648.262,2.897],[648.82,-3.772]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[-0.006,-2.216],[0.001,2.231]],"o":[[-0.003,-2.211],[-0.003,2.212]],"v":[[351.026,3.6],[351.021,-3.069]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[-0.825,-2.216],[0.095,2.231]],"o":[[-0.345,-2.211],[-0.384,2.212]],"v":[[0.421,3.334],[-0.236,-3.334]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[-0.825,-2.216],[0.095,2.231]],"o":[[-0.345,-2.211],[-0.384,2.212]],"v":[[0.421,3.334],[-0.236,-3.334]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[-0.007,-2.216],[0.001,2.231]],"o":[[-0.003,-2.211],[-0.003,2.212]],"v":[[351.026,3.6],[351.021,-3.069]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[0.7,-2.216],[-0.081,2.231]],"o":[[0.292,-2.211],[0.326,2.212]],"v":[[648.262,2.897],[648.82,-3.772]],"c":true}]},{"t":330,"s":[{"i":[[0.7,-2.216],[-0.081,2.231]],"o":[[0.292,-2.211],[0.326,2.212]],"v":[[648.262,2.897],[648.82,-3.772]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[869.103,403.868]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false}],"ip":-120,"op":540,"st":-120,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"Layer 47","parent":11,"sr":1,"ks":{"r":{"a":0,"k":0.913},"p":{"a":0,"k":[871.84,405.059,0]},"a":{"a":0,"k":[-159.522,0,0]},"s":{"a":0,"k":[100.973,99.036,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":90,"s":[{"i":[[-83.462,2.327],[0,0],[82.218,-2.292],[0,0],[78.163,-89.162],[0,0]],"o":[[0,0],[82.224,-2.292],[0,0],[-83.462,2.327],[0,0],[81.879,84.701]],"v":[[440.166,-90.216],[440.166,-90.215],[443.716,75.848],[443.716,75.85],[218.919,167.886],[224.262,-169.412]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[0.497,2.327],[0,0],[-0.49,-2.292],[0,0],[-0.466,-89.162],[0,0]],"o":[[0,0],[-0.49,-2.292],[0,0],[0.497,2.327],[0,0],[-0.488,84.701]],"v":[[209.937,-89.134],[209.937,-89.132],[209.916,76.93],[209.916,76.932],[211.18,168.063],[211.223,-168.33]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[{"i":[[95.314,2.327],[0,0],[-93.893,-2.292],[0,0],[-89.262,-89.162],[0,0]],"o":[[0,0],[-93.899,-2.292],[0,0],[95.314,2.327],[0,0],[-93.506,84.701]],"v":[[-87.04,-89],[-87.04,-88.999],[-91.094,77.064],[-91.094,77.065],[151.311,168.196],[159.522,-168.196]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[95.314,2.327],[0,0],[-93.893,-2.292],[0,0],[-89.262,-89.162],[0,0]],"o":[[0,0],[-93.899,-2.292],[0,0],[95.314,2.327],[0,0],[-93.506,84.701]],"v":[[-87.04,-89],[-87.04,-88.999],[-91.094,77.064],[-91.094,77.065],[151.311,168.196],[159.522,-168.196]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[0.497,2.327],[0,0],[-0.49,-2.292],[0,0],[-0.466,-89.162],[0,0]],"o":[[0,0],[-0.49,-2.292],[0,0],[0.497,2.327],[0,0],[-0.488,84.701]],"v":[[209.937,-89.134],[209.937,-89.132],[209.916,76.93],[209.916,76.932],[211.18,168.063],[211.223,-168.33]],"c":true}]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[{"i":[[-83.462,2.327],[0,0],[82.218,-2.292],[0,0],[78.163,-89.162],[0,0]],"o":[[0,0],[82.224,-2.292],[0,0],[-83.462,2.327],[0,0],[81.879,84.701]],"v":[[440.166,-90.216],[440.166,-90.215],[443.716,75.848],[443.716,75.85],[218.919,167.886],[224.262,-169.412]],"c":true}]},{"t":330,"s":[{"i":[[-83.462,2.327],[0,0],[82.218,-2.292],[0,0],[78.163,-89.162],[0,0]],"o":[[0,0],[82.224,-2.292],[0,0],[-83.462,2.327],[0,0],[81.879,84.701]],"v":[[440.166,-90.216],[440.166,-90.215],[443.716,75.848],[443.716,75.85],[231.452,166.981],[224.262,-169.412]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.188235297799,0.639215707779,0.901960790157,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.843137264252,0.945098042488,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-120,"op":540,"st":-120,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"mouth 3","parent":20,"sr":1,"ks":{"r":{"a":0,"k":-0.097},"p":{"a":0,"k":[-2.09,23.951,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":60,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[15.72,26.343],[69.294,-23.598],[2.727,-14.928]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[20.381,43.563],[69.294,-23.598],[0.191,-21.226]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":71,"s":[{"i":[[-3.951,-11.069],[-17.886,4.567],[1.094,10.508],[18.65,-3.937]],"o":[[3.258,9.127],[17.886,-4.567],[-0.97,-9.324],[-18.799,3.969]],"v":[[-36.891,9.221],[9.404,22.125],[35.009,-8.419],[-2.703,-17.4]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":76,"s":[{"i":[[-3.512,-20.224],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[3.564,20.523],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-78.858,14.831],[10.108,12.19],[69.307,-18.017],[5.336,0.09]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":80,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[15.72,26.343],[69.294,-23.598],[2.727,-14.928]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":86,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[20.381,43.563],[69.294,-23.598],[0.191,-21.226]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":91,"s":[{"i":[[-3.951,-11.069],[-17.886,4.567],[1.094,10.508],[18.65,-3.937]],"o":[[3.258,9.127],[17.886,-4.567],[-0.97,-9.324],[-18.799,3.969]],"v":[[-36.891,9.221],[9.404,22.125],[35.009,-8.419],[-2.703,-17.4]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":96,"s":[{"i":[[-3.512,-20.224],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[3.564,20.523],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-78.858,14.831],[10.108,12.19],[69.307,-18.017],[5.336,0.09]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":100,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[15.72,26.343],[69.294,-23.598],[2.727,-14.928]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":106,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[20.381,43.563],[69.294,-23.598],[0.191,-21.226]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":111,"s":[{"i":[[-3.951,-11.069],[-17.886,4.567],[1.094,10.508],[18.65,-3.937]],"o":[[3.258,9.127],[17.886,-4.567],[-0.97,-9.324],[-18.799,3.969]],"v":[[-36.891,9.221],[9.404,22.125],[35.009,-8.419],[-2.703,-17.4]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[{"i":[[-3.512,-20.224],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[3.564,20.523],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-78.858,14.831],[10.108,12.19],[69.307,-18.017],[5.336,0.09]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":120,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[15.72,26.343],[69.294,-23.598],[2.727,-14.928]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[20.381,43.563],[69.294,-23.598],[0.191,-21.226]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":131,"s":[{"i":[[-3.951,-11.069],[-17.886,4.567],[1.094,10.508],[18.65,-3.937]],"o":[[3.258,9.127],[17.886,-4.567],[-0.97,-9.324],[-18.799,3.969]],"v":[[-36.891,9.221],[9.404,22.125],[35.009,-8.419],[-2.703,-17.4]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":136,"s":[{"i":[[-3.512,-20.224],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[3.564,20.523],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-78.858,14.831],[10.108,12.19],[69.307,-18.017],[5.336,0.09]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":140,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[15.72,26.343],[69.294,-23.598],[2.727,-14.928]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[20.381,43.563],[69.294,-23.598],[0.191,-21.226]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":151,"s":[{"i":[[-3.951,-11.069],[-17.886,4.567],[1.094,10.508],[18.65,-3.937]],"o":[[3.258,9.127],[17.886,-4.567],[-0.97,-9.324],[-18.799,3.969]],"v":[[-36.891,9.221],[9.404,22.125],[35.009,-8.419],[-2.703,-17.4]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":156,"s":[{"i":[[-3.512,-20.224],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[3.564,20.523],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-78.858,14.831],[10.108,12.19],[69.307,-18.017],[5.336,0.09]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":160,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[15.72,26.343],[69.294,-23.598],[2.727,-14.928]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[20.381,43.563],[69.294,-23.598],[0.191,-21.226]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":171,"s":[{"i":[[-3.951,-11.069],[-17.886,4.567],[1.094,10.508],[18.65,-3.937]],"o":[[3.258,9.127],[17.886,-4.567],[-0.97,-9.324],[-18.799,3.969]],"v":[[-36.891,9.221],[9.404,22.125],[35.009,-8.419],[-2.703,-17.4]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":176,"s":[{"i":[[-3.512,-20.224],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[3.564,20.523],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-78.858,14.831],[10.108,12.19],[69.307,-18.017],[5.336,0.09]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[15.72,26.343],[69.294,-23.598],[2.727,-14.928]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":186,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[20.381,43.563],[69.294,-23.598],[0.191,-21.226]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":191,"s":[{"i":[[-3.951,-11.069],[-17.886,4.567],[1.094,10.508],[18.65,-3.937]],"o":[[3.258,9.127],[17.886,-4.567],[-0.97,-9.324],[-18.799,3.969]],"v":[[-36.891,9.221],[9.404,22.125],[35.009,-8.419],[-2.703,-17.4]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":196,"s":[{"i":[[-3.512,-20.224],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[3.564,20.523],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-78.858,14.831],[10.108,12.19],[69.307,-18.017],[5.336,0.09]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":200,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[15.72,26.343],[69.294,-23.598],[2.727,-14.928]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":206,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[20.381,43.563],[69.294,-23.598],[0.191,-21.226]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":210,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[15.72,26.343],[69.294,-23.598],[2.727,-14.928]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":306,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[20.381,43.563],[69.294,-23.598],[0.191,-21.226]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":311,"s":[{"i":[[-3.951,-11.069],[-17.886,4.567],[1.094,10.508],[18.65,-3.937]],"o":[[3.258,9.127],[17.886,-4.567],[-0.97,-9.324],[-18.799,3.969]],"v":[[-36.891,9.221],[9.404,22.125],[35.009,-8.419],[-2.703,-17.4]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":316,"s":[{"i":[[-3.512,-20.224],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[3.564,20.523],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-78.858,14.831],[10.108,12.19],[69.307,-18.017],[5.336,0.09]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":320,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[15.72,26.343],[69.294,-23.598],[2.727,-14.928]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":326,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[20.381,43.563],[69.294,-23.598],[0.191,-21.226]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":331,"s":[{"i":[[-3.951,-11.069],[-17.886,4.567],[1.094,10.508],[18.65,-3.937]],"o":[[3.258,9.127],[17.886,-4.567],[-0.97,-9.324],[-18.799,3.969]],"v":[[-36.891,9.221],[9.404,22.125],[35.009,-8.419],[-2.703,-17.4]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":336,"s":[{"i":[[-3.512,-20.224],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[3.564,20.523],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-78.858,14.831],[10.108,12.19],[69.307,-18.017],[5.336,0.09]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":340,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[15.72,26.343],[69.294,-23.598],[2.727,-14.928]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":346,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[20.381,43.563],[69.294,-23.598],[0.191,-21.226]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":351,"s":[{"i":[[-3.951,-11.069],[-17.886,4.567],[1.094,10.508],[18.65,-3.937]],"o":[[3.258,9.127],[17.886,-4.567],[-0.97,-9.324],[-18.799,3.969]],"v":[[-36.891,9.221],[9.404,22.125],[35.009,-8.419],[-2.703,-17.4]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":356,"s":[{"i":[[-3.512,-20.224],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[3.564,20.523],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-78.858,14.831],[10.108,12.19],[69.307,-18.017],[5.336,0.09]],"c":true}]},{"t":360,"s":[{"i":[[-7.574,-24.1],[-34.291,9.944],[2.097,22.879],[35.756,-8.573]],"o":[[6.245,19.872],[34.291,-9.944],[-1.86,-20.3],[-36.043,8.642]],"v":[[-68.556,14.808],[15.72,26.343],[69.294,-23.598],[2.727,-14.928]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.490196079016,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":11.098},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.490196079016,0.035294119269,0.035294119269,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":337,"st":0,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"beak_bl","parent":20,"sr":1,"ks":{"r":{"a":0,"k":-26.599},"p":{"a":0,"k":[-9.189,164.353,0]},"a":{"a":0,"k":[35.051,-0.937,0]},"s":{"a":0,"k":[-180.851,180.851,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":60,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":71,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-25.718,-115.741],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":76,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":80,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":86,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":91,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-25.718,-115.741],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":96,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":100,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":106,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":111,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-25.718,-115.741],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":116,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":120,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":131,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-25.718,-115.741],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":140,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":151,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-25.718,-115.741],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":156,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":160,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":171,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-25.718,-115.741],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":176,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":180,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":186,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":191,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-25.718,-115.741],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":196,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":200,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":206,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]},{"t":210,"s":[{"i":[[5.119,3.271],[3.431,10.184]],"o":[[-6.922,-4.423],[0,0]],"v":[[-20.45,-116.527],[-37.332,-138.899]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.705882352941,0.517647058824,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":11.765},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[24.706,22.107]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":228,"s":[5]},{"t":240,"s":[0]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[95]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":228,"s":[100]},{"t":240,"s":[95]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":0,"op":300,"st":124,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"beak 3","parent":25,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":90,"s":[24.452]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":120,"s":[0.225]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":150,"s":[0.225]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":180,"s":[24.452]},{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.74],"y":[0]},"t":330,"s":[24.452]},{"t":360,"s":[0.225]}]},"p":{"a":1,"k":[{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":90,"s":[839.498,275.112,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":120,"s":[1014.035,275.112,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":150,"s":[1014.035,275.112,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":180,"s":[839.498,275.112,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":330,"s":[839.498,275.112,0],"to":[0,0,0],"ti":[0,0,0]},{"t":360,"s":[1014.035,275.112,0]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":60,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-34.842,10.21]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[24.651,-7.224]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[24.567,78.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[-8.458,22.204],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-21.285,-15.228],[-50.654,14.43]],"o":[[9.099,-23.887],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[30.629,21.912],[38.732,-11.034]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[33.076,104.881]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":71,"s":[{"i":[[-7.842,22.336],[27.954,9.55],[8.735,21.734],[21.343,-3.9],[0.293,-18.685],[11.203,-17.886],[-20.809,-15.997],[-28.343,7.38]],"o":[[3.686,-10.499],[-10.332,-3.53],[-7.889,-19.629],[-20.858,3.812],[-0.319,20.38],[-12.982,20.726],[20.809,15.997],[20.269,-5.278]],"v":[[63.893,34.338],[50.149,-17.508],[11.449,-47.95],[-29.484,-82.946],[-43.427,-30.479],[-60.105,6.654],[-54.47,56.197],[20.739,71.237]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":76,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-35.817,5.943]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[37.55,-6.231]],"v":[[96.245,41.976],[72.64,-21.782],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-105.638,14.872],[-85.885,75.896],[7.341,64.341]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":80,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-34.842,10.21]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[24.651,-7.224]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[24.567,78.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":86,"s":[{"i":[[-8.458,22.204],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-21.285,-15.228],[-50.654,14.43]],"o":[[9.099,-23.887],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[30.629,21.912],[38.732,-11.034]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[33.076,104.881]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":91,"s":[{"i":[[-7.842,22.336],[27.954,9.55],[8.735,21.734],[21.343,-3.9],[0.293,-18.685],[11.203,-17.886],[-20.809,-15.997],[-28.343,7.38]],"o":[[3.686,-10.499],[-10.332,-3.53],[-7.889,-19.629],[-20.858,3.812],[-0.319,20.38],[-12.982,20.726],[20.809,15.997],[20.269,-5.278]],"v":[[63.893,34.338],[50.149,-17.508],[11.449,-47.95],[-29.484,-82.946],[-43.427,-30.479],[-60.105,6.654],[-54.47,56.197],[20.739,71.237]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":96,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-35.817,5.943]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[37.55,-6.231]],"v":[[96.245,41.976],[72.64,-21.782],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-105.638,14.872],[-85.885,75.896],[7.341,64.341]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":100,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-34.842,10.21]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[24.651,-7.224]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[24.567,78.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":106,"s":[{"i":[[-8.458,22.204],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-21.285,-15.228],[-50.654,14.43]],"o":[[9.099,-23.887],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[30.629,21.912],[38.732,-11.034]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[33.076,104.881]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":111,"s":[{"i":[[-7.842,22.336],[27.954,9.55],[8.735,21.734],[21.343,-3.9],[0.293,-18.685],[11.203,-17.886],[-20.809,-15.997],[-28.343,7.38]],"o":[[3.686,-10.499],[-10.332,-3.53],[-7.889,-19.629],[-20.858,3.812],[-0.319,20.38],[-12.982,20.726],[20.809,15.997],[20.269,-5.278]],"v":[[63.893,34.338],[50.149,-17.508],[11.449,-47.95],[-29.484,-82.946],[-43.427,-30.479],[-60.105,6.654],[-54.47,56.197],[20.739,71.237]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":116,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-35.817,5.943]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[37.55,-6.231]],"v":[[96.245,41.976],[72.64,-21.782],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-105.638,14.872],[-85.885,75.896],[7.341,64.341]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":120,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-34.842,10.21]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[24.651,-7.224]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[24.567,78.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[{"i":[[-8.458,22.204],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-21.285,-15.228],[-50.654,14.43]],"o":[[9.099,-23.887],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[30.629,21.912],[38.732,-11.034]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[33.076,104.881]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":131,"s":[{"i":[[-7.842,22.336],[27.954,9.55],[8.735,21.734],[21.343,-3.9],[0.293,-18.685],[11.203,-17.886],[-20.809,-15.997],[-28.343,7.38]],"o":[[3.686,-10.499],[-10.332,-3.53],[-7.889,-19.629],[-20.858,3.812],[-0.319,20.38],[-12.982,20.726],[20.809,15.997],[20.269,-5.278]],"v":[[63.893,34.338],[50.149,-17.508],[11.449,-47.95],[-29.484,-82.946],[-43.427,-30.479],[-60.105,6.654],[-54.47,56.197],[20.739,71.237]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-35.817,5.943]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[37.55,-6.231]],"v":[[96.245,41.976],[72.64,-21.782],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-105.638,14.872],[-85.885,75.896],[7.341,64.341]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":140,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-34.842,10.21]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[24.651,-7.224]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[24.567,78.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[{"i":[[-8.458,22.204],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-21.285,-15.228],[-50.654,14.43]],"o":[[9.099,-23.887],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[30.629,21.912],[38.732,-11.034]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[33.076,104.881]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":151,"s":[{"i":[[-7.842,22.336],[27.954,9.55],[8.735,21.734],[21.343,-3.9],[0.293,-18.685],[11.203,-17.886],[-20.809,-15.997],[-28.343,7.38]],"o":[[3.686,-10.499],[-10.332,-3.53],[-7.889,-19.629],[-20.858,3.812],[-0.319,20.38],[-12.982,20.726],[20.809,15.997],[20.269,-5.278]],"v":[[63.893,34.338],[50.149,-17.508],[11.449,-47.95],[-29.484,-82.946],[-43.427,-30.479],[-60.105,6.654],[-54.47,56.197],[20.739,71.237]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":156,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-35.817,5.943]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[37.55,-6.231]],"v":[[96.245,41.976],[72.64,-21.782],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-105.638,14.872],[-85.885,75.896],[7.341,64.341]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":160,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-34.842,10.21]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[24.651,-7.224]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[24.567,78.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[{"i":[[-8.458,22.204],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-21.285,-15.228],[-50.654,14.43]],"o":[[9.099,-23.887],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[30.629,21.912],[38.732,-11.034]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[33.076,104.881]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":171,"s":[{"i":[[-7.842,22.336],[27.954,9.55],[8.735,21.734],[21.343,-3.9],[0.293,-18.685],[11.203,-17.886],[-20.809,-15.997],[-28.343,7.38]],"o":[[3.686,-10.499],[-10.332,-3.53],[-7.889,-19.629],[-20.858,3.812],[-0.319,20.38],[-12.982,20.726],[20.809,15.997],[20.269,-5.278]],"v":[[63.893,34.338],[50.149,-17.508],[11.449,-47.95],[-29.484,-82.946],[-43.427,-30.479],[-60.105,6.654],[-54.47,56.197],[20.739,71.237]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":176,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-35.817,5.943]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[37.55,-6.231]],"v":[[96.245,41.976],[72.64,-21.782],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-105.638,14.872],[-85.885,75.896],[7.341,64.341]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":180,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-34.842,10.21]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[24.651,-7.224]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[24.567,78.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":186,"s":[{"i":[[-8.458,22.204],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-21.285,-15.228],[-50.654,14.43]],"o":[[9.099,-23.887],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[30.629,21.912],[38.732,-11.034]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[33.076,104.881]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":191,"s":[{"i":[[-7.842,22.336],[27.954,9.55],[8.735,21.734],[21.343,-3.9],[0.293,-18.685],[11.203,-17.886],[-20.809,-15.997],[-28.343,7.38]],"o":[[3.686,-10.499],[-10.332,-3.53],[-7.889,-19.629],[-20.858,3.812],[-0.319,20.38],[-12.982,20.726],[20.809,15.997],[20.269,-5.278]],"v":[[63.893,34.338],[50.149,-17.508],[11.449,-47.95],[-29.484,-82.946],[-43.427,-30.479],[-60.105,6.654],[-54.47,56.197],[20.739,71.237]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":196,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-35.817,5.943]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[37.55,-6.231]],"v":[[96.245,41.976],[72.64,-21.782],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-105.638,14.872],[-85.885,75.896],[7.341,64.341]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":200,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-34.842,10.21]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[24.651,-7.224]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[24.567,78.438]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":206,"s":[{"i":[[-8.458,22.204],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-21.285,-15.228],[-50.654,14.43]],"o":[[9.099,-23.887],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[30.629,21.912],[38.732,-11.034]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[33.076,104.881]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":210,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-34.842,10.21]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[24.651,-7.224]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[24.567,78.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":306,"s":[{"i":[[-8.458,22.204],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-21.285,-15.228],[-50.654,14.43]],"o":[[9.099,-23.887],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[30.629,21.912],[38.732,-11.034]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[33.076,104.881]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":311,"s":[{"i":[[-7.842,22.336],[27.954,9.55],[8.735,21.734],[21.343,-3.9],[0.293,-18.685],[11.203,-17.886],[-20.809,-15.997],[-28.343,7.38]],"o":[[3.686,-10.499],[-10.332,-3.53],[-7.889,-19.629],[-20.858,3.812],[-0.319,20.38],[-12.982,20.726],[20.809,15.997],[20.269,-5.278]],"v":[[63.893,34.338],[50.149,-17.508],[11.449,-47.95],[-29.484,-82.946],[-43.427,-30.479],[-60.105,6.654],[-54.47,56.197],[20.739,71.237]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":316,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-35.817,5.943]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[37.55,-6.231]],"v":[[96.245,41.976],[72.64,-21.782],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-105.638,14.872],[-85.885,75.896],[7.341,64.341]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":320,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-34.842,10.21]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[24.651,-7.224]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[24.567,78.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":326,"s":[{"i":[[-8.458,22.204],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-21.285,-15.228],[-50.654,14.43]],"o":[[9.099,-23.887],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[30.629,21.912],[38.732,-11.034]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[33.076,104.881]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":331,"s":[{"i":[[-7.842,22.336],[27.954,9.55],[8.735,21.734],[21.343,-3.9],[0.293,-18.685],[11.203,-17.886],[-20.809,-15.997],[-28.343,7.38]],"o":[[3.686,-10.499],[-10.332,-3.53],[-7.889,-19.629],[-20.858,3.812],[-0.319,20.38],[-12.982,20.726],[20.809,15.997],[20.269,-5.278]],"v":[[63.893,34.338],[50.149,-17.508],[11.449,-47.95],[-29.484,-82.946],[-43.427,-30.479],[-60.105,6.654],[-54.47,56.197],[20.739,71.237]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":336,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-35.817,5.943]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[37.55,-6.231]],"v":[[96.245,41.976],[72.64,-21.782],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-105.638,14.872],[-85.885,75.896],[7.341,64.341]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":340,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-34.842,10.21]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[24.651,-7.224]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[24.567,78.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":346,"s":[{"i":[[-8.458,22.204],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-21.285,-15.228],[-50.654,14.43]],"o":[[9.099,-23.887],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[30.629,21.912],[38.732,-11.034]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[33.076,104.881]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":351,"s":[{"i":[[-7.842,22.336],[27.954,9.55],[8.735,21.734],[21.343,-3.9],[0.293,-18.685],[11.203,-17.886],[-20.809,-15.997],[-28.343,7.38]],"o":[[3.686,-10.499],[-10.332,-3.53],[-7.889,-19.629],[-20.858,3.812],[-0.319,20.38],[-12.982,20.726],[20.809,15.997],[20.269,-5.278]],"v":[[63.893,34.338],[50.149,-17.508],[11.449,-47.95],[-29.484,-82.946],[-43.427,-30.479],[-60.105,6.654],[-54.47,56.197],[20.739,71.237]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":356,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-35.817,5.943]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[37.55,-6.231]],"v":[[96.245,41.976],[72.64,-21.782],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-105.638,14.872],[-85.885,75.896],[7.341,64.341]],"c":true}]},{"t":360,"s":[{"i":[[-16.041,16.81],[29.147,4.801],[13.595,19.075],[21.343,-3.9],[6.662,-17.459],[11.203,-17.886],[-24.3,-9.72],[-34.842,10.21]],"o":[[17.646,-18.492],[-23.363,-3.848],[-12.194,-17.109],[-20.858,3.812],[-9.944,26.061],[-12.982,20.726],[26.71,10.684],[24.651,-7.224]],"v":[[90.192,30.839],[71.332,-26.928],[14.408,-50.932],[-29.484,-82.946],[-49.373,-31.729],[-91.894,16.964],[-78.178,71.144],[24.567,78.438]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.811764717102,0.207843139768,0.007843137719,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":20},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.364705890417,0.121568627656,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":337,"st":0,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"eye 7","parent":20,"sr":1,"ks":{"r":{"a":0,"k":-11.94},"p":{"a":1,"k":[{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":90,"s":[111.11,-94.293,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[90.525,-78.814,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":150,"s":[90.525,-78.814,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":180,"s":[111.11,-94.293,0],"to":[0,0,0],"ti":[0,0,0]},{"t":330,"s":[111.11,-94.293,0]}]},"a":{"a":0,"k":[807.102,225.784,0]},"s":{"a":1,"k":[{"i":{"x":[0.26,0.26,0.26],"y":[1,1,1]},"o":{"x":[0.74,0.74,0.74],"y":[0,0,0]},"t":90,"s":[-110,100,100]},{"i":{"x":[0.26,0.26,0.26],"y":[1,1,1]},"o":{"x":[0.74,0.74,0.74],"y":[0,0,0]},"t":120,"s":[-80,100,100]},{"i":{"x":[0.26,0.26,0.26],"y":[1,1,1]},"o":{"x":[0.74,0.74,0.74],"y":[0,0,0]},"t":150,"s":[-80,100,100]},{"i":{"x":[0.26,0.26,0.26],"y":[1,1,1]},"o":{"x":[0.74,0.74,0.74],"y":[0,0,0]},"t":180,"s":[-110,100,100]},{"t":330,"s":[-110,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":141,"s":[{"i":[[0,-8.455],[8.455,0],[0,8.455],[-8.455,0]],"o":[[0,8.455],[-8.455,0],[0,-8.455],[8.455,0]],"v":[[15.31,0],[0,15.31],[-15.31,0],[0,-15.31]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":146,"s":[{"i":[[-0.471,-3.96],[8.396,-1],[0.471,3.96],[-8.396,1]],"o":[[0.471,3.96],[-8.396,1],[-0.471,-3.96],[8.396,-1]],"v":[[14.048,41.39],[-0.3,50.371],[-16.356,45.01],[-2.008,36.029]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":151,"s":[{"i":[[0,-8.455],[8.455,0],[0,8.455],[-8.455,0]],"o":[[0,8.455],[-8.455,0],[0,-8.455],[8.455,0]],"v":[[15.31,0],[0,15.31],[-15.31,0],[0,-15.31]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":156,"s":[{"i":[[-0.471,-3.96],[8.396,-1],[0.471,3.96],[-8.396,1]],"o":[[0.471,3.96],[-8.396,1],[-0.471,-3.96],[8.396,-1]],"v":[[14.048,41.39],[-0.3,50.371],[-16.356,45.01],[-2.008,36.029]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":161,"s":[{"i":[[0,-8.455],[8.455,0],[0,8.455],[-8.455,0]],"o":[[0,8.455],[-8.455,0],[0,-8.455],[8.455,0]],"v":[[15.31,0],[0,15.31],[-15.31,0],[0,-15.31]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[0,-8.455],[8.455,0],[0,8.455],[-8.455,0]],"o":[[0,8.455],[-8.455,0],[0,-8.455],[8.455,0]],"v":[[15.31,0],[0,15.31],[-15.31,0],[0,-15.31]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":185,"s":[{"i":[[-0.471,-3.96],[8.396,-1],[0.471,3.96],[-8.396,1]],"o":[[0.471,3.96],[-8.396,1],[-0.471,-3.96],[8.396,-1]],"v":[[14.048,41.39],[-0.3,50.371],[-16.356,45.01],[-2.008,36.029]],"c":true}]},{"t":190,"s":[{"i":[[0,-8.455],[8.455,0],[0,8.455],[-8.455,0]],"o":[[0,8.455],[-8.455,0],[0,-8.455],[8.455,0]],"v":[[15.31,0],[0,15.31],[-15.31,0],[0,-15.31]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":141,"s":[1,1,1,1]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":146,"s":[0,0,0,1]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":151,"s":[1,1,1,1]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":156,"s":[0,0,0,1]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":161,"s":[1,1,1,1]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":180,"s":[1,1,1,1]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":185,"s":[0,0,0,1]},{"t":190,"s":[1,1,1,1]}]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[807.669,202.82]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":141,"s":[{"i":[[11.074,-29.794],[23.189,8.619],[-11.074,29.794],[-23.189,-8.619]],"o":[[-11.074,29.794],[-23.189,-8.619],[11.074,-29.794],[23.189,8.619]],"v":[[41.988,15.607],[-20.052,53.947],[-41.988,-15.607],[20.052,-53.947]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":146,"s":[{"i":[[-7.023,-6.387],[24.713,-1.134],[-14.263,10.83],[-24.714,1.134]],"o":[[14.126,12.846],[-24.713,1.134],[9.253,-7.026],[24.714,-1.134]],"v":[[39.966,-2.99],[-4.625,34.182],[-49.529,1.116],[2.097,10.189]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":151,"s":[{"i":[[11.074,-29.794],[23.189,8.619],[-11.074,29.794],[-23.189,-8.619]],"o":[[-11.074,29.794],[-23.189,-8.62],[11.074,-29.794],[23.189,8.619]],"v":[[41.988,15.607],[-20.052,53.947],[-41.988,-15.607],[20.052,-53.947]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":156,"s":[{"i":[[-7.023,-6.387],[24.713,-1.134],[-14.263,10.83],[-24.714,1.134]],"o":[[14.126,12.846],[-24.713,1.134],[9.253,-7.026],[24.714,-1.134]],"v":[[39.966,-2.99],[-4.625,34.182],[-49.529,1.116],[2.097,10.189]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":161,"s":[{"i":[[11.074,-29.794],[23.189,8.619],[-11.074,29.794],[-23.189,-8.619]],"o":[[-11.074,29.794],[-23.189,-8.62],[11.074,-29.794],[23.189,8.619]],"v":[[41.988,15.607],[-20.052,53.947],[-41.988,-15.607],[20.052,-53.947]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[11.074,-29.794],[23.189,8.619],[-11.074,29.794],[-23.189,-8.619]],"o":[[-11.074,29.794],[-23.189,-8.62],[11.074,-29.794],[23.189,8.619]],"v":[[41.988,15.607],[-20.052,53.947],[-41.988,-15.607],[20.052,-53.947]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":185,"s":[{"i":[[-7.023,-6.387],[24.713,-1.134],[-14.263,10.83],[-24.714,1.134]],"o":[[14.126,12.846],[-24.713,1.134],[9.253,-7.026],[24.714,-1.134]],"v":[[39.966,-2.99],[-4.625,34.182],[-49.529,1.116],[2.097,10.189]],"c":true}]},{"t":190,"s":[{"i":[[11.074,-29.794],[23.189,8.619],[-11.074,29.794],[-23.189,-8.619]],"o":[[-11.074,29.794],[-23.189,-8.62],[11.074,-29.794],[23.189,8.619]],"v":[[41.988,15.607],[-20.052,53.947],[-41.988,-15.607],[20.052,-53.947]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[807.102,225.784]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":0,"op":337,"st":0,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"eye 6","parent":20,"sr":1,"ks":{"r":{"a":0,"k":-11.94},"p":{"a":1,"k":[{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":90,"s":[-111.344,-43.765,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":120,"s":[-162.651,-35.932,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":1},"o":{"x":0.74,"y":0},"t":150,"s":[-162.651,-35.932,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.26,"y":0.26},"o":{"x":0.74,"y":0.74},"t":180,"s":[-111.344,-43.765,0],"to":[0,0,0],"ti":[0,0,0]},{"t":330,"s":[-111.344,-43.765,0]}]},"a":{"a":0,"k":[807.102,225.784,0]},"s":{"a":1,"k":[{"i":{"x":[0.26,0.26,0.26],"y":[1,1,1]},"o":{"x":[0.74,0.74,0.74],"y":[0,0,0]},"t":90,"s":[80,100,100]},{"i":{"x":[0.26,0.26,0.26],"y":[1,1,1]},"o":{"x":[0.74,0.74,0.74],"y":[0,0,0]},"t":120,"s":[110,100,100]},{"i":{"x":[0.26,0.26,0.26],"y":[1,1,1]},"o":{"x":[0.74,0.74,0.74],"y":[0,0,0]},"t":150,"s":[110,100,100]},{"i":{"x":[0.26,0.26,0.26],"y":[1,1,1]},"o":{"x":[0.74,0.74,0.74],"y":[0,0,0]},"t":180,"s":[80,100,100]},{"t":330,"s":[80,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":141,"s":[{"i":[[0,-8.455],[8.455,0],[0,8.455],[-8.455,0]],"o":[[0,8.455],[-8.455,0],[0,-8.455],[8.455,0]],"v":[[15.31,0],[0,15.31],[-15.31,0],[0,-15.31]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":146,"s":[{"i":[[-0.44,-3.964],[8.404,-0.933],[0.44,3.964],[-8.404,0.933]],"o":[[0.44,3.964],[-8.404,0.933],[-0.44,-3.964],[8.404,-0.933]],"v":[[14.953,42.497],[0.534,51.363],[-15.479,45.876],[-1.06,37.009]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":151,"s":[{"i":[[0,-8.455],[8.455,0],[0,8.455],[-8.455,0]],"o":[[0,8.455],[-8.455,0],[0,-8.455],[8.455,0]],"v":[[15.31,0],[0,15.31],[-15.31,0],[0,-15.31]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":156,"s":[{"i":[[-0.44,-3.964],[8.404,-0.933],[0.44,3.964],[-8.404,0.933]],"o":[[0.44,3.964],[-8.404,0.933],[-0.44,-3.964],[8.404,-0.933]],"v":[[14.953,42.497],[0.534,51.363],[-15.479,45.876],[-1.06,37.009]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":161,"s":[{"i":[[0,-8.455],[8.455,0],[0,8.455],[-8.455,0]],"o":[[0,8.455],[-8.455,0],[0,-8.455],[8.455,0]],"v":[[15.31,0],[0,15.31],[-15.31,0],[0,-15.31]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[0,-8.455],[8.455,0],[0,8.455],[-8.455,0]],"o":[[0,8.455],[-8.455,0],[0,-8.455],[8.455,0]],"v":[[15.31,0],[0,15.31],[-15.31,0],[0,-15.31]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":185,"s":[{"i":[[-0.44,-3.964],[8.404,-0.933],[0.44,3.964],[-8.404,0.933]],"o":[[0.44,3.964],[-8.404,0.933],[-0.44,-3.964],[8.404,-0.933]],"v":[[14.953,42.497],[0.534,51.363],[-15.479,45.876],[-1.06,37.009]],"c":true}]},{"t":190,"s":[{"i":[[0,-8.455],[8.455,0],[0,8.455],[-8.455,0]],"o":[[0,8.455],[-8.455,0],[0,-8.455],[8.455,0]],"v":[[15.31,0],[0,15.31],[-15.31,0],[0,-15.31]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":141,"s":[1,1,1,1]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":146,"s":[0,0,0,1]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":151,"s":[1,1,1,1]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":156,"s":[0,0,0,1]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":161,"s":[1,1,1,1]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":180,"s":[1,1,1,1]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":185,"s":[0,0,0,1]},{"t":190,"s":[1,1,1,1]}]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[807.669,202.82]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":141,"s":[{"i":[[11.074,-29.794],[23.189,8.619],[-11.074,29.794],[-23.189,-8.619]],"o":[[-11.074,29.794],[-23.189,-8.62],[11.074,-29.794],[23.189,8.619]],"v":[[41.988,15.607],[-20.052,53.947],[-41.988,-15.607],[20.052,-53.947]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":146,"s":[{"i":[[-7.542,-5.764],[24.527,-3.238],[-13.287,12.008],[-24.527,3.238]],"o":[[15.17,11.594],[-24.527,3.238],[8.62,-7.79],[24.527,-3.238]],"v":[[38.586,-6.748],[-2.671,34.093],[-50.233,4.978],[1.98,9.614]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":151,"s":[{"i":[[11.074,-29.794],[23.189,8.619],[-11.074,29.794],[-23.189,-8.619]],"o":[[-11.074,29.794],[-23.189,-8.62],[11.074,-29.794],[23.189,8.619]],"v":[[41.988,15.607],[-20.052,53.947],[-41.988,-15.607],[20.052,-53.947]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":156,"s":[{"i":[[-7.542,-5.764],[24.527,-3.238],[-13.287,12.008],[-24.527,3.238]],"o":[[15.17,11.594],[-24.527,3.238],[8.62,-7.79],[24.527,-3.238]],"v":[[38.586,-6.748],[-2.671,34.093],[-50.233,4.978],[1.98,9.614]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":161,"s":[{"i":[[11.074,-29.794],[23.189,8.619],[-11.074,29.794],[-23.189,-8.619]],"o":[[-11.074,29.794],[-23.189,-8.62],[11.074,-29.794],[23.189,8.619]],"v":[[41.988,15.607],[-20.052,53.947],[-41.988,-15.607],[20.052,-53.947]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[11.074,-29.794],[23.189,8.619],[-11.074,29.794],[-23.189,-8.619]],"o":[[-11.074,29.794],[-23.189,-8.62],[11.074,-29.794],[23.189,8.619]],"v":[[41.988,15.607],[-20.052,53.947],[-41.988,-15.607],[20.052,-53.947]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":185,"s":[{"i":[[-7.542,-5.764],[24.527,-3.238],[-13.287,12.008],[-24.527,3.238]],"o":[[15.17,11.594],[-24.527,3.238],[8.62,-7.79],[24.527,-3.238]],"v":[[38.586,-6.748],[-2.671,34.093],[-50.233,4.978],[1.98,9.614]],"c":true}]},{"t":190,"s":[{"i":[[11.074,-29.794],[23.189,8.619],[-11.074,29.794],[-23.189,-8.619]],"o":[[-11.074,29.794],[-23.189,-8.62],[11.074,-29.794],[23.189,8.619]],"v":[[41.988,15.607],[-20.052,53.947],[-41.988,-15.607],[20.052,-53.947]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[807.102,225.784]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":0,"op":337,"st":0,"bm":0},{"ddd":0,"ind":23,"ty":4,"nm":"head 5","parent":25,"sr":1,"ks":{"p":{"a":0,"k":[925.257,236.256,0]},"a":{"a":0,"k":[925.257,236.256,0]},"s":{"a":0,"k":[95,95,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,-59.018],[31.465,-30.519]],"o":[[46.601,42.223],[0,47.326],[0,0]],"v":[[-37.893,-138.848],[37.893,20.927],[-12.338,138.848]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.988235294819,0.933333337307,0.129411771894,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[1125.392,263.667]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":97.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":122.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":147.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":172.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":185,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":197.5,"s":[5]},{"t":210,"s":[5]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":97.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":122.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":147.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":172.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":185,"s":[95]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":197.5,"s":[100]},{"t":210,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":0,"op":337,"st":0,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"head 4","parent":25,"sr":1,"ks":{"p":{"a":0,"k":[925.257,236.256,0]},"a":{"a":0,"k":[925.257,236.256,0]},"s":{"a":0,"k":[95,95,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-44.202,26.657],[-22.974,5.859]],"o":[[19.089,-44.855],[19.757,-11.914],[0,0]],"v":[[-81.211,69.244],[16.836,-42.211],[81.211,-69.244]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[794.41,130.919]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":97.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":122.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":147.5,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":172.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":185,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":197.5,"s":[5]},{"t":210,"s":[5]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":97.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":122.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":147.5,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":172.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":185,"s":[95]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":197.5,"s":[100]},{"t":210,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":0,"op":337,"st":0,"bm":0},{"ddd":0,"ind":25,"ty":4,"nm":"head 3","parent":26,"sr":1,"ks":{"p":{"a":0,"k":[921.372,228.528,0]},"a":{"a":0,"k":[925.257,236.256,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,61.488],[146.117,0],[0,-130.622],[-44.918,-37.209]],"o":[[45.487,-37.503],[0,-130.622],[-146.116,0],[0,61.654],[0,0]],"v":[[192.665,205.307],[264.566,53.899],[-0.001,-205.307],[-264.566,53.899],[-187.544,217.166]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.980392158031,0.564705908298,0.086274512112,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.835294127464,0.152941182256,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[925.257,236.256]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":337,"st":0,"bm":0},{"ddd":0,"ind":26,"ty":4,"nm":"body 7","parent":3,"sr":1,"ks":{"p":{"a":0,"k":[917.434,662.706,0]},"a":{"a":0,"k":[921.372,636.559,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":32,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":62,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":104,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":112.359,"s":[98,102,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":123,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":151,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":165,"s":[103,97,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":182,"s":[100,100,100]},{"t":212,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.419,30.037],[14.511,17.835]],"o":[[2.419,-30.037],[-14.511,-17.835]],"v":[[429.427,39.424],[405.242,-39.424]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":97.5,"s":[5]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":122.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":147.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":172.5,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":185,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":197.5,"s":[5]},{"t":210,"s":[0]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[95]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":97.5,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":122.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":147.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":172.5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":185,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":197.5,"s":[100]},{"t":210,"s":[95]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.988235353956,0.933333393172,0.129411764706,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[710.397,511.356]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[111.605,0],[0,91.545],[-136.041,0],[-9.693,-126.751]],"o":[[-111.039,0],[0,-91.87],[137.88,0],[7.04,92.051]],"v":[[-2.754,132.001],[-249.597,35.676],[-2.754,-132.031],[249.355,44.18]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.980392158031,0.564705908298,0.086274512112,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":22},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.835294127464,0.152941182256,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[921.372,504.528]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":337,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"21_MEGAPHN","refId":"comp_0","sr":1,"ks":{"p":{"a":0,"k":[256,256,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":0,"op":150,"st":-60,"bm":0}]} \ No newline at end of file diff --git a/TMessagesProj/src/main/res/raw/utyan_private.tgs b/TMessagesProj/src/main/res/raw/utyan_private.tgs new file mode 100644 index 000000000..bb7596d61 --- /dev/null +++ b/TMessagesProj/src/main/res/raw/utyan_private.tgs @@ -0,0 +1 @@ +{"tgs":1,"v":"5.5.2.2","fr":60,"ip":0,"op":180,"w":512,"h":512,"nm":"_005_PRIVATE_2_OUT","ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"mouth 3","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"t":72,"s":[100],"h":1},{"t":73,"s":[0],"h":1},{"t":231,"s":[100],"h":1}]},"p":{"a":0,"k":[-1.976,19.749,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":66,"s":[{"i":[[0,0],[-18.512,-15.533]],"o":[[15.578,-1.792],[0,0]],"v":[[41.313,-147.463],[107.283,-131.76]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":73,"s":[{"i":[[0,0],[-19.299,-0.307]],"o":[[24.336,-0.725],[0,0]],"v":[[29.891,-82.114],[108.437,-82.403]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":231,"s":[{"i":[[0,0],[-19.299,-0.307]],"o":[[24.336,-0.725],[0,0]],"v":[[29.891,-82.114],[108.437,-82.403]],"c":false}]},{"t":239,"s":[{"i":[[0,0],[-18.512,-15.533]],"o":[[15.578,-1.792],[0,0]],"v":[[41.313,-147.463],[107.283,-131.76]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":12},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"mouth 2","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"t":72,"s":[100],"h":1},{"t":73,"s":[0],"h":1},{"t":231,"s":[100],"h":1}]},"p":{"a":0,"k":[-1.976,19.749,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":66,"s":[{"i":[[0,0],[17.749,-15.533]],"o":[[-14.936,-1.792],[0,0]],"v":[[-57.636,-147.463],[-120.886,-131.76]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":73,"s":[{"i":[[0,0],[17.323,-0.515]],"o":[[-21.844,-1.219],[0,0]],"v":[[-50.51,-84.123],[-121.014,-84.609]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":231,"s":[{"i":[[0,0],[17.323,-0.515]],"o":[[-21.844,-1.219],[0,0]],"v":[[-50.51,-84.123],[-121.014,-84.609]],"c":false}]},{"t":239,"s":[{"i":[[0,0],[17.749,-15.533]],"o":[[-14.936,-1.792],[0,0]],"v":[[-57.636,-147.463],[-120.886,-131.76]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":12},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":3,"ty":3,"nm":"listik","parent":44,"sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":0,"k":[-48.078,-16.407,0]},"a":{"a":0,"k":[60,60,0]},"s":{"a":0,"k":[90.909,90.909,100]}},"ao":0,"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Layer 18","parent":3,"sr":1,"ks":{"r":{"a":0,"k":-23.142},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.604,"y":0},"t":200,"s":[70.385,22.072,0],"to":[-169.196,6.51,0],"ti":[-70.165,-16.406,0]},{"i":{"x":0.448,"y":1},"o":{"x":0.167,"y":0.167},"t":208,"s":[-107.441,64.862,0],"to":[28.636,6.696,0],"ti":[-82.241,-4.396,0]},{"t":216,"s":[56.885,82.072,0]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.58,"y":0},"t":200,"s":[{"i":[[2.138,34.267],[-32.933,6.797],[-0.573,-28.503],[28.57,-3.25]],"o":[[28.253,-4.951],[2.239,47.855],[-19.765,6.011],[-1.908,-20.152]],"v":[[-46.756,-52.941],[40.808,-66.732],[47.665,69.099],[-42.473,86.261]],"c":true}]},{"i":{"x":0.42,"y":1},"o":{"x":0.167,"y":0.167},"t":208,"s":[{"i":[[-10.631,27.592],[0.219,16.423],[11.114,-25.018],[-0.518,-13.864]],"o":[[-0.53,-13.311],[-15.105,37.206],[-0.618,11.565],[7.988,-17.213]],"v":[[48.798,-43.466],[46.936,-86.02],[-4.438,34.231],[-4.324,80.355]],"c":true}]},{"t":216,"s":[{"i":[[23.198,22.8],[32.106,15.3],[8.709,-27.327],[-29.181,-17.646]],"o":[[-27.795,-12.277],[17.901,27.537],[18.719,11.045],[7.711,-18.922]],"v":[[45.16,-43.972],[-51.807,-89.312],[-50.235,44.827],[35.894,94.179]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.737254917622,0.658823549747,0.443137258291,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392158031,0.792156875134,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":208,"op":216,"st":60,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"h_bl6","parent":6,"sr":1,"ks":{"r":{"a":0,"k":-30.785},"p":{"a":0,"k":[10.878,7.999,0]},"a":{"a":0,"k":[118.345,-12.45,0]},"s":{"a":0,"k":[-100.729,99.309,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":82,"s":[{"i":[[0,0],[-11.994,-9.095]],"o":[[9.287,14.833],[0,0]],"v":[[93.117,-14.995],[124.429,20.228]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":92,"s":[{"i":[[0,0],[-10.609,-10.421]],"o":[[20.324,-0.98],[0,0]],"v":[[93.219,-11.887],[138.32,3.878]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":130,"s":[{"i":[[0,0],[-10.609,-10.421]],"o":[[20.324,-0.98],[0,0]],"v":[[93.219,-11.887],[138.32,3.878]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":149,"s":[{"i":[[0,0],[-12.418,-5.326]],"o":[[17.257,1.576],[0,0]],"v":[[94.564,11.494],[136.845,22.156]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":216,"s":[{"i":[[0,0],[-12.418,-5.326]],"o":[[17.257,1.576],[0,0]],"v":[[94.564,11.494],[136.845,22.156]],"c":false}]},{"t":222,"s":[{"i":[[0,0],[-11.994,-9.095]],"o":[[9.287,14.833],[0,0]],"v":[[93.117,-14.995],[124.429,20.228]],"c":false}]}]},"nm":"Path 2","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8.869},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":-12.14},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":48,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[0]},{"t":240,"s":[5]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":48,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[95]},{"t":240,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"wing_l 2","parent":3,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":80,"s":[-79.621]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":90,"s":[-16.104]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":130,"s":[-16.104]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":149,"s":[-79.621]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":214,"s":[-79.621]},{"t":220,"s":[-79.621]}]},"p":{"a":1,"k":[{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":80,"s":[186.984,66.49,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.24,"y":0.24},"o":{"x":0.76,"y":0.76},"t":90,"s":[188.861,42.204,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":127,"s":[188.861,42.204,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.854,"y":0.854},"o":{"x":0.598,"y":0.598},"t":146,"s":[208.584,66.49,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.117,"y":0.117},"o":{"x":0.216,"y":0.216},"t":189,"s":[208.584,66.49,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":214,"s":[208.584,66.49,0],"to":[0,0,0],"ti":[0,0,0]},{"t":220,"s":[186.984,66.49,0]}]},"a":{"a":0,"k":[-32.709,17.115,0]},"s":{"a":0,"k":[-108.313,111.676,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":82,"s":[{"i":[[-15.518,23.623],[-10.501,20.233],[-2.203,-16.714],[24.446,-28.098]],"o":[[17.635,-13.981],[12.427,-23.944],[2.466,18.709],[-5.574,7.628]],"v":[[-21.788,-3.52],[16.236,-52.819],[40.164,-37.913],[14.556,35.559]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":92,"s":[{"i":[[-15.518,23.623],[-22.788,0.571],[13.574,-9.998],[-2.768,-15.584]],"o":[[7.821,-21.926],[26.968,-0.676],[-15.194,11.191],[-5.574,7.628]],"v":[[-26.3,5.981],[35.638,-36.573],[34.135,-8.423],[18.827,41.687]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":130,"s":[{"i":[[-15.518,23.623],[-22.788,0.571],[13.574,-9.998],[-2.768,-15.584]],"o":[[7.821,-21.926],[26.968,-0.676],[-15.194,11.191],[-5.574,7.628]],"v":[[-26.3,5.981],[35.638,-36.573],[34.135,-8.423],[18.827,41.687]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":149,"s":[{"i":[[-24.791,13.574],[-22.717,-1.893],[14.509,-8.586],[18.172,-13.47]],"o":[[20.619,-8.291],[26.883,2.241],[-16.371,9.688],[-8.503,4.119]],"v":[[-25.583,-13.378],[49.095,-19.123],[44.561,8.701],[-2.499,39.333]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":216,"s":[{"i":[[-24.791,13.574],[-22.717,-1.893],[14.509,-8.586],[18.172,-13.47]],"o":[[20.619,-8.291],[26.883,2.241],[-16.371,9.688],[-8.503,4.119]],"v":[[-25.583,-13.378],[49.095,-19.123],[44.561,8.701],[-2.499,39.333]],"c":false}]},{"t":222,"s":[{"i":[[-15.518,23.623],[-10.501,20.233],[-2.203,-16.714],[24.446,-28.098]],"o":[[17.635,-13.981],[12.427,-23.944],[2.466,18.709],[-5.574,7.628]],"v":[[-21.788,-3.52],[16.236,-52.819],[40.164,-37.913],[14.556,35.559]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.980392156863,0.564705882353,0.086274509804,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":9.091},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.99609375,0.84765625,0.12890625,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"h_bl7","parent":8,"sr":1,"ks":{"r":{"a":0,"k":-113.508},"p":{"a":0,"k":[45.218,-67.381,0]},"a":{"a":0,"k":[118.345,-12.45,0]},"s":{"a":0,"k":[99.839,100.195,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":82,"s":[{"i":[[0,0],[-6.721,-12.556]],"o":[[-5.524,14.651],[0,0]],"v":[[98.906,-27],[102.669,11.163]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[0,0],[-6.721,-12.556]],"o":[[-0.277,14.556],[0,0]],"v":[[96.641,-30.697],[104.039,6.649]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":90,"s":[{"i":[[0,0],[-4.851,-10.603]],"o":[[-2.802,10.278],[0,0]],"v":[[104.349,-24.205],[107.363,5.434]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":94,"s":[{"i":[[0,0],[1.925,-12.159]],"o":[[4.64,9.124],[0,0]],"v":[[116.72,-17.171],[122.293,14.4]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":96,"s":[{"i":[[0,0],[-3.768,-11.285]],"o":[[0.436,9.644],[0,0]],"v":[[108.926,-19.868],[115.492,8.968]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":100,"s":[{"i":[[0,0],[-6.721,-12.556]],"o":[[-0.277,14.556],[0,0]],"v":[[96.641,-30.697],[104.039,6.649]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":158,"s":[{"i":[[0,0],[-6.721,-12.556]],"o":[[-0.277,14.556],[0,0]],"v":[[96.641,-30.697],[104.039,6.649]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":164,"s":[{"i":[[0,0],[3.35,-14.82]],"o":[[5.924,8.852],[0,0]],"v":[[118.463,-26.448],[124.333,9.898]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":170,"s":[{"i":[[0,0],[-7.235,-8.308]],"o":[[-3.116,16.948],[0,0]],"v":[[98.95,-36.707],[106.869,5.189]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":171,"s":[{"i":[[0,0],[-6.721,-12.556]],"o":[[-0.277,14.556],[0,0]],"v":[[96.641,-30.697],[104.039,6.649]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":172,"s":[{"i":[[0,0],[-2.723,-20.18]],"o":[[-4.171,9.995],[0,0]],"v":[[97.834,-43.726],[96.442,-2.347]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":176,"s":[{"i":[[0,0],[5.275,-17.243]],"o":[[0.367,11.045],[0,0]],"v":[[102.264,-36.057],[97.623,1.573]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":214,"s":[{"i":[[0,0],[5.275,-17.243]],"o":[[0.367,11.045],[0,0]],"v":[[102.264,-36.057],[97.623,1.573]],"c":false}]},{"t":220,"s":[{"i":[[0,0],[-6.721,-12.556]],"o":[[-5.524,14.651],[0,0]],"v":[[98.906,-27],[102.669,11.163]],"c":false}]}]},"nm":"Path 2","hd":false},{"ty":"st","c":{"a":0,"k":[0.988235294118,0.933333333333,0.129411764706,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8.869},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":-12.14},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":48,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[0]},{"t":240,"s":[5]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":48,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[95]},{"t":240,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"wing_l","parent":3,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":80,"s":[65.322]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":86,"s":[16.9]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":92,"s":[86.199]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":98,"s":[65.322]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[65.322]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":161.998,"s":[86.199]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[16.9]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":174,"s":[65.322]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":214,"s":[65.322]},{"t":220,"s":[65.322]}]},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":80,"s":[-3.643,73.044,0],"to":[-2.541,3.28,0],"ti":[2.541,-3.28,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":92,"s":[-18.891,92.723,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":98,"s":[-18.891,92.723,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":104,"s":[-18.891,92.723,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":156,"s":[-18.891,92.723,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":161.998,"s":[-18.891,92.723,0],"to":[2.541,-3.28,0],"ti":[-2.541,3.28,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":174,"s":[-3.643,73.044,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":214,"s":[-3.643,73.044,0],"to":[0,0,0],"ti":[0,0,0]},{"t":220,"s":[-3.643,73.044,0]}]},"a":{"a":0,"k":[-6.071,-53.434,0]},"s":{"a":0,"k":[111.313,108.666,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":82,"s":[{"i":[[-22.17,-2.588],[-11.104,9.077],[3.54,-19.76],[36.979,-4.073]],"o":[[13.598,1.587],[27.749,-22.686],[-1.079,6.022],[-31.811,3.504]],"v":[[-9.799,-53.739],[36.486,-70.936],[66.395,-54.291],[22.065,-15.61]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[-20.898,-2.439],[-10.466,8.556],[3.337,-18.626],[34.856,-3.839]],"o":[[12.818,1.496],[26.157,-21.384],[-1.017,5.677],[-29.986,3.303]],"v":[[-8.147,-54.436],[35.481,-70.646],[63.674,-54.956],[9.109,-4.158]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":90,"s":[{"i":[[-18.532,3.346],[-11.599,6.232],[1.479,-14.023],[35.35,-2.441]],"o":[[18.281,4.59],[29.086,-15.571],[-1.044,9.899],[-27.012,9.565]],"v":[[-10.731,-61.812],[36.452,-75.662],[61.689,-59.532],[13.589,-17.161]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":94,"s":[{"i":[[-11.772,19.873],[-14.835,-0.411],[14.643,-8.634],[1.007,-10.96]],"o":[[10.727,-18.11],[37.455,1.038],[-7.562,4.459],[-3.025,32.908]],"v":[[-18.465,-62.383],[39.227,-89.99],[53.213,-61.502],[33.359,-36.338]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":96,"s":[{"i":[[-14.038,14.977],[-14.022,1.657],[6.73,-15.87],[10.786,-10.168]],"o":[[11.353,-13.816],[35.34,-4.134],[-5.082,11.983],[-9.235,24.516]],"v":[[-16.576,-60.499],[38.629,-85.837],[58.368,-61.075],[32.409,-27.526]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":100,"s":[{"i":[[-22.17,-2.588],[-11.104,9.077],[7.194,-18.645],[21.912,-7.177]],"o":[[13.598,1.587],[27.749,-22.686],[-2.202,5.708],[-30.414,9.961]],"v":[[-9.799,-53.739],[36.486,-70.936],[63.538,-55.635],[26.447,-12.818]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":158,"s":[{"i":[[-22.17,-2.588],[-11.104,9.077],[7.194,-18.645],[21.912,-7.177]],"o":[[13.598,1.587],[27.749,-22.686],[-2.202,5.708],[-30.414,9.961]],"v":[[-9.799,-53.739],[36.486,-70.936],[63.538,-55.635],[26.447,-12.818]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":164,"s":[{"i":[[-11.772,19.873],[-21.302,-2.54],[17.998,-8.634],[1.841,-15.89]],"o":[[10.727,-18.11],[37.206,4.437],[-9.294,4.459],[-3.812,32.897]],"v":[[-19.897,-60.243],[39.227,-89.99],[49.858,-61.502],[20.969,-25.439]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":170,"s":[{"i":[[-18.719,-2.185],[-9.375,7.664],[2.989,-16.684],[31.222,-3.439]],"o":[[11.481,1.34],[23.43,-19.154],[-0.911,5.085],[-26.859,2.958]],"v":[[-7.709,-52.22],[33.761,-68.123],[59.015,-54.069],[10.138,-8.566]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":171,"s":[{"i":[[-20.03,-0.995],[-11.72,6.053],[4.709,-15.329],[31.726,-4.052]],"o":[[12.384,0.549],[25.872,-16.797],[-1.691,4.59],[-28.734,4.386]],"v":[[-13.396,-49.64],[36.859,-67.035],[61.358,-50.994],[10.396,-6.65]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":172,"s":[{"i":[[-22.337,1.099],[-15.846,3.219],[7.735,-12.945],[32.611,-5.131]],"o":[[13.971,-0.842],[30.17,-12.648],[-3.063,3.719],[-32.031,6.898]],"v":[[-11.898,-51.745],[42.311,-65.121],[65.482,-45.585],[10.848,-3.278]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":176,"s":[{"i":[[-18.573,12.381],[-26.752,-15.086],[18.977,-6.547],[13.133,-8.809]],"o":[[12.432,-8.287],[17.477,9.856],[-7.233,2.495],[-26.578,17.828]],"v":[[-9.799,-53.739],[59.493,-56.601],[58.25,-31.897],[21.044,-8.956]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":214,"s":[{"i":[[-18.573,12.381],[-26.752,-15.086],[18.977,-6.547],[13.133,-8.809]],"o":[[12.432,-8.287],[17.477,9.856],[-7.233,2.495],[-26.578,17.828]],"v":[[-9.799,-53.739],[59.493,-56.601],[58.25,-31.897],[21.044,-8.956]],"c":false}]},{"t":220,"s":[{"i":[[-22.17,-2.588],[-11.104,9.077],[3.54,-19.76],[36.979,-4.073]],"o":[[13.598,1.587],[27.749,-22.686],[-1.079,6.022],[-31.811,3.504]],"v":[[-9.799,-53.739],[36.486,-70.936],[66.395,-54.291],[22.065,-15.61]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.980392156863,0.564705882353,0.086274509804,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":9.091},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.99609375,0.84765625,0.12890625,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Layer 19","parent":3,"sr":1,"ks":{"r":{"a":0,"k":-23.142},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.604,"y":0},"t":200,"s":[70.385,22.072,0],"to":[-169.196,6.51,0],"ti":[-70.165,-16.406,0]},{"i":{"x":0.448,"y":1},"o":{"x":0.167,"y":0.167},"t":208,"s":[-107.441,64.862,0],"to":[28.636,6.696,0],"ti":[-82.241,-4.396,0]},{"t":216,"s":[56.885,82.072,0]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.58,"y":0},"t":200,"s":[{"i":[[2.138,34.267],[-32.933,6.797],[-0.573,-28.503],[28.57,-3.25]],"o":[[28.253,-4.951],[2.239,47.855],[-19.765,6.011],[-1.908,-20.152]],"v":[[-46.756,-52.941],[40.808,-66.732],[47.665,69.099],[-42.473,86.261]],"c":true}]},{"i":{"x":0.42,"y":1},"o":{"x":0.167,"y":0.167},"t":208,"s":[{"i":[[-10.631,27.592],[0.219,16.423],[11.114,-25.018],[-0.518,-13.864]],"o":[[-0.53,-13.311],[-15.105,37.206],[-0.618,11.565],[7.988,-17.213]],"v":[[48.798,-43.466],[46.936,-86.02],[-4.438,34.231],[-4.324,80.355]],"c":true}]},{"t":216,"s":[{"i":[[23.198,22.8],[32.106,15.3],[8.709,-27.327],[-29.181,-17.646]],"o":[[-27.795,-12.277],[17.901,27.537],[18.719,11.045],[7.711,-18.922]],"v":[[45.16,-43.972],[-51.807,-89.312],[-50.235,44.827],[35.894,94.179]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.737254917622,0.658823549747,0.443137258291,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392158031,0.792156875134,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":216,"op":242,"st":60,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"z_tbl","parent":11,"sr":1,"ks":{"p":{"a":0,"k":[-18.419,-0.37,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,-3.109],[0,3.109]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":98,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[36.852,-4.175],[36.852,-0.437]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":156,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[36.852,-4.175],[36.852,-0.437]],"c":false}]},{"t":162,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,-3.109],[0,3.109]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.501960813999,0.501960813999,0.501960813999,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":80,"op":174,"st":60,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"zippo_t","parent":14,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":92,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":94,"s":[-133.248]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":98,"s":[-125.742]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[-125.742]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[-133.248]},{"t":162,"s":[0]}]},"p":{"a":0,"k":[-32.462,-26.015,0]},"a":{"a":0,"k":[-32.462,16.453,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[9.839,0],[0,0],[0,-9.839],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[-9.839,0],[0,0],[0,0],[0,0],[0,0],[0,-9.839]],"v":[[14.647,-16.453],[-14.647,-16.453],[-32.462,1.362],[-32.462,16.453],[-29.387,16.453],[32.462,16.453],[32.462,1.362]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":98,"s":[{"i":[[9.839,0],[0,0],[0,-9.839],[0,0],[-32.472,0.372],[0,0],[0,0]],"o":[[0,0],[-9.839,0],[0,0],[0,0],[32.472,-0.372],[0,0],[0,-9.839]],"v":[[14.647,-16.453],[-14.647,-16.453],[-32.462,1.362],[-32.462,16.453],[-0.842,10.064],[32.462,16.453],[32.462,1.362]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":156,"s":[{"i":[[9.839,0],[0,0],[0,-9.839],[0,0],[-32.472,0.372],[0,0],[0,0]],"o":[[0,0],[-9.839,0],[0,0],[0,0],[32.472,-0.372],[0,0],[0,-9.839]],"v":[[14.647,-16.453],[-14.647,-16.453],[-32.462,1.362],[-32.462,16.453],[-0.842,10.064],[32.462,16.453],[32.462,1.362]],"c":true}]},{"t":162,"s":[{"i":[[9.839,0],[0,0],[0,-9.839],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[-9.839,0],[0,0],[0,0],[0,0],[0,0],[0,-9.839]],"v":[[14.647,-16.453],[-14.647,-16.453],[-32.462,1.362],[-32.462,16.453],[-29.387,16.453],[32.462,16.453],[32.462,1.362]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.305882364511,0.301960796118,0.301960796118,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.501960813999,0.501960813999,0.501960813999,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":80,"op":174,"st":60,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"zippo_t 2","parent":11,"sr":1,"ks":{"p":{"a":0,"k":[-32.462,16.453,0]},"a":{"a":0,"k":[-32.462,16.453,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[0,-9.839],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,-9.839]],"v":[[-32.462,1.362],[-32.462,16.453],[-29.387,16.453],[32.462,16.453],[32.462,1.362]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":98,"s":[{"i":[[0,-9.839],[0,0],[-32.472,0.372],[0,0],[0,0]],"o":[[0,0],[0,0],[32.472,-0.372],[0,0],[0,-9.839]],"v":[[-32.462,1.362],[-32.462,16.453],[0.004,22.583],[32.462,16.453],[32.462,1.362]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":156,"s":[{"i":[[0,-9.839],[0,0],[-32.472,0.372],[0,0],[0,0]],"o":[[0,0],[0,0],[32.472,-0.372],[0,0],[0,-9.839]],"v":[[-32.462,1.362],[-32.462,16.453],[0.004,22.583],[32.462,16.453],[32.462,1.362]],"c":true}]},{"t":162,"s":[{"i":[[0,-9.839],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,-9.839]],"v":[[-32.462,1.362],[-32.462,16.453],[-29.387,16.453],[32.462,16.453],[32.462,1.362]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.305882364511,0.301960796118,0.301960796118,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.305882352941,0.301960784314,0.301960784314,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":80,"op":174,"st":60,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"z_bbl","parent":14,"sr":1,"ks":{"p":{"a":0,"k":[-18.419,-4.333,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,-10.506],[0,10.506]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.501960813999,0.501960813999,0.501960813999,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":80,"op":174,"st":60,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"zippo_b","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":158,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":164,"s":[72.44]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":170,"s":[-13.807]},{"t":174,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":80,"s":[153.959,431.565,0],"to":[3.333,-5.167,0],"ti":[-1.667,-1.5,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86,"s":[173.959,400.565,0],"to":[1.667,1.5,0],"ti":[1.667,-6.667,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":92,"s":[163.959,440.565,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":162,"s":[163.959,440.565,0],"to":[1.667,-6.667,0],"ti":[1.667,1.5,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":168,"s":[173.959,400.565,0],"to":[-1.667,-1.5,0],"ti":[3.333,-5.167,0]},{"t":174,"s":[153.959,431.565,0]}]},"s":{"a":0,"k":[-75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-9.839,0],[0,0],[0,9.839],[0,0]],"o":[[0,0],[0,9.839],[0,0],[9.839,0],[0,0],[0,0]],"v":[[-32.462,-26.015],[-32.462,8.199],[-14.647,26.015],[14.647,26.015],[32.462,8.199],[32.462,-26.015]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.305882364511,0.301960796118,0.301960796118,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.501960813999,0.501960813999,0.501960813999,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":80,"op":174,"st":60,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"z_th","parent":14,"sr":1,"ks":{"p":{"a":0,"k":[-20.459,-39.065,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[11.244,-6.763],[11.244,-0.257]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.501960813999,0.501960813999,0.501960813999,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[34.025,12.952],[0,12.952],[0,-16.621],[34.025,-16.621]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.501960813999,0.501960813999,0.501960813999,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.800000011921,0.796078443527,0.796078443527,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-5.302],[5.302,0],[0,5.302],[-5.302,0]],"o":[[0,5.302],[-5.302,0],[0,-5.302],[5.302,0]],"v":[[52.036,-1.834],[42.436,7.765],[32.837,-1.834],[42.436,-11.434]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false}],"ip":80,"op":174,"st":60,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"z_flame","parent":14,"sr":1,"ks":{"p":{"a":0,"k":[-3.031,-59.232,0]},"a":{"a":0,"k":[123.928,26.832,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":92,"s":[0,0,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":96,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":100,"s":[100,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":104,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":108,"s":[100,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":112,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":116,"s":[100,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":120,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":124,"s":[100,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":128,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":132,"s":[100,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":136,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":140,"s":[100,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":144,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":148,"s":[100,120,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":152,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":156,"s":[100,120,100]},{"t":160,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.734,4.283],[0,-9.165],[-5.734,-4.283],[0,9.165]],"o":[[-5.734,4.283],[0,9.165],[5.734,-4.283],[0,-9.165]],"v":[[123.928,-16.055],[114.334,5.389],[123.928,26.832],[133.522,5.389]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.654901960784,0.964705942191,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[10.232,7.642],[0,-16.355],[-10.232,-7.642],[0,16.355]],"o":[[-10.232,7.642],[0,16.355],[10.232,-7.642],[0,-16.355]],"v":[[123.928,-49.7],[106.807,-11.434],[123.928,26.832],[141.048,-11.434]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.655912990196,0.965496407303,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":92,"op":160,"st":60,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"Layer 21","parent":3,"sr":1,"ks":{"r":{"a":0,"k":-23.142},"p":{"a":0,"k":[51.885,-30.571,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[{"i":[[10.746,-0.863],[-4.622,-3.497],[-25.29,-16.048],[-6.466,-2.423]],"o":[[3.302,1.948],[19.54,14.783],[7.666,4.864],[1.366,-5.654]],"v":[[8.173,-203.284],[6.419,-196.389],[118.355,-156.314],[121.807,-157.769]],"c":true}]},{"t":175,"s":[{"i":[[2.187,-0.19],[-1.126,-0.38],[-5.147,-3.542],[-1.316,-0.535]],"o":[[0.672,0.43],[6.828,2.306],[1.56,1.074],[0.278,-1.248]],"v":[[53.971,-185.926],[55.823,-185.759],[75.415,-177.321],[77.098,-175.88]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.208700980392,0.18717955047,0.127995599485,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":165,"s":[10]},{"t":175,"s":[10]}]},"lc":2,"lj":2,"bm":0,"d":[{"n":"d","nm":"dash","v":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":166,"s":[1]},{"t":175,"s":[1]}]}},{"n":"g","nm":"gap","v":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":166,"s":[1]},{"t":175,"s":[20]}]}},{"n":"o","nm":"offset","v":{"a":0,"k":0}}],"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":166,"op":176,"st":60,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"Shape Layer 4","parent":21,"sr":1,"ks":{"r":{"a":0,"k":2.624},"p":{"a":0,"k":[-65.466,123.808,0]},"a":{"a":0,"k":[-86.966,119.172,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":101,"s":[0,0,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":106,"s":[37.5,37.5,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":111.078,"s":[75,75,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":114.463,"s":[45,45,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":119.541,"s":[60,60,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":124.615,"s":[37.5,37.5,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":128,"s":[75,75,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":131.385,"s":[45,45,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":136.463,"s":[60,60,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":141.541,"s":[37.5,37.5,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":146.615,"s":[75,75,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":150,"s":[45,45,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":153.461,"s":[37.5,37.5,100]},{"t":157,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[17,22],[-8,-14]],"o":[[-13.5,21],[8,14]],"v":[[-86.5,64],[-89.5,116.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.549019607843,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.549019607843,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":101,"op":166,"st":60,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"Shape Layer 3","parent":21,"sr":1,"ks":{"r":{"a":0,"k":-4.938},"p":{"a":0,"k":[-101.966,115.672,0]},"a":{"a":0,"k":[-86.966,119.172,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":101,"s":[0,0,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":106,"s":[37.5,37.5,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":111.43,"s":[75,75,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":115.049,"s":[45,45,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":120.477,"s":[60,60,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":125.904,"s":[37.5,37.5,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":129.523,"s":[75,75,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":133.141,"s":[45,45,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":138.57,"s":[60,60,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":144,"s":[37.5,37.5,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":153.461,"s":[37.5,37.5,100]},{"t":157,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[17,22],[-8,-14]],"o":[[-13.5,21],[8,14]],"v":[[-86.5,64],[-89.5,116.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.549019607843,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.549019607843,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":101,"op":166,"st":60,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"Shape Layer 2","parent":21,"sr":1,"ks":{"p":{"a":0,"k":[-86.966,119.672,0]},"a":{"a":0,"k":[-86.966,119.172,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":101,"s":[0,0,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":106,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":109.619,"s":[60,60,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":115.049,"s":[80,80,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":120.475,"s":[50,50,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":126,"s":[80,80,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":129.523,"s":[60,60,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":134.951,"s":[80,80,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":140.379,"s":[50,50,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":143.998,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":144,"s":[80,80,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":152,"s":[80,80,100]},{"t":157,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[17,22],[-8,-14]],"o":[[-13.5,21],[8,14]],"v":[[-86.5,64],[-89.5,116.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.549019607843,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.549019607843,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":101,"op":166,"st":60,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"Shape Layer 1","parent":23,"sr":1,"ks":{"r":{"a":0,"k":23.142},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[-55.274,68.631,0],"to":[10.704,-19.531,0],"ti":[-12.248,23.143,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[8.95,-48.558,0],"to":[12.248,-23.143,0],"ti":[-1.543,3.611,0]},{"t":165,"s":[18.211,-70.225,0]}]},"a":{"a":0,"k":[-87.854,104.311,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":101,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0.787,-1.019],[0.444,-1.17],[0.173,-1.788],[-4.451,3.089],[0.578,1.95],[-0.087,0],[1.013,-0.961],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-0.477,0.618],[-0.432,1.139],[-0.345,3.566],[2.169,-1.505],[-0.448,-1.512],[0.204,0],[-1.115,1.058],[0,0],[0,0],[0,0]],"v":[[-90.044,104.666],[-91.545,109.293],[-93.234,107.441],[-94.974,105.534],[-96.427,106.913],[-97.869,109.561],[-98.833,113.92],[-82.669,114.786],[-81.308,108.768],[-82.327,106.112],[-84.048,107.99],[-86.4,110.161],[-88.05,107.673],[-89.081,106.118]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[2.176,-2.82],[1.228,-3.236],[0.478,-4.945],[-12.314,8.546],[1.6,5.396],[-0.24,0],[2.801,-2.659],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-1.319,1.71],[-1.195,3.151],[-0.954,9.866],[6,-4.164],[-1.24,-4.182],[0.564,0],[-3.085,2.928],[0,0],[0,0],[0,0]],"v":[[-87.907,88],[-92.058,100.8],[-96.732,95.677],[-101.547,90.4],[-105.566,94.214],[-109.555,101.54],[-112.221,113.6],[-67.503,115.995],[-63.738,99.347],[-66.558,92],[-71.319,97.195],[-77.826,103.2],[-82.389,96.319],[-85.243,92.017]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":113,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[2.763,-2.422],[1.73,-3.618],[0.55,-3.646],[-15.54,7.084],[1.935,4.895],[-0.301,-0.011],[3.544,-2.25],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-1.955,1.714],[-1.197,2.502],[-1.323,8.776],[7.572,-3.452],[-1.499,-3.794],[0.707,0.025],[-3.904,2.478],[0,0],[0,0],[0,0]],"v":[[-83.638,84.223],[-91.255,102.102],[-98.17,105.562],[-104.758,85.754],[-108.594,102.482],[-113.954,93.211],[-116.684,112.636],[-60.688,116.791],[-52.879,96.454],[-59.567,90.51],[-65.225,99.814],[-74.204,109.139],[-75.583,88.907],[-82.602,94.559]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":116,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[3.35,-2.025],[1.584,-4.781],[0.849,-3.853],[-18.765,5.622],[2.269,4.395],[-0.362,-0.022],[4.287,-1.842],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-2.031,1.228],[-1.543,4.656],[-1.693,7.686],[9.144,-2.74],[-1.759,-3.406],[0.85,0.051],[-4.722,2.029],[0,0],[0,0],[0,0]],"v":[[-83.244,104.696],[-90.452,103.405],[-97.357,98.948],[-105.095,107.983],[-111.997,87.75],[-117.492,97.879],[-121.146,111.671],[-53.873,117.587],[-49.146,109.937],[-54.826,112.27],[-58.505,94.309],[-69.083,106.578],[-73.777,91.996],[-78.336,104.475]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":119,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[3.937,-1.628],[2.285,-2.04],[1.034,-3.306],[-21.99,4.161],[2.604,3.894],[-0.422,-0.032],[5.03,-1.434],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-2.387,0.987],[-2.225,1.986],[-2.062,6.596],[10.715,-2.027],[-2.018,-3.018],[0.993,0.076],[-5.54,1.579],[0,0],[0,0],[0,0]],"v":[[-81.85,96.544],[-89.65,104.707],[-97.67,100.584],[-105.931,96.336],[-113.149,98.393],[-120.45,102.847],[-125.609,110.707],[-47.057,118.383],[-39.787,107.544],[-44.459,102.155],[-53.035,105.053],[-64.712,108.266],[-72.47,102.96],[-77.32,99.642]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":123,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[4.524,-1.23],[2.068,-3.477],[1.219,-2.76],[-25.216,2.699],[2.938,3.393],[-0.483,-0.043],[5.773,-1.025],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-2.743,0.746],[-2.014,3.386],[-2.432,5.506],[12.287,-1.315],[-2.277,-2.63],[1.135,0.102],[-6.359,1.129],[0,0],[0,0],[0,0]],"v":[[-79.456,95.517],[-89.972,109.76],[-98.233,93.219],[-109.643,106.44],[-117.927,92.536],[-125.185,99.73],[-130.072,109.742],[-40.242,119.178],[-31.303,101.276],[-39.343,111.665],[-47.191,95.922],[-60.341,109.955],[-68.164,93.673],[-74.314,107.241]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[5.307,-0.701],[3.108,-1.109],[1.466,-2.031],[-29.516,0.75],[3.385,2.726],[-0.564,-0.058],[6.764,-0.481],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.218,0.425],[-3.026,1.08],[-2.925,4.052],[14.383,-0.365],[-2.623,-2.113],[1.326,0.136],[-7.45,0.529],[0,0],[0,0],[0,0]],"v":[[-77.888,110.064],[-86.151,95.621],[-99.149,108.025],[-109.341,93.078],[-119.922,107.143],[-128.675,97.114],[-136.022,108.456],[-31.155,120.239],[-21.158,113.92],[-27.896,103.804],[-39.065,114.664],[-53.138,99.332],[-65.256,112.375],[-70.909,99.197]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":129,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[5.406,-0.622],[3.24,-1.198],[1.513,-2.012],[-30.033,0.31],[3.414,2.78],[-0.573,-0.066],[6.886,-0.38],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.278,0.377],[-3.155,1.167],[-3.018,4.014],[14.634,-0.151],[-2.646,-2.154],[1.347,0.156],[-7.584,0.419],[0,0],[0,0],[0,0]],"v":[[-77.854,109.23],[-89.099,111.134],[-97.87,95.375],[-110.714,107.762],[-119.219,91.432],[-130.55,105.903],[-137.699,108.03],[-30.885,120.862],[-19.236,115.169],[-27.701,117.222],[-38.205,99.287],[-55.935,101.722],[-63.186,96.606],[-71.422,105.581]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":132,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[5.505,-0.544],[3.373,-1.287],[1.56,-1.992],[-30.55,-0.129],[3.443,2.833],[0.094,-0.58],[5.324,7.252],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.338,0.33],[-3.284,1.254],[-3.112,3.975],[14.886,0.063],[-2.668,-2.196],[-3.711,22.901],[-4.571,-6.226],[0,0],[0,0],[0,0]],"v":[[-78.07,90.521],[-88.922,107.272],[-98.84,88.226],[-111.961,105.945],[-121.516,90.596],[-131.676,102.692],[-139.376,107.603],[-30.615,121.485],[-17.315,116.419],[-25.131,101.016],[-37.221,102.285],[-54.607,112.736],[-65.116,108.338],[-71.685,105.589]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":135,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[10.168,-15.099],[3.505,-1.377],[1.607,-1.973],[-31.066,-0.569],[3.472,2.887],[-0.591,-0.083],[7.129,-0.18],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-1.904,2.828],[-3.413,1.34],[-3.206,3.936],[15.138,0.277],[-2.691,-2.238],[1.39,0.195],[-7.852,0.198],[0,0],[0,0],[0,0]],"v":[[-79.411,111.438],[-89.495,107.035],[-99.061,89.076],[-112.833,105.378],[-123.563,104.885],[-129.552,89.982],[-141.053,107.177],[-30.345,122.108],[-14.519,102.418],[-25.935,112.059],[-36.736,94.907],[-54.654,113.001],[-65.296,108.445],[-71.949,105.597]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[5.703,-0.387],[3.637,-1.466],[1.654,-1.953],[-31.583,-1.008],[3.502,2.941],[-0.601,-0.092],[7.251,-0.079],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.458,0.235],[-3.542,1.427],[-3.299,3.897],[15.39,0.491],[-2.714,-2.279],[1.411,0.215],[-7.986,0.087],[0,0],[0,0],[0,0]],"v":[[-77.377,89.229],[-90.068,106.798],[-99.281,95.302],[-112.206,87.561],[-124.735,106.799],[-133.303,88.021],[-142.729,106.75],[-30.075,122.73],[-13.472,118.918],[-24.615,101.228],[-38.001,104.28],[-54.701,113.265],[-63.976,97.302],[-72.212,105.606]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":141,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[5.802,-0.309],[3.77,-1.555],[1.701,-1.934],[-32.1,-1.447],[3.531,2.995],[-0.61,-0.1],[7.372,0.021],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.518,0.187],[-3.671,1.514],[-3.393,3.858],[15.642,0.705],[-2.737,-2.321],[1.433,0.235],[-8.12,-0.023],[0,0],[0,0],[0,0]],"v":[[-79.968,108.645],[-88.266,91.811],[-102.001,102.402],[-111.828,88.869],[-124.782,104.089],[-135.804,100.936],[-144.406,106.324],[-29.805,123.353],[-11.551,120.168],[-23.794,104.771],[-37.642,113.652],[-53.249,101.78],[-67.281,112.659],[-72.475,105.614]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":143,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[5.703,-0.387],[3.637,-1.466],[1.654,-1.953],[-31.583,-1.008],[3.502,2.941],[-0.601,-0.092],[7.251,-0.079],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.458,0.235],[-3.542,1.427],[-3.299,3.897],[15.39,0.491],[-2.714,-2.279],[1.411,0.215],[-7.986,0.087],[0,0],[0,0],[0,0]],"v":[[-77.377,89.229],[-90.068,106.798],[-99.281,95.302],[-112.206,87.561],[-124.735,106.799],[-133.303,88.021],[-142.729,106.75],[-30.075,122.73],[-13.472,118.918],[-24.615,101.228],[-38.001,104.28],[-54.701,113.265],[-63.976,97.302],[-72.212,105.606]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":145,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[5.505,-0.544],[3.373,-1.287],[1.56,-1.992],[-30.489,-1.928],[3.443,2.833],[0.094,-0.58],[5.324,7.252],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.338,0.33],[-3.284,1.254],[-3.112,3.975],[18.596,1.176],[-2.668,-2.196],[-3.711,22.901],[-4.571,-6.226],[0,0],[0,0],[0,0]],"v":[[-78.07,90.521],[-88.922,107.272],[-98.84,88.226],[-111.961,105.945],[-121.516,90.596],[-131.676,102.692],[-144.126,106.103],[-30.115,123.735],[-11.315,121.169],[-25.131,101.016],[-37.221,102.285],[-54.607,112.736],[-65.116,108.338],[-71.685,105.589]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":148,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[10.168,-15.099],[3.505,-1.377],[1.607,-1.973],[-31.066,-0.569],[3.472,2.887],[-0.591,-0.083],[7.129,-0.18],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-1.904,2.828],[-3.413,1.34],[-3.206,3.936],[15.138,0.277],[-2.691,-2.238],[1.39,0.195],[-7.852,0.198],[0,0],[0,0],[0,0]],"v":[[-79.411,111.438],[-89.495,107.035],[-99.061,89.076],[-112.833,105.378],[-123.563,104.885],[-129.552,89.982],[-146.803,104.677],[-18.845,125.108],[-14.519,102.418],[-25.935,112.059],[-36.736,94.907],[-54.654,113.001],[-65.296,108.445],[-71.949,105.597]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":151,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[5.703,-0.387],[3.637,-1.466],[1.654,-1.953],[-31.583,-1.008],[3.502,2.941],[-0.601,-0.092],[7.251,-0.079],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.458,0.235],[-3.542,1.427],[-3.299,3.897],[15.39,0.491],[-2.714,-2.279],[1.411,0.215],[-7.986,0.087],[0,0],[0,0],[0,0]],"v":[[-77.377,89.229],[-90.068,106.798],[-99.281,95.302],[-112.206,87.561],[-124.735,106.799],[-133.303,88.021],[-146.979,102],[-30.575,125.48],[-13.222,121.918],[-24.615,101.228],[-38.001,104.28],[-54.701,113.265],[-63.976,97.302],[-72.212,105.606]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":154,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[5.802,-0.309],[3.77,-1.555],[1.701,-1.934],[-32.1,-1.447],[3.531,2.995],[-0.61,-0.1],[7.372,0.021],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.518,0.187],[-3.671,1.514],[-3.393,3.858],[15.642,0.705],[-2.737,-2.321],[1.433,0.235],[-8.12,-0.023],[0,0],[0,0],[0,0]],"v":[[-79.968,108.645],[-88.266,91.811],[-102.001,102.402],[-111.828,88.869],[-124.782,104.089],[-135.804,100.936],[-147.906,100.574],[-31.055,125.853],[-11.551,120.168],[-23.794,104.771],[-37.642,113.652],[-53.249,101.78],[-67.281,112.659],[-72.475,105.614]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":156,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[5.703,-0.387],[3.637,-1.466],[1.654,-1.953],[-31.583,-1.008],[3.502,2.941],[-0.601,-0.092],[7.251,-0.079],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.458,0.235],[-3.542,1.427],[-3.299,3.897],[15.39,0.491],[-2.714,-2.279],[1.411,0.215],[-7.986,0.087],[0,0],[0,0],[0,0]],"v":[[-77.377,89.229],[-90.068,106.798],[-99.281,95.302],[-112.206,87.561],[-123.485,99.799],[-135.553,77.021],[-150.479,99.25],[-30.575,126.48],[-16.222,124.918],[-24.615,101.228],[-38.001,104.28],[-54.701,113.265],[-63.976,97.302],[-72.212,105.606]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":158,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[5.703,-0.387],[3.637,-1.466],[1.654,-1.953],[-31.583,-1.008],[3.502,2.941],[-0.601,-0.092],[7.251,-0.079],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.458,0.235],[-3.542,1.427],[-3.299,3.897],[15.39,0.491],[-2.714,-2.279],[1.411,0.215],[-7.986,0.087],[0,0],[0,0],[0,0]],"v":[[-77.377,89.229],[-90.068,106.798],[-99.281,95.302],[-112.206,87.561],[-123.985,99.299],[-133.303,88.021],[-149.729,98.75],[-32.325,126.73],[-15.472,124.418],[-24.615,101.228],[-38.001,104.28],[-54.701,113.265],[-63.976,97.302],[-72.212,105.606]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[6.429,0.187],[3.849,-0.599],[1.998,-1.811],[-35.373,-4.231],[3.716,3.335],[-0.667,-0.154],[8.143,0.656],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.898,-0.114],[-3.748,0.583],[-3.986,3.613],[17.236,2.062],[-2.88,-2.585],[1.568,0.362],[-8.969,-0.723],[0,0],[0,0],[0,0]],"v":[[-79.503,93.74],[-94.269,105.06],[-106.564,99.872],[-119.227,82.529],[-130.913,93.587],[-143.488,82.167],[-152.026,97.622],[-28.096,127.297],[-15.382,122.582],[-22.223,117.63],[-36.156,98.054],[-55.047,115.206],[-65.547,96.086],[-74.143,105.667]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":163,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[6.02,-0.884],[3.477,-1.221],[1.537,-2.093],[-33.698,1.752],[4.057,2.628],[-0.649,-0.039],[7.701,-0.712],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.65,0.536],[-3.386,1.189],[-3.066,4.175],[16.42,-0.853],[-3.144,-2.037],[1.525,0.092],[-8.482,0.784],[0,0],[0,0],[0,0]],"v":[[-84.993,93.843],[-97.576,108.51],[-111.175,112.924],[-121.724,93.45],[-133.752,103.427],[-144.894,105.995],[-152.693,110.855],[-31.976,119.165],[-20.979,112.47],[-29.701,115.185],[-41.113,101.339],[-58.747,115.201],[-70.251,99.413],[-79.458,112.415]],"c":true}]},{"t":165,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[5.748,-1.598],[3.229,-1.636],[1.229,-2.281],[-32.581,5.74],[4.285,2.156],[-0.637,0.038],[7.406,-1.624],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.485,0.969],[-3.145,1.593],[-2.452,4.55],[15.876,-2.797],[-3.321,-1.671],[1.496,-0.088],[-8.157,1.789],[0,0],[0,0],[0,0]],"v":[[-88.875,104.451],[-99.781,110.811],[-112.213,109.257],[-125.018,107.657],[-135.646,109.988],[-146.164,113.88],[-153.138,119.677],[-34.562,113.744],[-24.71,105.729],[-32.243,102.893],[-44.825,105.956],[-62.028,109.653],[-74.182,107.298],[-81.78,105.826]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.549019607843,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.548161764706,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":101,"op":166,"st":60,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"Layer 20","parent":3,"sr":1,"ks":{"r":{"a":0,"k":-23.142},"p":{"a":0,"k":[51.885,-30.571,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":101,"s":[{"i":[[2.799,-7.909],[-0.852,-0.416],[-4.809,-1.651],[-1.81,-0.611]],"o":[[0.924,0.491],[3.602,1.758],[1.458,0.5],[2.478,-5.477]],"v":[[-68.876,71.167],[-66.224,72.52],[-54.617,77.131],[-49.744,78.784]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[{"i":[[9.998,-31.374],[-3.044,-1.649],[-17.177,-6.55],[-6.466,-2.423]],"o":[[3.302,1.948],[12.868,6.972],[5.206,1.985],[8.853,-21.724]],"v":[[-90.374,60.695],[-80.904,66.064],[-39.444,84.355],[-22.036,90.912]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":119,"s":[{"i":[[30.102,-49.527],[-3.766,-2.078],[-20.908,-8.757],[-6.54,-2.424]],"o":[[3.339,1.949],[15.922,8.787],[6.337,2.654],[10.348,-31.505]],"v":[[-76.61,21.194],[-65.938,27.247],[-9.626,54.512],[9.72,62.156]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":133,"s":[{"i":[[61.374,-77.765],[-4.89,-2.746],[-26.713,-12.191],[-6.655,-2.426]],"o":[[3.398,1.949],[20.673,11.61],[8.097,3.695],[12.674,-46.719]],"v":[[-51.936,-47.888],[-39.394,-40.772],[40.022,0.453],[62.383,9.788]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":153,"s":[{"i":[[17.264,-22.057],[-4.655,-3.302],[-25.462,-15.046],[-6.466,-2.423]],"o":[[3.302,1.948],[19.682,13.958],[7.718,4.56],[4.2,-16.302]],"v":[[-11.076,-152.016],[0.958,-144.018],[76.12,-91.169],[97.603,-80.433]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[2.449,-2.551],[-4.622,-3.497],[-25.29,-16.048],[-6.466,-2.423]],"o":[[3.302,1.948],[19.54,14.783],[7.666,4.864],[1.366,-5.654]],"v":[[0.378,-185.988],[12.358,-177.68],[86.821,-120.754],[108.219,-109.525]],"c":true}]},{"t":165,"s":[{"i":[[10.746,-0.863],[-4.622,-3.497],[-25.29,-16.048],[-6.466,-2.423]],"o":[[3.302,1.948],[19.54,14.783],[7.666,4.864],[1.366,-5.654]],"v":[[8.173,-203.284],[6.419,-196.389],[118.355,-156.314],[121.807,-157.769]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.208700980392,0.18717955047,0.127995599485,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":165,"s":[10]},{"t":175,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.207843137255,0.188235294118,0.129411764706,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":101,"op":166,"st":60,"bm":0},{"ddd":0,"ind":23,"ty":4,"nm":"Layer 16","parent":3,"sr":1,"ks":{"r":{"a":0,"k":-23.142},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":80,"s":[56.885,82.072,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":88,"s":[51.885,-40.392,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":92,"s":[51.885,-30.571,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":110,"s":[51.885,-30.571,0],"to":[0,0,0],"ti":[0,0,0]},{"t":175,"s":[51.885,-157.46,0]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":80,"s":[{"i":[[23.198,22.8],[32.106,15.3],[8.709,-27.327],[-29.181,-17.646]],"o":[[-27.795,-12.277],[17.901,27.537],[18.719,11.045],[7.711,-18.922]],"v":[[45.16,-43.972],[-51.807,-89.312],[-50.235,44.827],[35.894,94.179]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":90,"s":[{"i":[[-13.741,37.278],[36.861,17.566],[9.998,-31.374],[-32.843,-12.309]],"o":[[-31.911,-14.096],[-18.303,52.287],[21.491,12.681],[8.853,-21.724]],"v":[[75.911,-45.428],[-38.045,-93.529],[-90.374,60.695],[25.316,107.344]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":94,"s":[{"i":[[-13.741,37.278],[36.861,17.566],[9.998,-31.374],[-32.843,-12.309]],"o":[[-31.911,-14.096],[-18.303,52.287],[21.491,12.681],[8.853,-21.724]],"v":[[75.911,-45.428],[-38.045,-93.529],[-90.374,60.695],[25.316,107.344]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[{"i":[[-13.741,37.278],[36.861,17.566],[9.998,-31.374],[-32.843,-12.309]],"o":[[-31.911,-14.096],[-18.303,52.287],[21.491,12.681],[8.853,-21.724]],"v":[[75.911,-45.428],[-38.045,-93.529],[-90.374,60.695],[25.316,107.344]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[-1.507,4.931],[36.861,17.566],[2.449,-2.551],[-32.843,-12.309]],"o":[[-31.911,-14.096],[-1.444,2.723],[21.491,12.681],[1.366,-5.654]],"v":[[75.911,-45.428],[-38.045,-93.529],[-43.706,-84.117],[64.135,-7.653]],"c":true}]},{"t":165,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[72.52,-47.434],[-35.769,-86.428],[-35.823,-86.229],[73.417,-48.276]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.737254917622,0.658823549747,0.443137258291,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":165,"s":[10]},{"t":175,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392158031,0.792156875134,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":166,"st":60,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"hat3","parent":28,"sr":1,"ks":{"o":{"a":0,"k":50},"p":{"a":0,"k":[0.695,-70.409,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[{"i":[[-46.364,-0.099],[-32.417,-2.407],[-51.163,-15.279]],"o":[[34.184,0.073],[42.727,3.172],[22.622,6.756]],"v":[[-82.776,-73.884],[-28.715,-21.432],[100.174,-73.893]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.6,"y":0},"t":90,"s":[{"i":[[-44.848,0.305],[-26.395,0.398],[-0.134,5.571]],"o":[[97.401,-0.661],[25.037,-0.378],[0.545,-22.649]],"v":[[-72.613,-33.792],[72.066,-14.432],[98.255,-35.604]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.76,"y":0},"t":160,"s":[{"i":[[-44.848,0.305],[-26.395,0.398],[-0.134,5.571]],"o":[[97.401,-0.661],[25.037,-0.378],[0.545,-22.649]],"v":[[-72.613,-33.792],[72.066,-14.432],[98.255,-35.604]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[-44.778,-1.621],[-26.397,0.199],[-36.291,-4.251]],"o":[[56.915,0.321],[33.245,-0.189],[11.392,-9.164]],"v":[[-72.613,-33.792],[16.047,-1.297],[101.82,-34.622]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":180,"s":[{"i":[[-44.708,-3.546],[-26.398,0],[-72.449,-14.072]],"o":[[16.429,1.303],[41.453,0],[22.239,4.32]],"v":[[-72.613,-33.792],[-39.971,-8.162],[105.385,-33.64]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[{"i":[[-44.708,-3.546],[-26.398,0],[-72.449,-14.072]],"o":[[16.429,1.303],[41.453,0],[22.239,4.32]],"v":[[-72.613,-33.792],[-39.971,-8.162],[105.385,-33.64]],"c":false}]},{"t":226,"s":[{"i":[[-46.364,-0.099],[-32.417,-2.407],[-51.163,-15.279]],"o":[[34.184,0.073],[42.727,3.172],[22.622,6.756]],"v":[[-82.776,-73.884],[-28.715,-21.432],[100.174,-73.893]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.243137254902,0.223529411765,0.176470588235,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":25,"ty":4,"nm":"h_bl8","parent":24,"sr":1,"ks":{"o":{"a":0,"k":10},"p":{"a":0,"k":[2.382,270.669,0]},"s":{"a":0,"k":[110,110,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[{"i":[[0,0],[11.124,-14.97]],"o":[[-27.729,18.328],[0,0]],"v":[[-27.701,-307.21],[-89.512,-227.707]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.6,"y":0},"t":90,"s":[{"i":[[0,0],[43.534,-5.903]],"o":[[8.312,36.36],[0,0]],"v":[[-6.763,-260.787],[-58.104,-194.279]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":160,"s":[{"i":[[0,0],[43.534,-5.903]],"o":[[8.312,36.36],[0,0]],"v":[[-6.763,-260.787],[-58.104,-194.279]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":180,"s":[{"i":[[0,0],[11.124,-14.97]],"o":[[-27.729,18.328],[0,0]],"v":[[-26.113,-271.821],[-87.295,-198.605]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[{"i":[[0,0],[11.124,-14.97]],"o":[[-27.729,18.328],[0,0]],"v":[[-26.113,-271.821],[-87.295,-198.605]],"c":false}]},{"t":226,"s":[{"i":[[0,0],[11.124,-14.97]],"o":[[-27.729,18.328],[0,0]],"v":[[-27.701,-307.21],[-89.512,-227.707]],"c":false}]}]},"nm":"Path 2","hd":false},{"ty":"st","c":{"a":0,"k":[0.243137254902,0.223529411765,0.176470588235,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":30},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":-12.14},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":0,"k":0.37},"e":{"a":0,"k":95.37},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":26,"ty":4,"nm":"h_bl5","parent":24,"sr":1,"ks":{"o":{"a":0,"k":33},"p":{"a":0,"k":[2.382,270.669,0]},"s":{"a":0,"k":[110,110,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[{"i":[[0,0],[-31.604,-19.511]],"o":[[-27.739,31.344],[0,0]],"v":[[141.287,-267.139],[157.057,-176.528]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.6,"y":0},"t":90,"s":[{"i":[[0,0],[0.349,-20.731]],"o":[[5.249,13.575],[0,0]],"v":[[147.902,-229.813],[165.137,-142.764]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":160,"s":[{"i":[[0,0],[0.349,-20.731]],"o":[[5.249,13.575],[0,0]],"v":[[147.902,-229.813],[165.137,-142.764]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":180,"s":[{"i":[[0,0],[-32.446,-16.812]],"o":[[-25.887,26.501],[0,0]],"v":[[109.67,-240.8],[130.186,-163.569]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[{"i":[[0,0],[-32.446,-16.812]],"o":[[-25.887,26.501],[0,0]],"v":[[109.67,-240.8],[130.186,-163.569]],"c":false}]},{"t":226,"s":[{"i":[[0,0],[-31.604,-19.511]],"o":[[-27.739,31.344],[0,0]],"v":[[141.287,-267.139],[157.057,-176.528]],"c":false}]}]},"nm":"Path 2","hd":false},{"ty":"st","c":{"a":0,"k":[0.774417892157,0.736360557407,0.656440166399,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":20},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":-12.14},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":0,"k":0.37},"e":{"a":0,"k":95.37},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":27,"ty":4,"nm":"hat2","parent":28,"sr":1,"ks":{"p":{"a":0,"k":[0.695,-70.409,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[{"i":[[-10.886,41.417],[-46.364,-0.099],[-32.417,-2.407],[-51.163,-15.279],[-6.321,-40.738]],"o":[[10.886,-41.417],[34.184,0.073],[42.727,3.172],[22.622,6.756],[6.321,40.738]],"v":[[-161.082,50.027],[-82.776,-73.884],[-20.715,-60.432],[100.174,-73.893],[161.625,47.99]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.6,"y":0},"t":90,"s":[{"i":[[-10.53,37.748],[-44.849,0],[-26.398,0],[-21.401,-7.434],[-6.114,-37.129]],"o":[[10.53,-37.748],[80.595,0],[41.453,0],[21.401,7.434],[6.114,37.129]],"v":[[-147.345,83.231],[-72.613,-33.792],[41.51,-28.182],[105.385,-33.64],[167.887,85.304]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":160,"s":[{"i":[[-10.53,37.748],[-44.849,0],[-26.398,0],[-21.401,-7.434],[-6.114,-37.129]],"o":[[10.53,-37.748],[80.595,0],[41.453,0],[21.401,7.434],[6.114,37.129]],"v":[[-147.345,83.231],[-72.613,-33.792],[41.51,-28.182],[105.385,-33.64],[167.887,85.304]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":180,"s":[{"i":[[-10.53,37.748],[-44.843,-0.738],[-26.398,0],[-69.902,-8.67],[-6.114,-37.129]],"o":[[10.53,-37.748],[19.484,0.321],[41.453,0],[22.483,2.789],[6.114,37.129]],"v":[[-147.345,83.231],[-72.613,-33.792],[-12.471,-27.805],[105.385,-33.64],[167.887,85.304]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[{"i":[[-10.53,37.748],[-44.843,-0.738],[-26.398,0],[-69.902,-8.67],[-6.114,-37.129]],"o":[[10.53,-37.748],[19.484,0.321],[41.453,0],[22.483,2.789],[6.114,37.129]],"v":[[-147.345,83.231],[-72.613,-33.792],[-12.471,-27.805],[105.385,-33.64],[167.887,85.304]],"c":false}]},{"t":226,"s":[{"i":[[-10.886,41.417],[-46.364,-0.099],[-32.417,-2.407],[-51.163,-15.279],[-6.321,-40.738]],"o":[[10.886,-41.417],[34.184,0.073],[42.727,3.172],[22.622,6.756],[6.321,40.738]],"v":[[-161.082,50.027],[-82.776,-73.884],[-20.715,-60.432],[100.174,-73.893],[161.625,47.99]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.243137254902,0.223529411765,0.176470588235,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.533333333333,0.494117647059,0.407843137255,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":28,"ty":4,"nm":"hat1","parent":42,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":80,"s":[0]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":90,"s":[2]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":160,"s":[2]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":180,"s":[-2]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":197,"s":[-2]},{"t":226,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[2.384,10.236,0],"to":[0,-7.495,0],"ti":[0,7.495,0]},{"i":{"x":0.24,"y":0.24},"o":{"x":0.6,"y":0.6},"t":90,"s":[2.384,-34.732,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.24,"y":0.24},"o":{"x":0.76,"y":0.76},"t":160,"s":[2.384,-34.732,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.24,"y":0.24},"o":{"x":0.76,"y":0.76},"t":180,"s":[2.384,-34.732,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[2.384,-34.732,0],"to":[0,7.495,0],"ti":[0,-7.495,0]},{"t":226,"s":[2.384,10.236,0]}]},"a":{"a":0,"k":[9.262,19.467,0]},"s":{"a":0,"k":[90.909,90.909,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[{"i":[[0,-19.066],[171.64,3.424],[0,19.066],[-122.814,0]],"o":[[0,19.066],[-122.762,-2.449],[0,-19.066],[122.814,0]],"v":[[222.375,-20.206],[-50,28.996],[-222.375,-20.206],[0,-41.419]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.6,"y":0},"t":90,"s":[{"i":[[0,-8.998],[130.18,0],[0,8.998],[-130.18,0]],"o":[[0,8.998],[-130.18,0],[0,-8.998],[130.18,0]],"v":[[244.974,13.185],[9.262,35.76],[-226.449,13.185],[9.262,3.174]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.76,"y":0},"t":160,"s":[{"i":[[0,-8.998],[130.18,0],[0,8.998],[-130.18,0]],"o":[[0,8.998],[-130.18,0],[0,-8.998],[130.18,0]],"v":[[244.974,13.185],[9.262,35.76],[-226.449,13.185],[9.262,3.174]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[0,-8.998],[130.18,0],[0,8.998],[-130.18,0]],"o":[[0,8.998],[-130.18,0],[0,-8.998],[130.18,0]],"v":[[244.974,13.185],[9.384,52.26],[-226.449,13.185],[9.262,3.174]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":180,"s":[{"i":[[0,-8.998],[130.18,0],[0,8.998],[-130.18,0]],"o":[[0,8.998],[-130.18,0],[0,-8.998],[130.18,0]],"v":[[244.974,13.185],[9.262,35.76],[-226.449,13.185],[9.262,3.174]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[{"i":[[0,-8.998],[130.18,0],[0,8.998],[-130.18,0]],"o":[[0,8.998],[-130.18,0],[0,-8.998],[130.18,0]],"v":[[244.974,13.185],[9.262,35.76],[-226.449,13.185],[9.262,3.174]],"c":true}]},{"t":226,"s":[{"i":[[0,-19.066],[171.64,3.424],[0,19.066],[-122.814,0]],"o":[[0,19.066],[-122.762,-2.449],[0,-19.066],[122.814,0]],"v":[[222.375,-20.206],[-50,28.996],[-222.375,-20.206],[0,-41.419]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.243137254902,0.223529411765,0.176470588235,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.533333333333,0.494117647059,0.407843137255,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":29,"ty":4,"nm":"beak_bl","parent":32,"sr":1,"ks":{"r":{"a":0,"k":11.894},"p":{"a":0,"k":[47.765,17.127,0]},"a":{"a":0,"k":[24.706,21.598,0]},"s":{"a":0,"k":[108.675,108.675,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[{"i":[[0,0],[10.623,6.633]],"o":[[-5.299,-4.96],[0,0]],"v":[[-39.181,-25.375],[-58.68,-41.771]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.6,"y":0},"t":90,"s":[{"i":[[0,0],[8.36,3.687]],"o":[[-8.393,-7.979],[0,0]],"v":[[-21.043,-23.57],[-45.71,-43.77]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":160,"s":[{"i":[[0,0],[8.36,3.687]],"o":[[-8.393,-7.979],[0,0]],"v":[[-21.043,-23.57],[-45.71,-43.77]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":180,"s":[{"i":[[0,0],[4.977,7.557]],"o":[[-6.729,-5.338],[0,0]],"v":[[-41.482,-23.084],[-57.17,-40.76]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[{"i":[[0,0],[4.977,7.557]],"o":[[-6.729,-5.338],[0,0]],"v":[[-41.482,-23.084],[-57.17,-40.76]],"c":false}]},{"t":220,"s":[{"i":[[0,0],[10.623,6.633]],"o":[[-5.299,-4.96],[0,0]],"v":[[-39.181,-25.375],[-58.68,-41.771]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.705882352941,0.517647058824,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[24.706,22.107]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":228,"s":[5]},{"t":240,"s":[0]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":228,"s":[100]},{"t":240,"s":[95]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":60,"op":280,"st":60,"bm":0},{"ddd":0,"ind":30,"ty":4,"nm":"mouth","parent":32,"sr":1,"ks":{"p":{"a":0,"k":[-1.976,19.749,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.167,"y":0},"t":60,"s":[{"i":[[0,0],[31.315,-5.981]],"o":[[-27.734,-1.015],[0,0]],"v":[[57.991,-8.743],[-65.604,-5.822]],"c":false}]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[{"i":[[0,0],[31.315,-5.981]],"o":[[-27.734,-1.015],[0,0]],"v":[[57.991,-8.743],[-65.604,-5.822]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.6,"y":0},"t":90,"s":[{"i":[[0,0],[41.981,-0.221]],"o":[[-27.55,-0.668],[0,0]],"v":[[71.31,-5.78],[-47.49,-6.764]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":160,"s":[{"i":[[0,0],[41.981,-0.221]],"o":[[-27.55,-0.668],[0,0]],"v":[[71.31,-5.78],[-47.49,-6.764]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":180,"s":[{"i":[[0,0],[41.79,-4.004]],"o":[[-27.498,1.817],[0,0]],"v":[[49.156,-10.029],[-69.249,-0.303]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[{"i":[[0,0],[41.79,-4.004]],"o":[[-27.498,1.817],[0,0]],"v":[[49.156,-10.029],[-69.249,-0.303]],"c":false}]},{"t":220,"s":[{"i":[[0,0],[31.315,-5.981]],"o":[[-27.734,-1.015],[0,0]],"v":[[57.991,-8.743],[-65.604,-5.822]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67,"s":[56]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":73,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":231,"s":[0]},{"t":239,"s":[47]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67,"s":[59]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":73,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":231,"s":[100]},{"t":239,"s":[53]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.490196078431,0.035294117647,0.035294117647,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67,"s":[20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":73,"s":[8.869]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":231,"s":[8.869]},{"t":239,"s":[20]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":31,"ty":3,"nm":"NULL CONTROL","parent":42,"sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":0,"k":[-30.326,100.201,0]},"a":{"a":0,"k":[60,60,0]},"s":{"a":0,"k":[82,82,100]}},"ao":0,"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":32,"ty":4,"nm":"beak","parent":31,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":80,"s":[0]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":90,"s":[-3]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":160,"s":[-3]},{"t":180,"s":[3],"h":1},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":197,"s":[3]},{"t":226,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[60,60,0],"to":[0,0,0],"ti":[-26.156,9.345,0]},{"t":90,"s":[214.951,20,0],"h":1},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":160,"s":[214.951,20,0],"to":[-64.753,22.252,0],"ti":[45.029,20.431,0]},{"t":180,"s":[-17.634,20,0],"h":1},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[-17.634,20,0],"to":[0,0,0],"ti":[0,0,0]},{"t":226,"s":[60,60,0]}]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4,0.4],"y":[1,1,1]},"o":{"x":[0.6,0.6,0.6],"y":[0,0,0]},"t":80,"s":[110,110,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.6,0.6,0.6],"y":[0,0,0]},"t":90,"s":[107.8,112.2,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.76,0.76,0.76],"y":[0,0,0]},"t":160,"s":[107.8,112.2,100]},{"t":180,"s":[107.8,112.2,100],"h":1},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.76,0.76,0.76],"y":[0,0,0]},"t":197,"s":[107.8,112.2,100]},{"t":226,"s":[110,110,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.24,"y":1},"o":{"x":0.167,"y":0},"t":67,"s":[{"i":[[-4.144,-2.089],[-13.999,0.849],[-12.339,5.843],[-0.82,9.142],[9.218,7.327],[33.08,-3.208],[16.768,-15.288],[-0.801,-7.224]],"o":[[8.705,4.389],[25.601,-1.552],[2.077,-0.984],[0.378,-4.219],[-18.613,-14.794],[-25.09,2.433],[-3.883,3.54],[0.581,5.241]],"v":[[-43.274,24.24],[-5.484,33.328],[34.243,22.94],[40.957,10.348],[30.683,-7.487],[-12.729,-51.478],[-43.516,-4.047],[-50.271,11.899]],"c":true}]},{"i":{"x":0.4,"y":1},"o":{"x":0.76,"y":0},"t":73,"s":[{"i":[[-7.445,-2.089],[-25.149,0.849],[-16.521,3.964],[-1.473,9.142],[19.517,4.542],[25.182,-1.479],[41.732,-4.774],[-1.439,-7.224]],"o":[[15.64,4.389],[45.993,-1.552],[3.791,-0.91],[0.68,-4.219],[-45.603,-10.613],[-25.164,1.478],[-9.246,1.058],[1.044,5.241]],"v":[[-73.95,24.24],[-6.576,21.544],[65.312,22.94],[77.374,10.348],[58.917,-7.487],[-12.729,-51.478],[-74.383,-4.047],[-86.52,11.899]],"c":true}]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[{"i":[[-7.445,-2.089],[-25.149,0.849],[-16.521,3.964],[-1.473,9.142],[19.517,4.542],[25.182,-1.479],[41.732,-4.774],[-1.439,-7.224]],"o":[[15.64,4.389],[45.993,-1.552],[3.791,-0.91],[0.68,-4.219],[-45.603,-10.613],[-25.164,1.478],[-9.246,1.058],[1.044,5.241]],"v":[[-73.95,24.24],[-6.576,21.544],[65.312,22.94],[77.374,10.348],[58.917,-7.487],[-12.729,-51.478],[-74.383,-4.047],[-86.52,11.899]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.6,"y":0},"t":90,"s":[{"i":[[-7.728,0.241],[-25.158,0.53],[-17.051,-0.505],[11.638,4.136],[25.287,3.276],[25.182,-1.479],[41.732,-4.774],[-1.637,-8.353]],"o":[[13.383,-0.417],[27.319,-0.576],[11.033,0.327],[18.488,-3.305],[-17.073,-2.212],[-25.164,1.478],[-9.246,1.058],[1.188,6.06]],"v":[[-60.805,27.73],[6.642,27.646],[61.757,27.559],[68.863,14.696],[59.602,-5.026],[-0.911,-51.426],[-62.147,-2.829],[-74.008,16.87]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":160,"s":[{"i":[[-7.728,0.241],[-25.158,0.53],[-17.051,-0.505],[11.638,4.136],[25.287,3.276],[25.182,-1.479],[41.732,-4.774],[-1.637,-8.353]],"o":[[13.383,-0.417],[27.319,-0.576],[11.033,0.327],[18.488,-3.305],[-17.073,-2.212],[-25.164,1.478],[-9.246,1.058],[1.188,6.06]],"v":[[-60.805,27.73],[6.642,27.646],[61.757,27.559],[68.863,14.696],[59.602,-5.026],[-0.911,-51.426],[-62.147,-2.829],[-74.008,16.87]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":180,"s":[{"i":[[-7.704,0.24],[-25.08,2.05],[-19.239,0],[-1.46,10.805],[18.096,3.984],[25.182,-1.479],[18.519,-3.977],[-18.942,-5.633]],"o":[[13.383,-0.417],[24.447,-1.998],[6.619,0],[1.188,-8.794],[-45.726,-10.067],[-25.164,1.478],[-14.369,3.085],[-6.187,10.56]],"v":[[-56.624,32.097],[-4.659,28.839],[45.82,26.448],[66.369,13.401],[47.098,-7.692],[-5.001,-51.585],[-62.676,0.34],[-69.869,20.308]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[{"i":[[-7.704,0.24],[-25.08,2.05],[-19.239,0],[-1.46,10.805],[18.096,3.984],[25.182,-1.479],[18.519,-3.977],[-18.942,-5.633]],"o":[[13.383,-0.417],[24.447,-1.998],[6.619,0],[1.188,-8.794],[-45.726,-10.067],[-25.164,1.478],[-14.369,3.085],[-6.187,10.56]],"v":[[-56.624,32.097],[-4.659,28.839],[45.82,26.448],[66.369,13.401],[47.098,-7.692],[-5.001,-51.585],[-62.676,0.34],[-69.869,20.308]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":226,"s":[{"i":[[-7.445,-2.089],[-25.149,0.849],[-16.521,3.964],[-1.473,9.142],[19.517,4.542],[25.182,-1.479],[41.732,-4.774],[-1.439,-7.224]],"o":[[15.64,4.389],[45.993,-1.552],[3.791,-0.91],[0.68,-4.219],[-45.603,-10.613],[-25.164,1.478],[-9.246,1.058],[1.044,5.241]],"v":[[-73.95,24.24],[-6.576,21.544],[65.312,22.94],[77.374,10.348],[58.917,-7.487],[-12.729,-51.478],[-74.383,-4.047],[-86.52,11.899]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.76,"y":0},"t":231,"s":[{"i":[[-7.445,-2.089],[-25.149,0.849],[-16.521,3.964],[-1.473,9.142],[19.517,4.542],[25.182,-1.479],[41.732,-4.774],[-1.439,-7.224]],"o":[[15.64,4.389],[45.993,-1.552],[3.791,-0.91],[0.68,-4.219],[-45.603,-10.613],[-25.164,1.478],[-9.246,1.058],[1.044,5.241]],"v":[[-73.95,24.24],[-6.576,21.544],[65.312,22.94],[77.374,10.348],[58.917,-7.487],[-12.729,-51.478],[-74.383,-4.047],[-86.52,11.899]],"c":true}]},{"t":239,"s":[{"i":[[-4.144,-2.089],[-13.999,0.849],[-12.339,5.843],[-0.82,9.142],[9.218,7.327],[33.08,-3.208],[16.768,-15.288],[-0.801,-7.224]],"o":[[8.705,4.389],[25.601,-1.552],[2.077,-0.984],[0.378,-4.219],[-18.613,-14.794],[-25.09,2.433],[-3.883,3.54],[0.581,5.241]],"v":[[-43.274,24.24],[-5.484,33.328],[34.243,22.94],[40.957,10.348],[30.683,-7.487],[-12.729,-51.478],[-43.516,-4.047],[-50.271,11.899]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.811764705882,0.207843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8.869},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.364705882353,0.121568627451,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":33,"ty":4,"nm":"Layer 11","parent":35,"sr":1,"ks":{"p":{"a":0,"k":[19.152,23.814,0]},"a":{"a":0,"k":[-67.235,0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4,0.4],"y":[1,1,1]},"o":{"x":[0.6,0.6,0.6],"y":[0,0,0]},"t":80,"s":[100,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.6,0.6,0.6],"y":[0,0,0]},"t":90,"s":[80,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,1,1]},"o":{"x":[0.76,0.76,0.76],"y":[0,0,0]},"t":160,"s":[80,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":170,"s":[100,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.76,0.76,0.76],"y":[0,0,0]},"t":180,"s":[100,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.76,0.76,0.76],"y":[0,0,0]},"t":197,"s":[100,100,100]},{"t":220,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[{"i":[[0,0],[0,0],[0,0],[-10.185,-0.017],[0,0],[-3.099,8.054]],"o":[[0,0],[0,0],[2.776,8.918],[0,0],[9.463,0.016],[0,0]],"v":[[67.235,-30.801],[-67.235,-31.031],[-52.665,15.781],[-30.691,30.931],[27.665,31.031],[48.592,17.642]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.6,"y":0},"t":90,"s":[{"i":[[0,0],[0,0],[0,0],[-10.185,-0.017],[0,0],[-3.099,8.054]],"o":[[0,0],[0,0],[2.776,8.918],[0,0],[9.463,0.016],[0,0]],"v":[[66.868,-25.412],[-67.235,-31.031],[-52.665,15.781],[-30.691,30.931],[27.499,33.459],[48.427,20.07]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":160,"s":[{"i":[[0,0],[0,0],[0,0],[-10.185,-0.017],[0,0],[-3.099,8.054]],"o":[[0,0],[0,0],[2.776,8.918],[0,0],[9.463,0.016],[0,0]],"v":[[66.868,-25.412],[-67.235,-31.031],[-52.665,15.781],[-30.691,30.931],[27.499,33.459],[48.427,20.07]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":180,"s":[{"i":[[0,0],[0,0],[0,0],[-10.185,-0.017],[0,0],[-3.099,8.054]],"o":[[0,0],[0,0],[2.776,8.918],[0,0],[9.463,0.016],[0,0]],"v":[[66.247,-43.464],[-67.529,-36.415],[-52.665,15.781],[-30.691,30.931],[27.102,26.175],[48.029,12.786]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[{"i":[[0,0],[0,0],[0,0],[-10.185,-0.017],[0,0],[-3.099,8.054]],"o":[[0,0],[0,0],[2.776,8.918],[0,0],[9.463,0.016],[0,0]],"v":[[66.247,-43.464],[-67.529,-36.415],[-52.665,15.781],[-30.691,30.931],[27.102,26.175],[48.029,12.786]],"c":true}]},{"t":220,"s":[{"i":[[0,0],[0,0],[0,0],[-10.185,-0.017],[0,0],[-3.099,8.054]],"o":[[0,0],[0,0],[2.776,8.918],[0,0],[9.463,0.016],[0,0]],"v":[[67.235,-30.801],[-67.235,-31.031],[-52.665,15.781],[-30.691,30.931],[27.665,31.031],[48.592,17.642]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":80,"s":[12]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":90,"s":[10.417]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.76],"y":[0]},"t":160,"s":[10.417]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":170,"s":[12]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":180,"s":[12]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":197,"s":[12]},{"t":220,"s":[12]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"gf","o":{"a":0,"k":80},"r":1,"bm":0,"g":{"p":7,"k":{"a":0,"k":[0.183,0,0,0,0.183,0.023,0.22,0.363,0.183,0.047,0.439,0.726,0.382,0.047,0.439,0.726,0.58,0.047,0.439,0.725,0.583,0.024,0.22,0.363,0.586,0,0,0]}},"s":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":80,"s":[29.952,-0.564],"to":[-37.518,0.806],"ti":[37.518,-0.806]},{"i":{"x":0.24,"y":0.24},"o":{"x":0.333,"y":0.333},"t":98,"s":[-195.159,4.274],"to":[0,0],"ti":[0,0]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[-195.159,4.274],"to":[37.518,-0.806],"ti":[-37.518,0.806]},{"t":220,"s":[29.952,-0.564]}]},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":80,"s":[199.353,-7.083],"to":[-41.566,1.856],"ti":[41.566,-1.856]},{"i":{"x":0.24,"y":0.24},"o":{"x":0.333,"y":0.333},"t":98,"s":[-50.041,4.055],"to":[0,0],"ti":[0,0]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[-50.041,4.055],"to":[41.566,-1.856],"ti":[-41.566,1.856]},{"t":220,"s":[199.353,-7.083]}]},"t":1,"nm":"77","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":34,"ty":4,"nm":"Layer 10","parent":35,"sr":1,"ks":{"p":{"a":0,"k":[-20.541,23.537,0]},"a":{"a":0,"k":[67.235,0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4,0.4],"y":[1,1,1]},"o":{"x":[0.6,0.6,0.6],"y":[0,0,0]},"t":80,"s":[90,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.6,0.6,0.6],"y":[0,0,0]},"t":90,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.76,0.76,0.76],"y":[0,0,0]},"t":160,"s":[100,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0,0]},"t":170,"s":[100,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.76,0.76,0.76],"y":[0,0,0]},"t":180,"s":[70,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.76,0.76,0.76],"y":[0,0,0]},"t":197,"s":[70,100,100]},{"t":220,"s":[90,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[{"i":[[0,0],[0,0],[0,0],[10.185,0.017],[0,0],[3.36,8.065]],"o":[[0,0],[0,0],[-2.488,8.909],[0,0],[-9.463,-0.016],[0,0]],"v":[[-67.235,-31.035],[67.235,-30.805],[54.175,15.959],[32.689,31.035],[-25.667,30.936],[-47.028,17.474]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.6,"y":0},"t":90,"s":[{"i":[[0,0],[0,0],[0,0],[10.185,0.017],[0,0],[3.36,8.065]],"o":[[0,0],[0,0],[-2.488,8.909],[0,0],[-9.463,-0.016],[0,0]],"v":[[-66.838,-38.32],[79.842,-30.658],[59.55,13.795],[38.063,28.871],[-25.402,26.079],[-46.763,12.618]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":160,"s":[{"i":[[0,0],[0,0],[0,0],[10.185,0.017],[0,0],[3.36,8.065]],"o":[[0,0],[0,0],[-2.488,8.909],[0,0],[-9.463,-0.016],[0,0]],"v":[[-66.838,-38.32],[79.842,-30.658],[59.55,13.795],[38.063,28.871],[-25.402,26.079],[-46.763,12.618]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":180,"s":[{"i":[[0,0],[0,0],[0,0],[10.185,0.017],[0,0],[3.36,8.065]],"o":[[0,0],[0,0],[-2.488,8.909],[0,0],[-9.463,-0.016],[0,0]],"v":[[-67.606,-26.153],[67.235,-30.805],[54.175,15.959],[32.689,31.035],[-25.288,35.792],[-46.649,22.331]],"c":true}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[{"i":[[0,0],[0,0],[0,0],[10.185,0.017],[0,0],[3.36,8.065]],"o":[[0,0],[0,0],[-2.488,8.909],[0,0],[-9.463,-0.016],[0,0]],"v":[[-67.606,-26.153],[67.235,-30.805],[54.175,15.959],[32.689,31.035],[-25.288,35.792],[-46.649,22.331]],"c":true}]},{"t":220,"s":[{"i":[[0,0],[0,0],[0,0],[10.185,0.017],[0,0],[3.36,8.065]],"o":[[0,0],[0,0],[-2.488,8.909],[0,0],[-9.463,-0.016],[0,0]],"v":[[-67.235,-31.035],[67.235,-30.805],[54.175,15.959],[32.689,31.035],[-25.667,30.936],[-47.028,17.474]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":80,"s":[12]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":90,"s":[10]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":160,"s":[12]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":170,"s":[12]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":180,"s":[17.143]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.76],"y":[0]},"t":197,"s":[17.143]},{"t":220,"s":[12]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"gf","o":{"a":0,"k":80},"r":1,"bm":0,"g":{"p":7,"k":{"a":0,"k":[0.183,0,0,0,0.183,0.023,0.22,0.363,0.183,0.047,0.439,0.726,0.382,0.047,0.439,0.726,0.58,0.047,0.439,0.725,0.583,0.024,0.22,0.363,0.586,0,0,0]}},"s":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":80,"s":[29.952,-0.564],"to":[-37.518,0.806],"ti":[37.518,-0.806]},{"i":{"x":0.24,"y":0.24},"o":{"x":0.333,"y":0.333},"t":98,"s":[-195.159,4.274],"to":[0,0],"ti":[0,0]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[-195.159,4.274],"to":[37.518,-0.806],"ti":[-37.518,0.806]},{"t":220,"s":[29.952,-0.564]}]},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":80,"s":[199.353,-7.083],"to":[-41.566,1.856],"ti":[41.566,-1.856]},{"i":{"x":0.24,"y":0.24},"o":{"x":0.333,"y":0.333},"t":98,"s":[-50.041,4.055],"to":[0,0],"ti":[0,0]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[-50.041,4.055],"to":[41.566,-1.856],"ti":[-41.566,1.856]},{"t":220,"s":[199.353,-7.083]}]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":35,"ty":4,"nm":"Layer 12","parent":32,"sr":1,"ks":{"p":{"a":0,"k":[-5.84,-60.769,0]},"s":{"a":0,"k":[90,90,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[{"i":[[0,0],[-5.357,-16.39]],"o":[[5.062,-15.527],[0,0]],"v":[[-21.641,12.944],[21.641,13.966]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.6,"y":0},"t":90,"s":[{"i":[[0,0],[-5.357,-16.39]],"o":[[5.062,-15.527],[0,0]],"v":[[-12.924,13.383],[21.641,13.966]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":160,"s":[{"i":[[0,0],[-5.357,-16.39]],"o":[[5.062,-15.527],[0,0]],"v":[[-12.924,13.383],[21.641,13.966]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":180,"s":[{"i":[[0,0],[-5.357,-16.39]],"o":[[5.062,-15.527],[0,0]],"v":[[-18.735,13.676],[21.641,13.966]],"c":false}]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[{"i":[[0,0],[-5.357,-16.39]],"o":[[5.062,-15.527],[0,0]],"v":[[-18.735,13.676],[21.641,13.966]],"c":false}]},{"t":220,"s":[{"i":[[0,0],[-5.357,-16.39]],"o":[[5.062,-15.527],[0,0]],"v":[[-21.641,12.944],[21.641,13.966]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":15},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":36,"ty":4,"nm":"eye_lbl 3","parent":37,"sr":1,"ks":{"p":{"a":0,"k":[150.541,-124.606,0]},"s":{"a":0,"k":[80,80,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":131,"s":[{"i":[[-2.159,-4.209],[-3.538,1.815],[2.159,4.209],[3.538,-1.815]],"o":[[2.159,4.209],[3.538,-1.815],[-2.159,-4.209],[-3.538,1.815]],"v":[[-6.406,3.286],[3.909,7.621],[6.406,-3.286],[-3.909,-7.621]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":136,"s":[{"i":[[-2.159,-2.858],[-3.538,1.232],[2.159,2.858],[3.538,-1.232]],"o":[[2.159,2.858],[3.538,-1.232],[-2.159,-2.858],[-3.538,1.232]],"v":[[-8.325,13.142],[1.99,16.086],[4.487,8.68],[-5.828,5.736]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":141,"s":[{"i":[[-2.159,-4.209],[-3.538,1.815],[2.159,4.209],[3.538,-1.815]],"o":[[2.159,4.209],[3.538,-1.815],[-2.159,-4.209],[-3.538,1.815]],"v":[[-6.406,3.286],[3.909,7.621],[6.406,-3.286],[-3.909,-7.621]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":146,"s":[{"i":[[-2.159,-2.858],[-3.538,1.232],[2.159,2.858],[3.538,-1.232]],"o":[[2.159,2.858],[3.538,-1.232],[-2.159,-2.858],[-3.538,1.232]],"v":[[-8.325,13.142],[1.99,16.086],[4.487,8.68],[-5.828,5.736]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":151,"s":[{"i":[[-2.159,-4.209],[-3.538,1.815],[2.159,4.209],[3.538,-1.815]],"o":[[2.159,4.209],[3.538,-1.815],[-2.159,-4.209],[-3.538,1.815]],"v":[[-6.406,3.286],[3.909,7.621],[6.406,-3.286],[-3.909,-7.621]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":228,"s":[{"i":[[-2.159,-4.209],[-3.538,1.815],[2.159,4.209],[3.538,-1.815]],"o":[[2.159,4.209],[3.538,-1.815],[-2.159,-4.209],[-3.538,1.815]],"v":[[-6.406,3.286],[3.909,7.621],[6.406,-3.286],[-3.909,-7.621]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":233,"s":[{"i":[[-2.159,-2.858],[-3.538,1.232],[2.159,2.858],[3.538,-1.232]],"o":[[2.159,2.858],[3.538,-1.232],[-2.159,-2.858],[-3.538,1.232]],"v":[[-8.325,13.142],[1.99,16.086],[4.487,8.68],[-5.828,5.736]],"c":true}]},{"t":238,"s":[{"i":[[-2.159,-4.209],[-3.538,1.815],[2.159,4.209],[3.538,-1.815]],"o":[[2.159,4.209],[3.538,-1.815],[-2.159,-4.209],[-3.538,1.815]],"v":[[-6.406,3.286],[3.909,7.621],[6.406,-3.286],[-3.909,-7.621]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":131,"s":[1,1,1,1]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":136,"s":[0,0,0,1]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":141,"s":[1,1,1,1]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":146,"s":[0,0,0,1]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":151,"s":[1,1,1,1]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":228,"s":[1,1,1,1]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":233,"s":[0,0,0,1]},{"t":238,"s":[1,1,1,1]}]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":37,"ty":4,"nm":"eye_l 3","parent":32,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[71.299,-35.851,0],"to":[-3.437,-1.08,0],"ti":[3.437,1.08,0]},{"i":{"x":0.24,"y":0.24},"o":{"x":0.6,"y":0.6},"t":90,"s":[50.674,-42.332,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.76,"y":0},"t":160,"s":[50.674,-42.332,0],"to":[1.652,-0.671,0],"ti":[0,0,0]},{"i":{"x":0.24,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[70.873,-46.359,0],"to":[0,0,0],"ti":[-1.653,0.671,0]},{"i":{"x":0.24,"y":0.24},"o":{"x":0.76,"y":0.76},"t":180,"s":[70.506,-50.388,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[70.506,-50.388,0],"to":[0.132,2.423,0],"ti":[-0.132,-2.423,0]},{"t":226,"s":[71.299,-35.851,0]}]},"a":{"a":0,"k":[145.426,-113.831,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4,0.4],"y":[1,1,1]},"o":{"x":[0.6,0.6,0.6],"y":[0,0,0]},"t":80,"s":[100,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.6,0.6,0.6],"y":[0,0,0]},"t":90,"s":[80,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,1,1]},"o":{"x":[0.76,0.76,0.76],"y":[0,0,0]},"t":160,"s":[80,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":170,"s":[100,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.76,0.76,0.76],"y":[0,0,0]},"t":180,"s":[100,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.76,0.76,0.76],"y":[0,0,0]},"t":197,"s":[100,100,100]},{"t":226,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":131,"s":[{"i":[[-8.853,0],[-2.952,-9.049],[0,-3.067],[0.83,-2.631],[8.768,0],[3.175,8.471],[0,3.485],[-0.777,2.556]],"o":[[8.689,0],[0.881,2.699],[0,2.973],[-2.896,9.18],[-8.336,0],[-1.122,-2.993],[0,-2.873],[2.834,-9.32]],"v":[[145.426,-138],[164.488,-122.531],[165.852,-113.831],[164.568,-105.379],[145.426,-89.662],[126.745,-104.041],[125,-113.831],[126.201,-122.015]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-10.684,0.233],[-2.632,-3.499],[1.122,-1.344],[1.795,0.991],[8.586,-0.126],[3.107,-1.473],[1.229,1.942],[-2.232,1.987]],"o":[[10.413,-0.228],[1.675,2.227],[-1.146,1.373],[-3.063,-1.691],[-9.061,0.133],[-1.953,0.926],[-1.285,-2.03],[3.295,-2.934]],"v":[[145.928,-119.439],[165.64,-112.673],[165.96,-107.395],[161.144,-107.302],[145.069,-112.13],[128.64,-106.742],[123.491,-107.302],[125.065,-113.381]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":141,"s":[{"i":[[-8.853,0],[-2.952,-9.049],[0,-3.067],[0.83,-2.631],[8.768,0],[3.175,8.471],[0,3.485],[-0.777,2.556]],"o":[[8.689,0],[0.881,2.699],[0,2.973],[-2.896,9.18],[-8.336,0],[-1.122,-2.993],[0,-2.873],[2.834,-9.32]],"v":[[145.426,-138],[164.488,-122.531],[165.852,-113.831],[164.568,-105.379],[145.426,-89.662],[126.745,-104.041],[125,-113.831],[126.201,-122.015]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":146,"s":[{"i":[[-10.684,0.233],[-2.632,-3.499],[1.122,-1.344],[1.795,0.991],[8.586,-0.126],[3.107,-1.473],[1.229,1.942],[-2.232,1.987]],"o":[[10.413,-0.228],[1.675,2.227],[-1.146,1.373],[-3.063,-1.691],[-9.061,0.133],[-1.953,0.926],[-1.285,-2.03],[3.295,-2.934]],"v":[[145.928,-119.439],[165.64,-112.673],[165.96,-107.395],[161.144,-107.302],[145.069,-112.13],[128.64,-106.742],[123.491,-107.302],[125.065,-113.381]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":151,"s":[{"i":[[-8.853,0],[-2.952,-9.049],[0,-3.067],[0.83,-2.631],[8.768,0],[3.175,8.471],[0,3.485],[-0.777,2.556]],"o":[[8.689,0],[0.881,2.699],[0,2.973],[-2.896,9.18],[-8.336,0],[-1.122,-2.993],[0,-2.873],[2.834,-9.32]],"v":[[145.426,-138],[164.488,-122.531],[165.852,-113.831],[164.568,-105.379],[145.426,-89.662],[126.745,-104.041],[125,-113.831],[126.201,-122.015]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":228,"s":[{"i":[[-8.853,0],[-2.952,-9.049],[0,-3.067],[0.83,-2.631],[8.768,0],[3.175,8.471],[0,3.485],[-0.777,2.556]],"o":[[8.689,0],[0.881,2.699],[0,2.973],[-2.896,9.18],[-8.336,0],[-1.122,-2.993],[0,-2.873],[2.834,-9.32]],"v":[[145.426,-138],[164.488,-122.531],[165.852,-113.831],[164.568,-105.379],[145.426,-89.662],[126.745,-104.041],[125,-113.831],[126.201,-122.015]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":233,"s":[{"i":[[-10.684,0.233],[-2.632,-3.499],[1.122,-1.344],[1.795,0.991],[8.586,-0.126],[3.107,-1.473],[1.229,1.942],[-2.232,1.987]],"o":[[10.413,-0.228],[1.675,2.227],[-1.146,1.373],[-3.063,-1.691],[-9.061,0.133],[-1.953,0.926],[-1.285,-2.03],[3.295,-2.934]],"v":[[145.928,-119.439],[165.64,-112.673],[165.96,-107.395],[161.144,-107.302],[145.069,-112.13],[128.64,-106.742],[123.491,-107.302],[125.065,-113.381]],"c":true}]},{"t":238,"s":[{"i":[[-8.853,0],[-2.952,-9.049],[0,-3.067],[0.83,-2.631],[8.768,0],[3.175,8.471],[0,3.485],[-0.777,2.556]],"o":[[8.689,0],[0.881,2.699],[0,2.973],[-2.896,9.18],[-8.336,0],[-1.122,-2.993],[0,-2.873],[2.834,-9.32]],"v":[[145.426,-138],[164.488,-122.531],[165.852,-113.831],[164.568,-105.379],[145.426,-89.662],[126.745,-104.041],[125,-113.831],[126.201,-122.015]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":131,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":141,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":146,"s":[5]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":151,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":228,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":233,"s":[5]},{"t":238,"s":[0]}]},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":38,"ty":4,"nm":"eye_lbl 2","parent":39,"sr":1,"ks":{"p":{"a":0,"k":[150.541,-124.606,0]},"s":{"a":0,"k":[80,80,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":131,"s":[{"i":[[-2.159,-4.209],[-3.538,1.815],[2.159,4.209],[3.538,-1.815]],"o":[[2.159,4.209],[3.538,-1.815],[-2.159,-4.209],[-3.538,1.815]],"v":[[-6.406,3.286],[3.909,7.621],[6.406,-3.286],[-3.909,-7.621]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":136,"s":[{"i":[[-2.159,-2.858],[-3.538,1.232],[2.159,2.858],[3.538,-1.232]],"o":[[2.159,2.858],[3.538,-1.232],[-2.159,-2.858],[-3.538,1.232]],"v":[[-8.325,13.142],[1.99,16.086],[4.487,8.68],[-5.828,5.736]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":141,"s":[{"i":[[-2.159,-4.209],[-3.538,1.815],[2.159,4.209],[3.538,-1.815]],"o":[[2.159,4.209],[3.538,-1.815],[-2.159,-4.209],[-3.538,1.815]],"v":[[-6.406,3.286],[3.909,7.621],[6.406,-3.286],[-3.909,-7.621]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":146,"s":[{"i":[[-2.159,-2.858],[-3.538,1.232],[2.159,2.858],[3.538,-1.232]],"o":[[2.159,2.858],[3.538,-1.232],[-2.159,-2.858],[-3.538,1.232]],"v":[[-8.325,13.142],[1.99,16.086],[4.487,8.68],[-5.828,5.736]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":151,"s":[{"i":[[-2.159,-4.209],[-3.538,1.815],[2.159,4.209],[3.538,-1.815]],"o":[[2.159,4.209],[3.538,-1.815],[-2.159,-4.209],[-3.538,1.815]],"v":[[-6.406,3.286],[3.909,7.621],[6.406,-3.286],[-3.909,-7.621]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":228,"s":[{"i":[[-2.159,-4.209],[-3.538,1.815],[2.159,4.209],[3.538,-1.815]],"o":[[2.159,4.209],[3.538,-1.815],[-2.159,-4.209],[-3.538,1.815]],"v":[[-6.406,3.286],[3.909,7.621],[6.406,-3.286],[-3.909,-7.621]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":233,"s":[{"i":[[-2.159,-2.858],[-3.538,1.232],[2.159,2.858],[3.538,-1.232]],"o":[[2.159,2.858],[3.538,-1.232],[-2.159,-2.858],[-3.538,1.232]],"v":[[-8.325,13.142],[1.99,16.086],[4.487,8.68],[-5.828,5.736]],"c":true}]},{"t":238,"s":[{"i":[[-2.159,-4.209],[-3.538,1.815],[2.159,4.209],[3.538,-1.815]],"o":[[2.159,4.209],[3.538,-1.815],[-2.159,-4.209],[-3.538,1.815]],"v":[[-6.406,3.286],[3.909,7.621],[6.406,-3.286],[-3.909,-7.621]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":131,"s":[1,1,1,1]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":136,"s":[0,0,0,1]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":141,"s":[1,1,1,1]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":146,"s":[0,0,0,1]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":151,"s":[1,1,1,1]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":228,"s":[1,1,1,1]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":233,"s":[0,0,0,1]},{"t":238,"s":[1,1,1,1]}]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":39,"ty":4,"nm":"eye_l 2","parent":32,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":80,"s":[-78.872,-37.363,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.24,"y":0.24},"o":{"x":0.6,"y":0.6},"t":90,"s":[-73.114,-46.791,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.76,"y":0},"t":160,"s":[-73.114,-46.791,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.24,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[-75.412,-44.761,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.24,"y":0.24},"o":{"x":0.76,"y":0.76},"t":180,"s":[-57.159,-42.736,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.24,"y":1},"o":{"x":0.76,"y":0},"t":197,"s":[-57.159,-42.736,0],"to":[0,0,0],"ti":[0,0,0]},{"t":226,"s":[-78.872,-37.363,0]}]},"a":{"a":0,"k":[145.426,-113.831,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4,0.4],"y":[1,1,1]},"o":{"x":[0.6,0.6,0.6],"y":[0,0,0]},"t":80,"s":[100,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.6,0.6,0.6],"y":[0,0,0]},"t":90,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.76,0.76,0.76],"y":[0,0,0]},"t":160,"s":[100,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0,0]},"t":170,"s":[100,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.76,0.76,0.76],"y":[0,0,0]},"t":180,"s":[80,100,100]},{"i":{"x":[0.24,0.24,0.24],"y":[1,1,1]},"o":{"x":[0.76,0.76,0.76],"y":[0,0,0]},"t":197,"s":[80,100,100]},{"t":226,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":131,"s":[{"i":[[-8.853,0],[-2.952,-9.049],[0,-3.067],[0.83,-2.631],[8.768,0],[3.175,8.471],[0,3.485],[-0.777,2.556]],"o":[[8.689,0],[0.881,2.699],[0,2.973],[-2.896,9.18],[-8.336,0],[-1.122,-2.993],[0,-2.873],[2.834,-9.32]],"v":[[145.426,-138],[164.488,-122.531],[165.852,-113.831],[164.568,-105.379],[145.426,-89.662],[126.745,-104.041],[125,-113.831],[126.201,-122.015]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-10.684,0.233],[-2.632,-3.499],[1.122,-1.344],[1.795,0.991],[8.586,-0.126],[3.107,-1.473],[1.229,1.942],[-2.232,1.987]],"o":[[10.413,-0.228],[1.675,2.227],[-1.146,1.373],[-3.063,-1.691],[-9.061,0.133],[-1.953,0.926],[-1.285,-2.03],[3.295,-2.934]],"v":[[145.928,-119.439],[165.64,-112.673],[165.96,-107.395],[161.144,-107.302],[145.069,-112.13],[128.64,-106.742],[123.491,-107.302],[125.065,-113.381]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":141,"s":[{"i":[[-8.853,0],[-2.952,-9.049],[0,-3.067],[0.83,-2.631],[8.768,0],[3.175,8.471],[0,3.485],[-0.777,2.556]],"o":[[8.689,0],[0.881,2.699],[0,2.973],[-2.896,9.18],[-8.336,0],[-1.122,-2.993],[0,-2.873],[2.834,-9.32]],"v":[[145.426,-138],[164.488,-122.531],[165.852,-113.831],[164.568,-105.379],[145.426,-89.662],[126.745,-104.041],[125,-113.831],[126.201,-122.015]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":146,"s":[{"i":[[-10.684,0.233],[-2.632,-3.499],[1.122,-1.344],[1.795,0.991],[8.586,-0.126],[3.107,-1.473],[1.229,1.942],[-2.232,1.987]],"o":[[10.413,-0.228],[1.675,2.227],[-1.146,1.373],[-3.063,-1.691],[-9.061,0.133],[-1.953,0.926],[-1.285,-2.03],[3.295,-2.934]],"v":[[145.928,-119.439],[165.64,-112.673],[165.96,-107.395],[161.144,-107.302],[145.069,-112.13],[128.64,-106.742],[123.491,-107.302],[125.065,-113.381]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":151,"s":[{"i":[[-8.853,0],[-2.952,-9.049],[0,-3.067],[0.83,-2.631],[8.768,0],[3.175,8.471],[0,3.485],[-0.777,2.556]],"o":[[8.689,0],[0.881,2.699],[0,2.973],[-2.896,9.18],[-8.336,0],[-1.122,-2.993],[0,-2.873],[2.834,-9.32]],"v":[[145.426,-138],[164.488,-122.531],[165.852,-113.831],[164.568,-105.379],[145.426,-89.662],[126.745,-104.041],[125,-113.831],[126.201,-122.015]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":228,"s":[{"i":[[-8.853,0],[-2.952,-9.049],[0,-3.067],[0.83,-2.631],[8.768,0],[3.175,8.471],[0,3.485],[-0.777,2.556]],"o":[[8.689,0],[0.881,2.699],[0,2.973],[-2.896,9.18],[-8.336,0],[-1.122,-2.993],[0,-2.873],[2.834,-9.32]],"v":[[145.426,-138],[164.488,-122.531],[165.852,-113.831],[164.568,-105.379],[145.426,-89.662],[126.745,-104.041],[125,-113.831],[126.201,-122.015]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":233,"s":[{"i":[[-10.684,0.233],[-2.632,-3.499],[1.122,-1.344],[1.795,0.991],[8.586,-0.126],[3.107,-1.473],[1.229,1.942],[-2.232,1.987]],"o":[[10.413,-0.228],[1.675,2.227],[-1.146,1.373],[-3.063,-1.691],[-9.061,0.133],[-1.953,0.926],[-1.285,-2.03],[3.295,-2.934]],"v":[[145.928,-119.439],[165.64,-112.673],[165.96,-107.395],[161.144,-107.302],[145.069,-112.13],[128.64,-106.742],[123.491,-107.302],[125.065,-113.381]],"c":true}]},{"t":238,"s":[{"i":[[-8.853,0],[-2.952,-9.049],[0,-3.067],[0.83,-2.631],[8.768,0],[3.175,8.471],[0,3.485],[-0.777,2.556]],"o":[[8.689,0],[0.881,2.699],[0,2.973],[-2.896,9.18],[-8.336,0],[-1.122,-2.993],[0,-2.873],[2.834,-9.32]],"v":[[145.426,-138],[164.488,-122.531],[165.852,-113.831],[164.568,-105.379],[145.426,-89.662],[126.745,-104.041],[125,-113.831],[126.201,-122.015]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":131,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":141,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":146,"s":[5]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":151,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":228,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":233,"s":[5]},{"t":238,"s":[0]}]},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":40,"ty":4,"nm":"h_bl2","parent":42,"sr":1,"ks":{"p":{"a":0,"k":[2,24.714,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.921,20.247]],"o":[[15.026,-20.247],[-0.889,-19.553]],"v":[[116.773,67.478],[133.964,2.294]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8.869},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":48,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[0]},{"t":240,"s":[5]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":48,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[95]},{"t":240,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":41,"ty":4,"nm":"h_bl1","parent":42,"sr":1,"ks":{"p":{"a":0,"k":[-114.137,18.941,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.632,-8.452],[0,-2.686],[-7.161,-13.42]],"o":[[-0.2,2.679],[0,16.771],[4.859,9.106]],"v":[[-22.238,4.398],[-22.54,12.448],[-11.417,57.88]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.988235294118,0.933333333333,0.129411764706,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8.869},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":228,"s":[5]},{"t":240,"s":[0]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":228,"s":[100]},{"t":240,"s":[95]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":42,"ty":4,"nm":"head","parent":44,"sr":1,"ks":{"p":{"a":0,"k":[0,-50.886,0]},"a":{"a":0,"k":[0,122.122,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,36.575],[-86.915,0],[0,-77.698],[33.287,-21.004]],"o":[[-31.231,-24.344],[0,-77.698],[86.914,0],[0,36.674],[0,0]],"v":[[-110.436,130.604],[-157.372,32.061],[0,-122.122],[157.372,32.061],[106.528,131.728]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.980392156863,0.564705882353,0.086274509804,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":9.091},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.835294117647,0.152941176471,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":43,"ty":4,"nm":"h_bl4","parent":44,"sr":1,"ks":{"p":{"a":0,"k":[118.492,8.697,0]},"a":{"a":0,"k":[118.345,-12.45,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.729,-8.98]],"o":[[3.76,6.005],[2.541,13.2]],"v":[[114.313,-20.514],[122.774,2.393]],"c":false}},"nm":"Path 2","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8.869},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":-12.14},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":48,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[0]},{"t":240,"s":[5]}]},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":48,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":96,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":132,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":144,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":192,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":204,"s":[95]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":216,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":228,"s":[95]},{"t":240,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":44,"ty":4,"nm":"body","sr":1,"ks":{"p":{"a":0,"k":[246.15,506,0]},"a":{"a":0,"k":[-6.227,110.821,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":60,"s":[107,113,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":66,"s":[107,113,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":75,"s":[110,110,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":80,"s":[110,110,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":84,"s":[113,107,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":90,"s":[109,111,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":100,"s":[110,110,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":160,"s":[110,110,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":170,"s":[113,107,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":181,"s":[110,110,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":200,"s":[110,110,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":232,"s":[110,110,100]},{"t":240,"s":[107,113,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[69.018,0],[-0.099,66.424],[-58.42,0],[1.21,-74.939]],"o":[[-68.669,0],[10.817,-110.679],[78.25,0],[-1.192,73.849]],"v":[[-0.397,103.674],[-160.817,37.25],[-3.701,-91.968],[148.45,36.972]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.980392156863,0.564705882353,0.086274509804,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":9.091},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.835294117647,0.152941176471,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":60,"op":240,"st":60,"bm":0},{"ddd":0,"ind":45,"ty":4,"nm":"Layer 17","parent":3,"sr":1,"ks":{"r":{"a":0,"k":-23.142},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.604,"y":0},"t":200,"s":[70.385,22.072,0],"to":[-169.196,6.51,0],"ti":[-70.165,-16.406,0]},{"i":{"x":0.448,"y":1},"o":{"x":0.167,"y":0.167},"t":208,"s":[-107.441,64.862,0],"to":[28.636,6.696,0],"ti":[-82.241,-4.396,0]},{"t":216,"s":[56.885,82.072,0]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.58,"y":0},"t":200,"s":[{"i":[[2.138,34.267],[-32.933,6.797],[-0.573,-28.503],[28.57,-3.25]],"o":[[28.253,-4.951],[2.239,47.855],[-19.765,6.011],[-1.908,-20.152]],"v":[[-46.756,-52.941],[40.808,-66.732],[47.665,69.099],[-42.473,86.261]],"c":true}]},{"i":{"x":0.42,"y":1},"o":{"x":0.167,"y":0.167},"t":208,"s":[{"i":[[-10.631,27.592],[0.219,16.423],[11.114,-25.018],[-0.518,-13.864]],"o":[[-0.53,-13.311],[-15.105,37.206],[-0.618,11.565],[7.988,-17.213]],"v":[[48.798,-43.466],[46.936,-86.02],[-4.438,34.231],[-4.324,80.355]],"c":true}]},{"t":216,"s":[{"i":[[23.198,22.8],[32.106,15.3],[8.709,-27.327],[-29.181,-17.646]],"o":[[-27.795,-12.277],[17.901,27.537],[18.719,11.045],[7.711,-18.922]],"v":[[45.16,-43.972],[-51.807,-89.312],[-50.235,44.827],[35.894,94.179]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.737254917622,0.658823549747,0.443137258291,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392158031,0.792156875134,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":200,"op":208,"st":60,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"_005_PRIVATE_2","refId":"comp_0","sr":1,"ks":{"p":{"a":0,"k":[256,256,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":0,"op":57,"st":-182,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"_005_PRIVATE_2","refId":"comp_0","sr":1,"ks":{"p":{"a":0,"k":[256,256,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":57,"op":180,"st":-3,"bm":0}]} \ No newline at end of file diff --git a/TMessagesProj/src/main/res/values-night/colors.xml b/TMessagesProj/src/main/res/values-night/colors.xml new file mode 100755 index 000000000..517adb20e --- /dev/null +++ b/TMessagesProj/src/main/res/values-night/colors.xml @@ -0,0 +1,11 @@ + + + #dcdcdc + #ffffff + #ffffff + #74808B + #7E8B98 + #000000 + #75ADE5 + #8D949B + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/values/colors.xml b/TMessagesProj/src/main/res/values/colors.xml index b4eac3ecb..191969b52 100755 --- a/TMessagesProj/src/main/res/values/colors.xml +++ b/TMessagesProj/src/main/res/values/colors.xml @@ -1,4 +1,11 @@ #dcdcdc + #212121 + #ffffff + #96999C + #8B8D8F + #d9d9d9 + #8B8D8F + #999999 \ No newline at end of file diff --git a/TMessagesProj/src/main/res/values/strings.xml b/TMessagesProj/src/main/res/values/strings.xml index 0945439bd..59659089b 100644 --- a/TMessagesProj/src/main/res/values/strings.xml +++ b/TMessagesProj/src/main/res/values/strings.xml @@ -144,6 +144,25 @@ You joined the secret chat. Clear history Clear history + Clear History + Enable Auto-Delete + Auto-delete in %1$s + Auto-delete messages in this chat + Auto-delete messages + Automatically delete new messages after a certain period of time for you and %1$s. + Automatically delete new messages after a certain period of time for members of this group. + Automatically delete new messages after a certain period of time for subscribers of this channel. + Confirm + 24 hours + 7 days + Automatically delete new messages sent in this chat after a certain period of time. + Off + Set for this chat + Messages in this chat are automatically\ndeleted %1$s after they are sent. + New messages in this chat will be automatically deleted in %1$s. + Auto-delete is now disabled. + Set auto-delete timer + Auto-delete timer History cleared. Mute Unmute @@ -258,6 +277,7 @@ Import Messages Import Error Invalid file format. + Unable to import history to selected chat. Unknown file language. You must be an admin in the group to import messages. The file format is for a group, but you selected a user. @@ -281,6 +301,19 @@ Importing messages and media... Import messages and media to... Or choose one of your contacts + + Edit Widget + Display shortcuts to your most important chats for quick access.\n\nIf nobody is selected, your most frequent contacts will be shown in this widget. + Display the latest message from the chats you choose.\n\nIf no specific chats are selected, your most recent chats will be shown in this widget. + \n\nNote: Your passcode will be **ignored** for widgets. + \n\nYour passcode **will not affect** widgets added to homescreen. + Search for chats... + Preview of the widget + tap to edit widget + tap to edit + Chats + Shortcuts + Account was logged off. Promote to admin Edit admin rights @@ -743,6 +776,7 @@ Embed links Read messages changed privileges of %1$s + promoted %1$s Change channel Info Change group Info Post messages @@ -767,6 +801,7 @@ Pinned messages Leaving members Voice chats + Invite links un1 set the slow mode timer to %1$s un1 disabled the slow mode un1 started a voice chat @@ -961,8 +996,20 @@ Objects Symbols Flags + Select messages + REPORT MESSAGES + REPORT %1$s Report Report sent + Report Spam + Report Fake + Report Pornography + Report Child Abuse + Report Violence + Please enter any additional details relevant to your report. + Additional details... + Send Report + Telegram moderators will study your report.\nThank you for your cooperation! Spam Fake Account Violence @@ -1323,6 +1370,14 @@ Add people... You will be able to add more users after you finish creating the group and convert it to a supergroup. + Your group has reached the limit of **200,000** members.\n\nYou can increase this limit by converting the group to a **broadcast group** where only admins can post.\nInterested? + Limit reached + LEARN MORE + Broadcast Group + Convert to Broadcast Group + Broadcast groups can have over 200,000 members, but only admins can send messages in them. + Only admins can send messages in this group. + Your group can now have more than 200,000 members. Enter group name Group name up to %1$s @@ -1353,6 +1408,16 @@ Anyone who has Telegram installed will be able to join your group by following this link. Search for people... Search for users and groups... + Broadcast Groups + No limit on the number of members. + Only admins can send messages. + Can\'t be turned back into a regular group. + Convert to Broadcast Group + Leave as regular group + Are you sure? + Regular members of the group (non-admins) will **irrevocably** lose their right to post messages in the group.\n\nThis action **can\'t** be undone. + CONVERT + If you change your mind, go to the settings of your group. Members Shared Media @@ -1434,6 +1499,16 @@ Audio files Send Message Report + %1$d invite links + %1$d invite link + %1$d invite links + %1$d invite links + %1$d invite links + %1$d invite links + Username copied to clipboard. + Hashtag copied to clipboard. + Bio copied to clipboard. + %s deleted from your contacts Username Your Username @@ -2516,6 +2591,7 @@ Stop downloading Save to gallery %1$d of %2$d + **%1$d** of %2$d Gallery All photos All media @@ -2905,6 +2981,18 @@ Enable You joined the group via invite link + un1 deleted invite link %1$s + un1 created invite link %1$s + un1 revoked invite link %1$s + un1 edited invite link %1$s to %2$s + un1 edited invite link %1$s + un1 changed un2 volume to %1$d%% + un1 has set messages to auto-delete in %1$s + You set messages to auto-delete in %1$s + Messages in this channel will be automatically deleted after %1$s + Messages in this channel will no longer be automatically deleted + un1 disabled the auto-delete timer + You disabled the auto-delete timer un1 joined the group via invite link un1 removed un2 un1 left the group @@ -3396,6 +3484,7 @@ Open voice chat The selected user is already in this voice chat. Sorry, you can\'t join voice chats as an anonymous administrator. + Sorry, this voice chat is full. un1 invited un2 to the voice chat Join voice chat Hey! Join our voice chat: %1$s @@ -3421,8 +3510,9 @@ Stop recording Manage Invite Links - You can create additional invite links that have limited time or number of usages + You can create additional invite links that have a limited time or number of uses Anyone on Telegram will be able to join your group by following this link. + Anyone on Telegram will be able to join your channel by following this link. Edit link Save Link No limit @@ -3431,7 +3521,7 @@ New Link Set custom duration Enter custom limit - Your can make the link expire after a certain time. + You can make the link expire after a certain time. You can make the link expire after it has been used for a certain number of times. No one joined yet Expired @@ -3447,15 +3537,28 @@ Delete Link Revoked Link This link is no longer active - This link is expired + The time limit for this link has expired. + This link reached its usage limit. Create a New Link Delete All Revoked Links No one joined Limit reached - Everyone on Telegram can scan this code to join your group + Everyone on Telegram can scan this code to join your group. This will delete link. This will delete all revoked links. - You can generate invite links that will expire after they\'ve been used. + You can generate invite links that expire after they are used. + Invite links created by this admin + Invite links created by other admins + Invite link for this admin + Everyone on Telegram can scan this code to join your channel. + Anyone who has Telegram installed will be able to join your channel by following this link. + The link expires in %s + Public link + This invite link has expired. + Copy + Share + The invite link has been revoked. + Expired Link Message %1$s Voice call %1$s @@ -3497,6 +3600,24 @@ %1$d people joined %1$d people joined %1$d people joined + %1$d remaining + %1$d remaining + %1$d remaining + %1$d remaining + %1$d remaining + %1$d remaining + %1$d can join + %1$d can join + %1$d can join + %1$d can join + %1$d can join + %1$d can join + %1$d days left + %1$d days left + %1$d day left + %1$d days left + %1$d days left + %1$d days left %1$d chats %1$d chat %1$d chats @@ -4090,6 +4211,11 @@ Share in %1$d chats Share in %1$d chats Share in %1$d chats + %s people can join via this link + %s peoples can join via this link + %s peoples can join via this link + %s peoples can join via this link + %s peoples can join via this link Correct answer Explanation Picture-in-Picture mode @@ -4130,4 +4256,5 @@ \'Remind today at\' HH:mm \'Remind on\' MMM d \'at\' HH:mm \'Remind on\' MMM d yyyy \'at\' HH:mm + Permanent diff --git a/TMessagesProj/src/main/res/xml/chats_widget_info.xml b/TMessagesProj/src/main/res/xml/chats_widget_info.xml new file mode 100644 index 000000000..5979b10d0 --- /dev/null +++ b/TMessagesProj/src/main/res/xml/chats_widget_info.xml @@ -0,0 +1,11 @@ + + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/xml/contacts_widget_info.xml b/TMessagesProj/src/main/res/xml/contacts_widget_info.xml new file mode 100644 index 000000000..1b4b661ee --- /dev/null +++ b/TMessagesProj/src/main/res/xml/contacts_widget_info.xml @@ -0,0 +1,11 @@ + + \ No newline at end of file diff --git a/TMessagesProj/src/main/res/xml/shortcut_widget_info.xml b/TMessagesProj/src/main/res/xml/shortcut_widget_info.xml deleted file mode 100644 index 928a84943..000000000 --- a/TMessagesProj/src/main/res/xml/shortcut_widget_info.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - \ No newline at end of file diff --git a/bin/libs/v2ray.sh b/bin/libs/v2ray.sh index f199208e8..b884c2177 100755 --- a/bin/libs/v2ray.sh +++ b/bin/libs/v2ray.sh @@ -15,9 +15,7 @@ source "bin/init/env.sh" #git reset "v$V2RAY_CORE_VERSION" --hard export GO111MOUDLE=on -go get -v golang.org/x/mobile/cmd/... export PATH="$PATH:$(go env GOPATH)/bin" -gomobile init cd "$PROJECT/build" [ -d "v2ray" ] || git clone https://github.com/2dust/AndroidLibV2rayLite v2ray @@ -25,6 +23,8 @@ cd v2ray git reset --hard && git clean -fdx sed -i -e "s|go 1.14|go 1.15|g" go.mod go mod download -x +go get -v golang.org/x/mobile/cmd/... +gomobile init gomobile bind -v -ldflags='-s -w' . || exit 1 /bin/cp -f libv2ray.aar "$PROJECT/TMessagesProj/libs"