Paging 3 android example. Implementing Paging 3 in Android: Remote API .

Paging 3 android example. paging:paging-runtime:3.
Paging 3 android example – Android Paging 3 Tutorial in Hindi - Learn Paging 3 in Android with simple example. Jan 12, 2021 · To address this issue, Google updated the Paging architectural components library for Android along with the release of Android 11 beta. When observing the Flow of Paging 3, we can combine it with our local Flow and find the item we want to change. In this tutorial, we will discuss how to fetch YouTube data list from YouTube Data API using Paging 3 Library and show them in Jetpack Compose list with coil library for image rendering. Android paging supports all three and, in this example, we will work with Flow. An example of these APIs in use can be In this blog, we will learn how to implement Paging Library in Android. We have created a full tutorial for Paging. The limit parameter indicates how many items should be fetched in one call. It also has some new features. In this article, we will learn about Paging and apply it to our Android application. Oct 15, 2021 · Pagination in Android with Paging 3. If you’re loading in the batch of 20 items and the current page is 4, all these 20 items on page 4 will have a prevKey=3 and nextKey=5. PagingSource<java. 0 Paging library 3. It enable developers to create a native UI with less code and more flexibility in more intuitive and powerful way. A simple android application that uses the new android pagination library. Paging 3 library demonstration using github search. At the end of the tutorial, you would have learned: How to use RemoteMediator with Paging 3. The list will automatically be scrolled to the bottom as mentioned in the comments. Dec 11, 2024 · An example of how the Paging library fits into your app architecture. This code is inside viewmodel class. Oct 8, 2020 · But here, to achieve pagination using page number, prevKey and nextKey will represent the previous and next page number of the current item. Third time, the next load is500 items. implementation "androidx. Keys are page numbers. This tutorial cover Aug 22, 2021 · P aging 3 is the recent evolution state of Android’s Paging Library. When we get the last item loaded from the PagingState, there’s no way to know the index of the page it belonged to. Jan 7, 2022 · I successfully migrated from Paging 2 to Paging 3 and to be true its very smooth compare to paging 2 library with the help of ViewModel and Room Database. After successfully creating the side that will get the data, now let’s move on to the ui side. Paging Library is used to get only a selected amount of data out of a heap of data i. Together, they allow developers to efficiently load and display data while minimizing unnecessary network Aug 8, 2022 · I'm having an issue using Paging 3 library. loopwiki. createdAt is necessary for cache timeout. 0-alpha07" DataSource. Jul 14, 2020 · I want to use Paging Library 3 in conjunction with LiveData from Java. pagination retrofit2 mvvm-architecture coroutines-android mvvm-android paging-library- Jika aplikasi Anda sudah menggunakan library Paging versi sebelumnya, baca halaman ini untuk mempelajari proses migrasi ke Paging 3 lebih lanjut. Android Tutorial - All Free Android Tutorials by MindOrks Android Online Course for Professionals - In this online course, you’ll learn the Dagger, Kotlin, RxJava, MVVM Architecture, Architecture Components, Jetpack, LiveData, ViewModel, Room Database, Database Design, Multithreading, Memory Management, Networking, Caching, How Glide works Paging 3. But this method force to l Dec 11, 2024 · Paging 2 library overview Part of Android Jetpack. User doesn't scroll much, so that not all entities are stored again. b) Built-in request deduplication, ensuring that your app uses network bandwidth and system resources efficiently Jan 6, 2022 · How can I implement Pagination 3 in Android Studio using Java, on the web there are many examples with Kotlin but none in specific that helps me implement Pagination 3 and that it uses only data obtained from Room Database If someone has an example of interest or a useful web reference. The Paging library includes the following features: a) In-memory caching for your paged data. May 21, 2021 · I wanted to build an application like Twitter where I have to display a list of data sets with live updates for counting like and comments in real time. Paging 3 is written entirely using Kotlin Coroutines. Features of Paging 3. UserActivity starts paging. Oct 4, 2021 · I want to show a list of items with pagination 3 and the data is from my local database with Room Library. Modified 2 years, Android Paging 3 - experiencing flickers, glitches Aug 2, 2020 · This tutorial serve as alternative for other who doesn’t want to use Coroutines and prefer RxJava instead. Ask Question Asked 2 years, 9 months ago. paging. The rest of this codelab will introduce the Paging library, and demonstrate how it helps you Oct 16, 2023 · For Android, Google has provided a very efficient Paging library, which we can use in our apps by following certain steps. Is there any tutorial/guide for this? PS: Now the initial loading is working fine, but when I scroll to top-most, I have no idea how to load Page 2 data. The first page 0 contains 30 items; The next page would be 3 and contains 10 items. 4. We’ll also be using RxJava2. Lớp học lập trình cơ bản về Android Paging; Lớp học lập trình nâng cao về Android Paging; Đề xuất cho bạn. This library is part of Android Jetpack and seamlessly integrates with other components. tried to find videos on paging 3 in java but unfortunately no one has covered paging in Java. 0 is a complete re-write of the library. How to add Paging 3 to your project. I setup. getStreamData(data). 0-alpha05 Room Version : 2. I'm using retrofit to get data and paging 3 to display it but what is happening right now is that when I open my fragment for the first time, nothing is displayed on the fragment but when I close this fragment and open it again, data is displayed. Jika Paging 3 adalah library Paging versi pertama yang Anda gunakan di aplikasi, lihat Memuat dan menampilkan data yang di-page untuk informasi tentang penggunaan dasar. Paging 3 Architecture. Work-around for the glitch Jul 6, 2021 · I'm using Paging 3 with flows to populate my RecyclerView, I click on an item and go to a details page and upvote the item, this adds 1 to a counter visible in the ViewHolder. Open in app Understanding and Implementing Paging 3 library. com/payment-gateway/paytm-payment-gateway-integration Oct 28, 2021 · Hey I am using Paging 3 library with ViewPager 2. It uses Kotlin, and it has first-class support for Kotlin coroutines and flow. 0-alpha02. etc. viewpagerexample import java. at a particular instant of time only the desired amount of data will be loaded in the application. Retrofit for the network API calls; Room to store the retrieved data; A repository that exposes the Pager. Topics. paging:paging-*:3. This will initially delete all entities, so that we can fetch all new elements first. lang. Si quieres importar componentes de Paging a tu app para Android, Groovy dependencies { def paging_version = "3. My solution in the sample code above does rely heavily on mocks and returning a mocked version of the PagindData. In simple words, Paging 3 helps us to do pagination Jul 12, 2023 · If your app already uses an earlier version of the Paging library, read this page to learn more about migrating to Paging 3. In this article we are going to discuss Paging 3 and how we can modify Paged Data without altering the data source. Using it with RxJava. For example if you have 10 items per page. 2" implementation "androidx. Network fetches only need to do what this class did, aka track that a fetch is started, and ensure you don't add a new fetch for the same page over and over again. But the first time i open the app the list are not showing anything. Clicking on a user which starts the UserActivity (from the first example) 3. Jun 19, 2020 · Thank you for clarifying @MR3YY. Jan 23, 2021 · The Paging 3 library provides first-class Kotlin support, designed to fit recommended Android app architecture and works seamlessly with other Jetpack components. We can then change it before submitting it to the view to observe. Today you gonna learn how to implement Pagination by using Dec 11, 2024 · For example, if you load pages of User objects from the network by passing Int page numbers to Retrofit, select Int as the Key type and User as the Value type. I used Flow to retrieve data. I am wondering if I can use Paging Library 3. Jan 11, 2022 · UserViewModel. Dec 6, 2020 · I do not believe you can sort correctly on the receiving end when you are using a paging source. Oct 15, 2021 · Android Paging 3 Overview. Google released the Paging 3 library to simplify the implementation of Paging in Android applications. Implementing Paging 3 in Android: Remote API Jan 26, 2021 · The Paging 3 library provides first-class Kotlin support, designed to fit the recommended Android app architecture and works seamlessly with other Jetpack components. I. For that, I am using RecyclerView - for I really hate Google for obsoleting the paging API in 2. May 11, 2021 · A real PRODUCTION ready example is on the Plaid app. Apr 17, 2021 · I don't understand where i am going wrong , tried to search alot on stackoverflow but all in vain , I wasn't able to glean anything of substance from google's documentation on paging 3 in java to resolve this issue. In this video, we will learn about paging in android. Learn how Paging 3's magic streamlines loading, Hilt simplifies dependency injection, Coroutines handle delays, and Retrofit connects with servers. Sep 14, 2022 · In the load() method, we make the call to the API. Untuk membangun PagingSource, Anda harus menentukan hal-hal berikut:. The component allows you for example to easily integrate paging REST Endpoints or let you load database entries from Android Dec 30, 2022 · This model is necessary to keep track of pagination. The PagingSource implementation is passed to the Pager through the pagingSourceFactory parameter. When I use Paging 2 API under Paging 3, there's one function that's missing. May 3, 2022 · This tutorial expands on the previously published Paging 3 tutorial without an offline database here. This guide provides several conceptual examples of the library, along with an overview of how it works. The Key type is Int and the Value type is User. Article Link & download source code:https://www. I've updated my answer to include a toy example, but essentially you control the whole flow in Paging - what value to send for the next load, and also how to parse that value. 0. In which it loads unlimited data. Introduction to Paging 3 library Google launched Paging 3 as a part of the Jetpack series. To solve this problem, we added another table that stores the next, current and previous page keys for each Movie. First, let’s request the users data from the repository on the viewModel side. flow (see code below) About. 0 lib, which loading Posts from json placeholder fake api - forzakmah/android-paging3-sample Dec 11, 2024 · androidx. package com. Diagram of the lifecycle of Paging with PagingSource and PagingData. Benefits of migrating to Paging 3. Goals. If you're new to pagination as a concept, or to the Paging Library as a whole, check out the Paging basics codelab. Paging 3 greatly simplifies implementing paging in your android app. This is because paging will return a chunk of data from the database in whichever order it is, or in whichever order you specify in its query directly. These are provided for us by the Paging library. 1 Android Paging 3 is not loading next page . I don't know yet if the behaviour explained above is due to bugs / limitations in the Paging-3 components or if that's just a bad explanation in the reference documentation, or something I missed entirely. Paging 3 library comes with the latest features that might cover all the scenarios of listing the data in any format like (Listview, Recyclerview, GridView etc . Jenis kunci paging - Definisi jenis kueri halaman yang kita gunakan untuk meminta lebih banyak data. My current approach. For example, it supports headers and footers, and it has retry and refresh mechanisms. I can't find a simple Java example showing use of PagingSource with Room without adding some remote sourcw stuff. Jan 27, 2019 · Paging 3. In the PagingSource, I noticed that page numbers are incremented or decremented using the key. public abstract androidx. The Paging 3 API provides support for common functionality that you would otherwise need to implement yourself when loading data in pages: Keeps track of the keys to be used for retrieving the next and previous page. Tools Nov 6, 2020 · DataSource is used in paging 2 right?. Oct 18, 2023 · The Paging 3 Library is a new library to fetch and display pages of data from a large data set from API or Database. How to add list separators using the Paging 3 API. First time, PagingSource load 500 x 3 = 1500 items; Second time, the next load is500 items. What is happening? The components of the Paging library are designed to fit into the recommended Android app architecture, integrate cleanly with other Jetpack components, and provide first-class Kotlin support. In this project we will learn how to use paging 3 with Room Database and Retrofit for data caching purpose :) Jun 13, 2019 · We’ll be using Android Architecture Component’s Paging Library for efficient pagination. It can handle easy or complex data operations like data loading from the network, a database, or a combination of different data sources. Automatically requests the correct next page when the user scrolls to the end of the loaded data. Jan 2, 2024 · This demographic workflow will be about on Paging 3 Library in Android. My entities have Long as PrimaryKey and Room can generate PagingSource for other than Int type. I would like to display the Jan 21, 2022 · I finally found out a possible solution, though I'm not sure it will work if the Paging-3 library is updated. Android Jetpack Paging 3 and Flow. Di chuyển ứng dụng sang Paging 3. Aug 24, 2020 · Pagination3 version: 3. This process of fetching information incrementally is called pagination, where each page corresponds to a chunk of data to be fetched. Lưu ý: văn bản có đường liên kết sẽ hiện khi JavaScript tắt; Tải và hiện dữ liệu được phân trang; Di chuyển sang Paging 3; Phân trang qua mạng và cơ sở dữ liệu Apr 7, 2021 · I am consuming a rest API that uses cursor based pagination to show some results. For example, You set NETWORK_PAGE_SIZE = 500. What you'll learn. Users can scroll through posts, view post details, and interact 🛡️ Android security (camera/microphone dots indicators) app using Hilt, Animations, Coroutines, Material, StateFlow, Jetpack (Room, ViewModel, Paging, Security, Biometrics, Start-up) based on MVVM architecture. It was hard to find much documentation/tutorial for the java users so at last i found these links to get successful migration. cachedIn(viewModelScope) } Aug 26, 2020 · I have followed a tutorial to add Loadstate Adapter to the Recyclerview Adapter on Android Paging 3 but currently, it's not showing. . android android-paging3. Other libraries used are Hilt dependency injection, Kotlin flow, Kotlin coroutines, Retrofit, Architecture components (room and viewmodel) and view model. May 1, 2023 · Paging 3 is an Android jetpack library that helps us to load and display pages of data from a larger dataset from local storage or over network. Updated Sep 15, 2022 · As a result, if you use this method, you will have to deal with a large number of cases. Nov 10, 2023 · This shift allows developers to seamlessly integrate Paging 3 into cross-platform projects, streamlining data loading and pagination. The project uses MVVM architechture Mar 23, 2021 · Within this article, we took a look at a combination of Android Room, RecyclerView, and Paging 3 to build an infinite scrolling list that can be used for example for implementing a social media feed. How to add a header or footer to your list using the Paging 3 API. Paging 3 concept introduced in the Android Jetpack component that helps you to display pages of data from a large number of data from local databases or remote data Jul 28, 2020 · I am trying to find a way to update single item in recycler view using PagingAdapter from Paging 3 library. To request a page, the data source being paged through often requires a query which defines the information required. android E In this case you're in the item-keyed scenario where you want to load a page based on a string that is computed per-item. No load more data. Load 7 more related questions Oct 12, 2020 · There are a few ways to work reactively in Android, the main ones are: RxJava, LiveData, and the new, still experimental, Flow API. – Apr 8, 2021 · pagination not working when reaches to end of page in paging 3 android? 1. 0-alpha03 Date Picker in Material 3 Jetpack Compose (with Examples) whenever we have to perform pagination in android Jul 21, 2020 · Paging 3 highlights. It also can handle easy or complex data operations like data loading from the network, database, or a combination of different data sources. Mar 24, 2022 · Android paging 3 jumping and placeholder example. UI layer tests. This ensures that your app uses system resources efficiently while working with paged data. Manfaat melakukan migrasi ke Dec 18, 2020 · This video is a demo of the Paging 3 example. PagingSource I’m currently developing an app using Android Paging 3 for web communication. example. Sample app for tutorial: Pagination in Android Room Database using the Paging 3 Library Mar 30, 2022 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand Dec 1, 2021 · Android Paging (3) load all pages at once. Paging 3 is somewhat complex, so if you are new to the library, I would recommend checking out the tutorial without RemoteMediator first. Nov 7, 2020 · At this point, if you think that “Oh!, Its quite simple to implement, attach a recycler scroll listener to the recycler view, and if the user reaches the end of the first 10 posts make a back Nov 26, 2021 · The main Problem I currently face is, that the getRefreshKey function doesn't return a correct refresh page key, which results in the wrong page being refreshed and the list jumping to the loaded page. A news app showcasing the use of Android Paging 3 library. Personally, I use Clean Architecture but to keep things simple, we’ll Apr 8, 2021 · I need to implement the REVERSE pagination as user scroll to top boundary, will load for page 2,3,4. Unfortunately, the data is not showing up in my app at all, and I'v Android Paging Library tutorial with Retrofit using MVVM Architecture. metabrainz. util. For further details and updates, check the official Android 分页库概览 Android Jetpack 的一部分。 Paging 库可帮助您加载和显示来自本地存储或网络中更大的数据集中的数据页面。此方法可让您的应用更高效地利用网络带宽和系统资源。 Aug 14, 2020 · Using the footer LoadStateAdapter for showing initial loading will cause issues. error: For now, Room only supports PagingSource with Key of type Int. 3. Dec 22, 2022 · Caching and Pagination with Paging 3 in Android & Jetpack Compose. Jan 25, 2021 · A simple solution for implementing pagination in Cloud Firestore using Paging v3 library for Android, through a simple example. Here is a diagram that represents the data flow from the endpoint (local or remote) all the way to the UI. The project uses MVVM architechture This is a sample project which demonstrates how to create infinite lists 📋📋 with Paging 3 library in Jetpack Compose using modern Android Architecture Components(Kotlin, MVVM, Flow, Jetpack Compose, Paging 3 Library, Android Jetpack). Define the PagingSource. What the main components of Paging 3 are. Google introduced the concept of Paging in Android to avoid these types of difficulties and to load only the desired amount of data from the database. I'm always forced to go back to paging 1 API. e. - 2307vivek/PagingCompose-Sample Mar 8, 2021 · I am struggling with the Paging 3 Library of Jetpack. Để di chuyển hoàn toàn sang Paging 3, bạn phải di chuyển cả ba thành phần chính từ Paging 2: Các lớp DataSource; PagedList; PagedListAdapter; Tuy nhiên, một số thành phần Paging 3 có khả năng tương thích ngược với các phiên bản Paging trước. Everything populates data class Article( val id: Int, val title: String, val description: String, val created: LocalDateTime, ) . When paging directly from the network, the PagingSource loads the data and returns a LoadResult object. Luckily, I have a tutorial on raywenderlich. Now this is inside the Paging 3 as per Documentation in Migrate to Paging 3. fun createRepo(data: List<String>, repository: RepositoryData): Flow<PagingData<UnlimitData>> { return repository. This section describes the Paging library components that operate at each layer and how they work together to load and display paged data. paging:paging-runtime Jun 13, 2023 · Integrating Paging in Jetpack Compose: To integrate paging with Jetpack Compose, we can leverage the Paging library, a component of the Android Jetpack suite. 0 to paginate it. Aug 3, 2020 · This is called Paging. ) Support live data; Paging 3 library support coroutine flow; List separators (Decoration Jul 12, 2023 · This guide explains how to test the Paging library in the different architecture layers of your app as well as how to write end-to-end tests for your entire Paging implementation. Callback provided by the room with JSON file. The Paging 3 library is still early so I'd bet there will be more to come on the testing front from the Android team. Sep 14, 2024 · Populating infinite (Practically very long) scrolling row, column and grid has always been a point of optimization, over the time numerous things were introduced to address it. The following example implements a PagingSource that loads pages of items by page number. I have been looking through some mediums and docs an Jul 30, 2020 · To achieve this with Paging 3 and without room database, we can create a mutable Flow of data list in the ViewModel that contains the items we want to manipulate. The Paging library provides 如果您的应用已在使用旧版 Paging 库,请阅读本页面,详细了解如何迁移到 Paging 3。 如果 Paging 3 是您在应用中使用的第一个 Paging 库版本,请参阅加载并显示分页数据,了解基本用法信息。 迁移到 Paging 3 的优势. Of course, we need the limit and startIndex parameters here. myEntity>` getPagingSource(); Jan 24, 2023 · Example: 1. I pre-populate my data to the Room Database with RoomDatabase. Paging 3 helps you to reduce network requests that will reduce bandwidth usages. Android Paging 3 is not loading next page. paging:paging-runtime-ktx:3. 1. Let’s first see how we can implement Paging 3 following MVVM architecture in our apps. This feature is very important for applications using infinite scrolling. I have found only one way with PagingAdapter. Note: The Paging 3. Paging 3 includes the following Jun 6, 2021 · By default, the initial load size is 3 * page size. The Paging Library helps you load and display small chunks of data at a time. Apr 24, 2022 · The Paging 3 library, a part the new set of Android Jetpack libraries, provides a robust way of paginating large sets of data in Android whether it is loaded from a room database or from a network layer. Paging 3 was designed to follow Android Architecture Component This post is about Android Jetpack Paging 3 library and how we can use it to load the large set of data from network using Retrofit in our RecyclerView efficiently with the help of AndroidPagingExp application. Loading partial data on demand reduces usage of network bandwidth and system resources. kt. com on the same. Paging 3 包含旧版库中没有的下列功能: Oct 18, 2023 · Photo by Fotis Fotopoulos on Unsplash. Jetpack Compose is new Android’s recommended way to build a native UI using power of Kotlin. With the release of Android 11 beta, Google also updated the Paging architectural components library for android. Say you have a list of names in the database and you want to display them sorted alphabetically. * class DataSource( private val size: Int = 5, private val currentDate: Date, private val limitDate: Date? Jul 19, 2021 · Paging 3 is one of the best libraries for pagination — how not if it gives you all that you need to implement paging with the lowest efforts not only, but also gets your data from different data… Sep 3, 2023 · 1Photo by Dayne Topkin on Unsplash. If Paging 3 is the first version of the Paging library that you are using in your app, see Load and display paged data for basic usage information. 0 là một bản cập nhật lớn so với các phiên bản trước của Paging Architecture Component của Android Hầu hết tất cả các ứng dụng đều hiển thị một danh sách lớn dữ liệu cho người dùng, nhưng tại một thời điểm người dùng chỉ thấy một phần nhỏ dữ liệu trong ứng dụng của bạn, vì vậy việc fetch Jul 12, 2023 · Paging lifecycle Figure 1. The load example in Kotlin loads data using retrofit with a org. Explore the Android Paging 3 Demo, where we tame large data sets for a smoother app experience. Link 1 Link 2 This sample is written in Kotlin, it represent a simple demo of recyclerView Using Paging 3. In this article, we'll implement offline caching and pagination with Paging 3 in Android. Our User Feed Application is designed to provide a seamless feed experience on a single screen. 0-rc01 is released with no outlined in the guide for Testing Kotlin coroutines on Android. refresh() method. Long, com. paging:paging-runtime:3. TopPostsActivity shows top posts via paging 2. Oct 27, 2023 · I'm currently working on an Android app, and I've encountered an issue while using Paging 3 to display data obtained from an API. It is still in the early stages. Data fetched with the Paging library is consumed in the UI as a Flow<PagingData<Value>>. Oct 5, 2024 · This is where Android’s Paging 3 library and the RemoteMediator class come into play. In most cases, in real-world applications, we are dealing with a huge… Sep 13, 2020 · //paging3 implementation "androidx. For example The interesting part about Paging lib is that the hard part is the windowed reactive DB queries, not the network fetches. The way to go about this is to use two LoadStateAdapters, one to show the initial loading and the second to show loading when more items are being loaded. This will help RemoteMediator later to know which page to load next. 0 library is currently in its early stages and Google released only its alpha version Paging 3 helps to load the collection of data from the server, local storage, or both. Look at their InfinteScrollListener class. For example you want to show a list of 150 users so for doing that you will not load all the data at once, we will do it by loading a small chunk of data Oct 11, 2021 · For example, the declaration of a PagingSource that fetched Repo items from the page based Github API would be defined as: PagingSource definition. Getting the States of the data Adding the Header and Footer view. This is how I am updating the Adapter. zhtkw zdwwmke dcz jkmymh nvbyw tyoyx hohs goqkku cwtoylk bgek
{"Title":"What is the best girl name?","Description":"Wheel of girl names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}