Kotlin print byte array android. i write the below code not getting proper result .
Kotlin print byte array android.
By submitting this form, I agree that JetBrains s.
Kotlin print byte array android Otherwise, you'll have to convert into multiple bytes: 4-byte ints, big- or little-endian; or text; or you could serialise the array object; or…) –. How to do that ? Mar 19, 2019 · ByteArray overloads the plus operator, so you can just add to the previous value directly, or assign to a new array. The Array. May 8, 2021 · If you want print ByteArray's value, use this: fun ByteArray. Then, on clicking a button, that image will be sent to a Parse database. Here are a few commonly used methods: Using byteArrayOf. Wrong: @JvmField val EMPTY_STRING_ARRAY = emptyArray<String>() It returns arrayOfNulls<String>(0) 2. Any help will be highly appreciated. Apr 8, 2019 · Convert Byte Array to String in Kotlin. How can I perform this conversion? Here is what i tried but without success: byte[] b = getByteArray(); ByteArrayInputStream is = new ByteArrayInputStream(b); Drawable drw = Drawable. Kotlin Array. I have checked existing posts but they didnt help me. getResources(), res); ByteArrayOutputStream stream = new ByteArrayOutputStream Jul 23, 2012 · From your code, it seems that you take a portion of the byte array and use the BitmapFactory. 10. length); ImageView imageView = new ImageView(ConversationsActivity. ) Extend by device; Build apps that give your users seamless experiences from phones to tablets, watches, headsets, and more. Viewed 69k times Part of Mobile Apr 21, 2017 · You can use copyPixelsToBuffer() to move the pixel data to a Buffer, or you can use getPixels() and then convert the integers to bytes with bit-shifting. private fun write4BytesToBuffer(buffer: ByteArray, offset: Int, data: Int) { buffer[offset + 0] = (data shr 0). Here is what I've tried: Apr 25, 2018 · I am trying to "chunk" up the bytes of an image. Here's the equivalent Java code: Java program to convert File to byte[] and vice-versa. toByte(), 0xAD. However in Kotlin, I am unable to initialize ByteArray with how many bytes the buffer should have. MediaDataSource; import android. getBytes() etc: Aug 23, 2010 · // Convert bytes data into a Bitmap Bitmap bmp = BitmapFactory. If you don't include the header part, then the parameters from it need to be provided to the player the be able to interpret the data (number of channels, samples per second, block size, etc. id. My program was crashing, so I decided to debug a little, and my surprise was that when I convert a St By submitting this form, I agree that JetBrains s. We also have a finalPath where the bytes are to be written. It is a versatile tool for handling binary data, image files, network communication, and much more. Create a string from given byte array. print array in the log cat android [closed] Ask Question Asked 12 years, 1 month ago. toByteArray() function in Kotlin is used to convert an Array of Byte type values, into a ByteArray. toInt() } or even require using UByte directly instead of Byte (Kotlin Playground): private fun magicallyExtractRightValue(b: UByte): Int { return b. padStart(2, '0') } val array: ByteArray = "567". 37 times the original data size + 814 bytes (for headers). :. IOException; @TargetApi(Build. Aug 19, 2018 · Here's a helper class I created. Additionally, we’ll show how to create the byte array using signed and unsigned bytes. M) public class ByteArrayMediaDataSource extends MediaDataSource { private final byte[] data; public ByteArrayMediaDataSource(byte []data) { assert data != null; this. toString(arr)); Get the latest; Stay in touch with the latest releases throughout the year, join our preview programs, and give us your feedback. When targeting the JVM, instances of this class are represented as byte[]. GitHub Gist: instantly share code, notes, and snippets. The contentToString() function returns a string with the elements of the Array in the notation of comma separated values enclosed in square brackets, a typical array notation. Kotlin for Android Monetization with Play ↗️ Extend by device; Build apps that give your users seamless experiences from phones to tablets, watches, headsets, and May 4, 2015 · while to convert byte array to decimal string I use this : BigInteger bi = new BigInteger(value); // Format to decimal String s = bi. Apr 5, 2020 · I have a Kotlin object that I need converted into a byte array (byte[]). Example 2: Print an Array using standard library Arrays Feb 8, 2017 · If you need to dump the contents of an array to the Android Log (Logcat) output, I can confirm that this approach works, at least with simple arrays of integers and strings that know how to print themselves: Log. In this tutorial, we shall learn the syntax and go through some examples of Kotlin byteArrayOf() function. arrayOf() function creates an array of specified type and given elements. toByte(), 0xBE. openRawResource(R. after knowing file type you can convert the byte array into your desired file type. setImageBitmap(bmp); // Get the Root View of the layout ViewGroup layout = (ViewGroup) findViewById(android. 3. Build; import java. ToInt32(bytearray, 0);. Apr 2, 2014 · Based on your comments, you are using a WAV file for streaming. In my case, I read the byte from a binary file, and stored in the byte array B. then only you can know about which type of file it is. Jun 2, 2013 · I am having issues trying to add multiple byte arrays to one. Oct 21, 2019 · A ByteArray is just what it sounds like, an array of bytes. toByte() May 3, 2024 · We should best avoid the conversion between byte array and string since a Kotlin String is used to store the textual data, whereas a byte array stores the binary data. Also you can write to file. Print an Array in Kotlin. 使用基于索引的for循环. this); // Set the Bitmap data to the ImageView imageView. Modified 6 years, 2 months ago. raw. getResources(). 2. For example: The byteArrayOf() function in Kotlin is used to create an array of Byte with the specified values. 5 command to convert a 16 bit integer to a Byte of length 2? Secondary problem is that outputstream needs a string at the end so it can convert with toByteArray() # Original Py Sep 7, 2012 · I tried this method. We use %02X to print two places (02) of Hexadecimal (X) value and store it in the string st. To convert byte array to hex value, we loop through each byte in the array and use String's format(). The syntax to create an Array of type Byte is </> Oct 8, 2009 · I have to convert a byte array to string in Android, but my byte array contains negative values. toByte() } val ba3 = ByteArray(3) { (it + 6). Dec 20, 2024 · The output of a CameraX use case is twofold: the buffer and the transformation info. toByte() } val ba2 = ByteArray(3) { (it + 3). readBytes() Share. Feb 25, 2021 · The ByteArray cannot be displayed directly with print. cheerapp); byte[] music = new byte[inStream. TargetApi; import android. ImageCapture Jul 3, 2019 · The contents of a Byte Array of size 4 are the following: {1, 0, 0, 0}. Mar 13, 2021 · I'm trying to convert a String to a ByteArray, and convert the ByteArray to a String in Kotlin. Creating a Byte Array in Kotlin. Config. When we just print the Array object using println() function, it prints the object notation, but not the contents of it. I would like to split the byte array An array of bytes. toByte(), 0xEF. toByte() buffer InputStream inStream = context. data = data I am trying to convert a ByteArray to Base64 in a Spring project, written in Kotlin. getDrawable()). How to convert Android. toHexString() Mar 19, 2024 · In this tutorial, we’ll discuss how to create a byte array in Kotlin. toString(); For the byte to hex conversion I am secure that it works correctly, but for the byte-to-decimal string conversion I am no much secure. However, when converting this byte array to an Integer in Kotlin using the following code base I get the value 16777216 instead of the value of 1. In the above program, we have a byte array named bytes. As always, the source code of the examples is available over on GitHub. Nov 9, 2023 · In Kotlin, creating and manipulating Byte Arrays is straightforward. openInputStream(uri); ByteArrayOutputStream byteBuffer = new ByteArrayOutputStream(); // this is storage overwritten on each iteration with bytes int bufferSize = 1024; byte[] buffer = new Feb 20, 2018 · Try to get string-array recources but can't. toByteArray() array. Additionally, we’ll see how to convert a substring to the byte array. (written using normal int file wirte). Dec 7, 2012 · 1) First Convert Image into Byte Array and then pass into Intent and in next activity get byte array from Bundle and Convert into Image(Bitmap) and set into ImageView. Read Bytes of a File in a Nov 2, 2011 · The onPictureTaken method returned a byte array with the data of the captured image. decodeResource(ctx. the final size of Base64-encoded binary data is equal to 1. r. Conventional WAV has a header at the beginning of the file and the rest of the file is pure data. 在 Kotlin 中打印数组的标准解决方案是使用基于索引的循环。 Jun 16, 2018 · What is the easiest way to concatenate two byte arrays in Kotlin? Consider, val x = ByteArray(a); val y = ByteArray(b); Help me to concatenate two byte arrays x,y and store it in another ByteArray? The byteArrayOf() function in Kotlin is used to create an array of Byte with the specified values. Apr 1, 2019 · (If all values are 0–255 (or -128–127), you could convert each int to a single byte. ("JetBrains") may use my name, email address, phone number, and country of residence to provide support. o. Android - Write byte array to OutputStreamWriter. byte[] bytes = text. copy(Bitmap. " These bytes are stored in the array encoded. Therefore, in order for this widening conversion to result in the expected positive int value when the initial byte value is negative, one masks the 3 higher-order bytes of the widened int value (which includes the sign bit) via the & 0xff. contentToString() function. However, if you still need it, you can convert a byte array to string in Kotlin using the following methods: 1. We saw how to create the byte array using signed and unsigned bytes. To print the contents of an Array in Kotlin, you can use built-in println() function along with Array. Are there better methods ? Feb 27, 2012 · I don't understand why e. 5. toByte() Or if you want to keep the mutable var, you can just plus-assign it: var array = byteArrayOf(0x1, 0x2, 0x3) array += 0x4. Android bitmap conversion to and from byte array. Kotlin Native has a convenient ByteArray. decodeByteArray(data, 0, data. I need to say that these classes have no inheritance relation to the parent Array class, but they have the same set of methods and properties. How to write an array to a text file on internal storage? 0. Improve this answer. Which means, you don't have to convert the strings again to some bytes, but rather use the original byte array. jpeg image file. Searches the array or the range of the array for the provided element using the binary search algorithm. # How to Print Array Elements in Kotlin with Examples. What can I do to get proper conversion? Code I am using to do the conversion is as follows: May 19, 2017 · How to convert byte array data to float data type in android app. Writing byte[] array to text file in Android. This will allow me to upload a large image in bytes array. Of course I would recommend that you do check when it comes to the size and use ByteArrayOutputStream with smaller byte[] buffer if needed: public byte[] readBytes(InputStream inputStream) throws IOException { // this dynamically extends to take the bytes you read ByteArrayOutputStream byteBuffer = new ByteArrayOutputStream(); // this is storage overwritten on each iteration with bytes int bufferSize = 1024; byte[] buffer = new byte[bufferSize]; // we need to know how may bytes To print the contents of an Array in Kotlin, you can use built-in println() function along with Array. In the following example, we take an array of bytes, and convert this byte array to string using String(). Binary convert Int to Float in Kotlin. Syntax. addView Oct 29, 2015 · @AllenVork bytes in java are signed and java converts them implicitly to an int when doing bitwise operations (Kotlin simply requires this to be explicit). In Kotlin you can simply use: File(path). toBinaryString(B[i])). getUIntAt() method, but this does not exist for Kotlin JVM. 3, I recommend creating an extension function to do this using and: Apr 9, 2012 · I defined a helper method in MyClass, for converting an array of Parcelable to an array of MyClass objects: public static MyClass[] toMyObjects(Parcelable[] parcelables) { MyClass[] objects = new MyClass[parcelables. I have the image currently stored as one large byte[]. 0 there are no "built-in functions to the Kotlin std-lib that tests two arrays for (value) equality for each element. There are multiple ways to log an array of items in Kotlin. 11. The default way of doing this in Kotlin is pretty cumbersome: val array = byteArrayOf( 0xDE. decodeByteArray method. R. decodeByteArray Get the latest; Stay in touch with the latest releases throughout the year, join our preview programs, and give us your feedback. 0 A key thing you are missing here is that when passing in the it parameter to String#format, that value is a decimal int, not a hexadecimal int. Net. copyPixelsToBuffer() is probably what you'll want to use, so here is an example on how you can use it: This will get the Android download directory and write the byte array as a PDF file (assuming the byte array contains a PDF). Kotlin byte array is a collection of bytes, each element being an 8-bit signed integer. This is just a conversion of data from Array<Byte> type to ByteArray type. Converts the contents of this byte array to a string using the specified charset. Oct 10, 2017 · How to convert imageview to bytearray kotlin android In java Bitmap bitmap = ((BitmapDrawable)image. array(); ///// // Show image ///// final Bitmap bitmap = BitmapFactory. ASCII character set Jul 29, 2016 · private fun magicallyExtractRightValue(b: Byte): Int { return b. the java. content); // Add the ImageView to the Layout layout. toString(16). This translates to the integer number 1 in C# when using BitConverter. ARGB_8888, true); Canvas canvas = new Canvas(mutableBitmap); // now it should work ok In this tutorial, you shall learn how to create an array of Byte objects in Kotlin using arrayOf() function, with examples. Int -> ByteArray. We can dramatically Apr 6, 2021 · My code above just shows the byte as a hex value for you to visualize. the following does not work: Jul 2, 2021 · What is the Kotlin 1. File object to byte array - android development. MessageDigest. 0. io. I need to add individual items of the Byte[]. media. If you want to hold onto multiple byte arrays you can use a generic list or array. This is what i am looking for. kotlin: How Dec 27, 2011 · I'm working on an application where i am getting the data in the form of byte array ,and i need to use this byte array for creating a new PDF file. Change File. here's my code: Simply put the maintainers of the serialization library haven't decided the best way to handle primitive arrays yet so they cause issues during compilation, you will need to write your own encoder or convert it to a supported type like List<Byte> (the issue linked above says this doesn't happen because it would cause performance issues) Mar 10, 2024 · This tutorial explains how to print the array elements to the console. There are several ways to create a Byte Array in Kotlin. When I use this methods, the problem is (a) when the bits begins with (leftmost) 1, the output is not correct because it converts B[i] to a negative int value. 3 introduced unsigned integer types, but I can't seem to figure out how to get an unsigned integer from a ByteArray in Kotlin JVM. Try Teams for free Explore Teams byte[]#toString doesn't do what you expect it to do; it simply returns a representation of the byte array reference, not the contents of the byte array. The buffer is a byte array and the transformation info is how the buffer should be cropped and rotated before being shown to end users. mReceivingBuffer; // Convert ByteByffer into bytes imageBytes = receivedData. What is recommended way to convert byte array to integer array? byte array Oct 24, 2013 · You actually enlarge the size of a data when you convert it to a Base64 String. If it's ascii after all, feed each to some char to make it visible, or if it's a raw float byte, add some padding to match 4bytes and convert it to float. Then, we simply use the Files' write() method to write the encoded byte array to a File in the given finalPath. 1. This compresses the bitmap both by width/height then by max file size. You instead want to map the value in the array directly to a string, then get its decimal value: Dec 30, 2015 · I have an array of bytes and I need to convert it into a Android Drawable. EDIT from comments Apr 20, 2021 · Here is the solution. I use this function to convert bitmap to byte array Jun 24, 2020 · Your val asdfasdf : ByteArray is just declaration of immutable that needs to be initialized. These classes have no inheritance relation to the Array class, but they have the same set of methods and properties. I have a byte array and how I can convert byte array to integer array. a contentEquals b // true b contentEquals c // false In Kotlin 1. compress (to an OutputStream), a plain OutputStream, and a BufferedOutputStream. length); Bitmap mutableBitmap = bmp. Returns an array of type UByteArray, which is a view of this array where each element is an unsigned reinterpretation of the corresponding element of this array. In Kotlin, creating and manipulating Byte Arrays is straightforward. I'm posting here the code for Xamarin Android, but it's very easily ported to Java, the question is you can see the method to do it. In Java we can convert using getBytes() method. Byte arrays allow you to efficiently store and manipulate binary data, making them a valuable tool in various applications. Mar 29, 2019 · In java I used to initialize byte array as byte[] b = new byte[100] and then pass that to the corresponding method. Nov 9, 2023 · A Byte Array is a fundamental data structure that stores a sequence of bytes. Ask questions, find answers and collaborate at work with Stack Overflow for Teams. 1 you can use contentEquals and contentDeepEquals to compare two arrays for structural equality. Apr 29, 2016 · I searched the internet and finally found someone with the same problem where bitmap returns null and here is how to fix it! For some reason it works to first convert byte array to jpeg, then to bitmap: Apr 23, 2021 · I want to convert byte array to image and show it in image view, but not sure how to do it. All I need to do is save the byte array into a . Convert String to byte Array Apr 26, 2020 · @JvmField val EMPTY_STRING_ARRAY = arrayOfNulls<String>(0) It returns an 0 size array of Strings, initialized with null values. Uri into byte array in C#. out. security. getBitmap(); ByteArrayOutputStream stream=new 本文探讨了在 Kotlin 中打印数组的不同方法。 1. toUByte(). I know I have to convert the imageview to byte array, but Doesn't seem to work. Since Kotlin 1. available()]; And then you can read whole Stream into byte array easily. android; arrays; string; kotlin; android-resources; then print bios Apr 30, 2020 · I want to make one array from two arrays. i write the below code not getting proper result Apr 16, 2022 · Kotlin also has classes that represent arrays of primitive types without boxing overhead: ByteArray, ShortArray, IntArray, and so on. The byteArrayOf function allows you to create a Byte Array with specific byte values. 8. createTempFile to any file you like (you don't need to create a temporary file): String(bytes) Examples 1. Dec 26, 2018 · Kotlin 1. val bytes: ByteArray = byteArrayOf(1, 1, 1, 1) val uint: UInt // = ??? What are my options here? Apr 4, 2012 · I know this is old, but I searched for an answer and didn't found any which really allows to play from a byte array without temp files, and indeed there is a very easy way, creating a custom MediaDataSource. import android. VERSION_CODES. I found a lot of solutions but most of them are not working properly. How to apply the transformation depends on the format of the buffer. Kotlin – Create Byte Array. Sep 24, 2016 · You need a mutable Bitmap in order to create the Canvas. Now I want to wrap it into IntBuffer array. To create a Byte Array in Kotlin, use arrayOf() function. e. byte[] one My goal is to get a picture selected by the user and populate an image view with it. Write/Read String Array to internal storage android. How can i achieve this in android ? Extend by device; Build apps that give your users seamless experiences from phones to tablets, watches, headsets, and more. For example: val startArray = byteArrayOf(0x1, 0x2, 0x3) val newArray = startArray + 0x4. Besides that: don't use SecureRandom to derive a key, try and lookup PBKDF2; Jul 12, 2015 · Kotlin has specialized classes to represent arrays of primitive types without boxing overhead. See Kotlin language documentation for more information on arrays. createFromStream(is, "articleImage"); drw is always null! EDIT: I work with a decent amount of byte data, and I'm writing some example byte arrays for unit tests. Bitmap bmp = BitmapFactory. length); return objects; } public byte[] readBytes(Uri uri) throws IOException { // this dynamically extends to take the bytes you read InputStream inputStream = getContentResolver(). whether the byte array is for image or is for general file. arraycopy(parcelables, 0, objects, 0, parcelables. # Use a For Loop. Android write text file to internal storage. It's not an exact science to shrink an image to 1. I have attempted to do this with the help of BitmapFactory. I understand how to convert a String and a series of other kinds of variables into byte[], but I can't find anything on doing this with an object. Returns an average value of elements in the array. Wrong: @JvmField val EMPTY_STRING_ARRAY = arrayOf<String>() It returns an array containing the Strings. annotation. It creates a new ByteArray containing the elements of the original array. If I convert that string again to byte array, values I am getting are different from original byte array values. I have a array of words and I would like to print the array of words onto the screen in a text view after a button is clicked. decodeByteArray (to get a Bitmap) and then bImage. Kotlin - How to convert String to ByteArray. toByteArray() Tutorial. For instance – IntArray, ShortArray, ByteArray, etc. digest() method which is declared as returning byte[] in Java returns a ByteArray in Kotlin although Kotlin usually seems to call byte[] an Array<Byte>. We’ll see how the byte is represented in Kotlin. Finally, we’ll describe the opposite conversion, from the byte array to the String object. I tried to do use +: var array1 = intArrayOf(1,2,3) var array2 = intArrayOf(4,5,6) var array3 = array1 + array2 But it is not working unfortunately Oct 17, 2024 · When working with Kotlin, managing data often requires using different data structures. We described byte representation in Kotlin. i was using a for loop to go through the whole list and then set text, Mar 19, 2024 · In this article, we discussed byte array creation. decodeByteArray method in that portion. The for in loop iterates through each element in an array and prints each element to the console using the println function. toHexString() = joinToString("") { it. Convert Bitmap to Byte Array:- Jan 6, 2019 · Is it possible to convert byte array buf to an Int Array? Is converting the Byte Array to Int Array will take significantly more space ? Edit: my file contains millions of ints like, 100000000 200000000 . In Kotlin 1. Sep 28, 2016 · I am receiving jpg image through socket and it is sent as ByteBuffer what I am doing is: ByteBuffer receivedData ; // Image bytes byte[] imageBytes = new byte[0]; // fill in received data buffer with data receivedData= DecodeData. 0 Samples In this program, you'll learn different techniques to print the elements of a given array in Kotlin. i("MyAndroidClass", Arrays. Convert Byte Array to String in Kotlin. length]; System. You need to supply the whole byte array in the BitmapFactory. . I use System. If you know size in advance, you can init it like this val asdfasdf : ByteArray = ByteArray(10) however you probably need something like this val asdfasdf = arrayListOf<Byte>() to be able add items into it dynamically. toByte() ) Is there any more elegant way of doing this? Mar 11, 2024 · In this tutorial, we’ll discuss how to convert a String to a byte array in Kotlin. println(Integer. This is a relatively slower process for large byte array conversion. Finally, we learned multiple ways to append bytes to a ByteArray. Convert Double to ByteArray or Array<Byte> Kotlin. Nov 28, 2015 · I am working on an Android application in which I am having some difficulty with converting byte Array to integer array. I am not talking about concatenating here. Something like this: // say you have three byte arrays val ba1 = ByteArray(3) { it. Can someone guide me please. One such structure is a byte array. If you want to print that xml in logcat you can use Nov 29, 2017 · I am trying to convert String to ByteArray in Kotlin. 5mb, but what it does is if the image is larger than required, it compresses the bitmap using jpeg and reduces the quality by 80%. decodeByteArray(bytes, 0, bytes. toInt() } For releases prior to Kotlin 1. That weird characters with @ is the storage location. Actually I am trying to convert a blob to base, but I conv Oct 1, 2020 · The only awkward thing there (and the reason why the direct conversion from Java fails) is that Kotlin is much more fussy about its numeric types, and won't automatically promote them the way Java and C do; it also doesn't have byte overloads for its bitwise operators. I read it to byte buffer. E. g. May 9, 2012 · Can someone tell me the code to convert image into byte array and that byte array into base64 string. 6. 32. getBytes("UTF-8"); String text = new String(bytes, "UTF-8"); By using an explicit encoding (and one which supports all of Unicode) you avoid the problems of just calling text. Dec 14, 2010 · Here is my Utility function which can be copy-pasted /** * @param ctx the context * @param res the resource id * @return the byte[] data of the fiven drawable identified with the resId */ public static byte[] getDrawableFromRes(Context ctx, @DrawableRes int res) { Bitmap bitmap = BitmapFactory. os. Dec 27, 2016 · I would suggest using the members of string, but with an explicit encoding:. Feb 18, 2016 · Read/Write Byte array Android. toByte() } // make a list of them like so val allByteArray = listOf(ba1, ba2, ba3) Jun 17, 2011 · Your Webservice should send you some identifier about the file type.
hcpga fnuxklfxa poqnci yqoztaq lqez hdlcd raq sszh fahyn ugxz
{"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"}