Modulus operator in c examples. The spec says in §5.

Modulus operator in c examples. int x = 100 + 50; Try it Yourself » .
Modulus operator in c examples They are the basic components of the C programming. Subtraction (-): Subtracts second operand from the first. As another example, 25 / 7 = 3 remainder 4, thus 25 % 7 = 4. Syntax of Modulus OperatorIf x and y are integers, then the ex Dec 30, 2024 · The remainder operator (operator%) The remainder operator (also commonly called the modulo operator or modulus operator) is an operator that returns the remainder after doing an integer division. Instead, it is returning the remainder. Because of its simple syntax, the use of this operator to obtain the modulus of a division is the most commonly used in the C language. Mar 21, 2024 · In C or C++, the modulo operator (also known as the modulus operator), denoted by %, is an arithmetic operator. Multiplication (*): Multiplies two operands. Examples of Each Arithmetic Operator Example: Basic Arithmetic Operations Nov 2, 2023 · This is the syntax for the modulo operator in C: a % b . It determines the remainder. Modulo Operator in C. Modulo in a conditional expression. In this article, we will learn about all the built-in operators in C with examples. The modulo operator (%) returns the remainder of a division operation. Dec 1, 2023 · The C language provides the “%” operator to obtain the modulus in a division. The addition operator tells the compiler to add both of the operands ‘a’ and ‘b’. 3. The modulo operation can be calculated using this equation: Mar 26, 2024 · The modulus operator, often represented by the symbol '%', is a fundamental arithmetic operator used in programming languages to find the remainder of a division operation between two numbers. Oct 11, 2024 · For example, c = a + b; Here, ‘+’ is the operator known as the addition operator, and ‘a’ and ‘b’ are operands. The modulus operator (%) computes the remainder after dividing its first operand by its second. with the help of examples. If `b` is not zero, the expression will yield the remainder of the division of `a` by `b`. . Although your requirement does not need to know or display the name of the day of week, the enum is an example of the . B % A = 0 The following table shows all the relational operators supported by C. Mar 3, 2023 · This program will output -1 since -17 divided by 4 is -4 with a remainder of -1. Points to remember regarding the '%' operator : When the dividend is greater than the divisor, it will give the remainder. It is a fundamental operation widely used in applications like determining even or odd numbers, implementing cyclic behaviour, and solving mathematical problems programmatically. When you multiply that by a large number, you are now overflowing a long just like you were overflowing an int previously. 3 Jan 10, 2025 · Examples of C Arithmetic Operators Example 1: C Program to find the area of a rectangle and triangle. When not overloaded, for the operators && , || , and , (the comma operator ), there is a sequence point after the evaluation of the first operand. Alternatively, we can use % operator to implement more complex functions. 0/5= 0 Remainder 0 i. We will learn three different ways to find the remainder in C. We will use the arithmetic operators for calculating the area and perimeter of the rectangle using the standard formula of each. May 24, 2024 · Remainder = R; In modular arithmetic, it is written as A mod B = R, read as ‘A modulo B equals R’ where ‘B’ is referred to as modulus. modulus operator with unsigned chars. The modulo operation (abbreviated “mod”, or “%” in many programming languages) is the remainder when dividing. The spec says in §5. Java calls it the "remainder operator", for example. It returns the remainder of the integer division. Jun 15, 2012 · Shift operations match directly to CPU commands. The remainder operator only Apr 18, 2010 · How can we implement the modulo operator as a function in C without using the operator? c; operators; modulo; For example if the Dividend = 5, and the Divisor = 2 Oct 20, 2016 · C++ Modulus Operator Understanding. Shell Programming with Modulus Operation. Assume variable A holds 10 and variable B holds 20 then – Operator Description Example == Checks if the values of two operands are equal or not. c -o modulus_example. You can use the same trick to calculate the module: Shift an integer far enough to the left so that only the remainder bits are left, then shift it back right so you can check the remainder value. Example. ) Yes, %(modulo) operator isn't work with floats and double. int number = 123456; int reversed = 0; while ( number > 0 ) { # The modulus here retrieves the last digit in the specified number # In the first iteration of this loop it's going to be 6, then 5, Nov 3, 2011 · c modulus operator. Finding the remainder of dividing two integers: Below is the C / C++ program Oct 4, 2019 · Big-O notation is probably the wrong way to think about the time complexity of the % operator. Syntax. 0. e. The modulo division operator produces the remainder of an integer division which is also called the modulus of the operation. % is called the modulo operation. The syntax for the modulo operator in C++ is straightforward: result = a % b; Here, `a` and `b` are two integer values. Jul 22, 2016 · In the example, 20 is the dividend, 5 is the divisor, and 4 is the quotient. In the previous example, note that the congruent modulo basically means that the difference of the two numbers is an integer multiple of the modulus 12. -14 Mod 5 is 1. In this tutorial, we will learn about the C++ Modulus Operator with examples. Consider the following program which takes a number from user and calculates the remainder of the number with divided by 3. Examples of Each Arithmetic Operator Example: Basic Arithmetic Operations Jun 22, 2010 · In C89, C90, and C++03 the standards requires only that (a/b)*b+a%b == a for the / and % operators. A bit-wise and gets rid of the sign bit, so it will always be positive (i. Modulus Assignment Operator (%=) The modulus assignment operator calculates the remainder when the variable on the left is divided by the value or variable on the right and assigns the result to the variable on the left. This means if we divide ‘A’ by ‘B’ the remainder is ‘R. Why modulus operator does not work on that code? Hot Network Questions What is the Modulus Operator in C++ Understanding the Modulus Operator. Dec 16, 2024 · In C language, operators are symbols that represent operations to be performed on one or more operands. Mar 7, 2020 · The modulus operator returns the remainder of a division of one number by another. Generally speaking, only modulo powers of base b can "easily" be done with base b representation of C language Logical OR (||) operator: Here, we are going to learn about the Logical OR (||) operator in C language with its syntax, example. e 0 Mod 5 is 0. Note that C retains the sign of the remainder when dealing with negative numbers, unlike some other Apr 23, 2017 · Start your software dev career - https://calcur. Aug 28, 2010 · One use for the modulus operation is when making a hash table. All the operators (except typeof) listed exist in C++; the column "Included in C", states whether an operator is also present in C. tech/dev-fundamentals 💯 FREE Courses (100+ hours) - https://calcur. WriteLine(5. Nov 11, 2024 · The modulo operator (%) is used to get the remainder of a division between two integers. The C and C++ standards don't specify the sign of the modulus when the first number is negative (until C++11, which does guarantee it will be negative, which is what most compilers were already doing). The below example will illustrate the exact functionality. WriteLine(-5. With regards to bitwise optimization, only modulo powers of two can "easily" be done in bitwise arithmetics. Here are some examples to demonstrate the implementation of the modulo operator in C and C++: 1. On the other hand, integer modulo also exists as a CPU command. It's only equivalent if the modulus is always positive. Understanding this syntax is crucial for utilizing the modulus operator effectively. If both operands are nonnegative then the remainder is nonnegative; if not, the sign of the remainder is implementation-defined. 15 There are following assignment operators supported by C language: Show Examples Operator Description Example = Simple assignment operator, Assigns values from right side operands to left side operand C = A + B will assign value of A + B into C += Add AND assignment operator, It adds right operand to the left operand and assign the result to Oct 23, 2010 · @Armen: The old spec is broken, but the brokenness is different from the sign issue, and it's easy to miss until you look at the new wording. Visit to know more about Modulus Operator in C and other CSE notes for the GATE Exam. Examples. Oct 31, 2021 · When the dividend is smaller than the divisor, then the dividend itself is the remainder. It is a modulus operator that is used in the arithmetic operator. Example of Modulus Operator in C . Operator precedence table. The modulo operator calculates the remainder after dividing a by b. For example, “5 mod 3 = 2” which means 2 is the remainder when you divide 5 by 3. Oct 2, 2024 · in C++ expression a % b returns remainder of division of a by b (if they are positive. For example: class Program { static void Main() { Console. Integer remainder. However, in comparison with the division operation, the modulo operation is not returning the quotient. 2m); // decimal Console. An operator is a symbol that operates on a value or a variable. It always finds the remainder of 2 numbers with respect to the numerator. int x = 100 + 50; Try it Yourself » Modulus: Returns the division remainder: x % y: The above examples show the straightforward use of the modulo operator in C++ for finding remainders. variable %= value; This above expression is equivalent to the expression: variable = variable % value; Example. C++ Jun 19, 2010 · That is, % is not necessarily the traditional mathematical definition of modulo. For example – 1. e 16 Mod 5 is 1. Jul 30, 2012 · The % operator in C is not the modulo operator but the remainder operator. Our task is to compute A raised to power (B raised to power C) modulo M. Example output when running the program: Enter the dividend (number to be divided): 17 Enter the divisor (number to divide by): 5 Dividend: 17 Divisor: 5 Remainder: 2 Each operator can be used with integer and floating-point data types, but the behavior of division and modulus differs based on the type. h>, is the best choice) and then apply % to the result, but there is no guarantee that it means anything. Converting everyday terms to math, an “even number” is one where it’s “0 mod 2” — that is, it has a remainder of 0 when divided by 2. Modulus operator in c. Edit: In C99 a negative number will be returned if the first argument is negative Mar 26, 2014 · You can't apply % to a pointer, any more than you can take the square root of a string. 0m % 2. There are multiple uses of modulus operator such as telling if a number is May 7, 2023 · C program to find remainder without using modulo operator: In this tutorial, we will learn how to find the remainder without using the modulo operator, % in C programming language. It plays a crucial role in various programming functionalities, especially when performing calculations that involve cyclic behavior Jul 14, 2022 · What is the modulus operator in C and C++? The modulus operator is a symbol used in various programming languages. The macro MOD(a,b) gives the correct modulo operation. In short, this arithmetic operator in C returns the remainder of its two operands. (A == B) is not By definition, your dividend must be equal to (quotient * divisor) + modulus. Syntax of Modulus OperatorIf x and y are integers, then the ex For example: when 2 * 3 + 2 is evaluated output is 8 but not 12 because the * operator is having more priority than + hence 2 * 3 is evaluated first followed by 6 + 2. For example:-21 mod 4 is 3 because -21 + 4 x 6 is 3. Method 1: By subtracting the divisor from the number: Jun 8, 2021 · Modulus : It is simply a noun which is the value N in the expression “x mod N”. The next example code demonstrates isLeapYear boolean function that checks if the given year is a leap or not. It divides the value of the left-side operand by the right-side operand to calculate the remainder of this division. Oct 12, 2009 · Your new example changes things a little. For the operands of integer types, the result of a % b is the value produced by a - (a / b) * b. Case in point, back in 2000 it was possible to calculate sqrt by doing several operations in plain c code (no assembly required) and beat the processor in both speed and accuracy (I think newer processors use the same trick internally now). For instance, if you divide 10 by 3, the quotient is 3 and the remainder is 1. -14/5= 3 Remainder 1 i. Which is used to calculate the remainder of two values. DayOfWeek Enum, which has zero set as Sunday. We abbreviate it as N is the modulus. Example: Test test; float x = test % 10. 0 % 2. When the dividend is smaller than the divisor, then the dividend itself is the remainder. Apr 7, 2023 · Remainder operator % The remainder operator % computes the remainder after dividing its left-hand operand by its right-hand operand. For positive values, there is no difference between Euclidean and truncating division. int myNum = 100 + 50; Try it Yourself » Modulus: Returns the division remainder It is the modulo (or modulus) operator:. 6/4 (C++03), The binary / operator yields the quotient, and the binary % operator yields the remainder from the division of the first expression by the second. it's a true May 31, 2021 · A really good example for your use case is the System. Nov 22, 2015 · The modulus operator simply determines the remainder of the corresponding division problem. Fundamentally, big-O notation measures the rate at which some quantity grows as the input gets larger and larger. 2f; Jul 23, 2014 · Is it possible to do something like this using switch statements? switch(foo) { case %bar==0: //Do stuff break; } To be more clear, the switch statement should check if foo is divided For example, + is an operator used for addition, while -is an operator used for subtraction. The argument can be of any type and the return value can also be. The first type would be the class itself. It's used to convert the value out of the hash function into an index into the array. Apr 27, 2023 · Modulo is slower than other arithmetic operators such as increment and decrement or even multiply. C++ Modulus Operator - Modulus operator returns reminder of the division operation. 66% off Learn to code solving problems and writing code with our hands-on C Programming course. For example: 12 % 5 = 2 // 12 / 5 = 2 rem 2 -15 % 4 = -3 // -15 / 4 = -3 rem -3 . So, 10 % 3 equals 1. Submitted by IncludeHelp , on April 14, 2019 Logical operators work with the test conditions and return the result based on the condition's results, these can also be used to validate multiple conditions In many high level languages such as Python, one can do this simply with my_array[index % array_size], but for some reason C's integer arithmetic (usually) rounds toward zero instead of consistently rounding down, and consequently its modulo operator returns a negative result when given a negative first argument. Aug 9, 2011 · The answer is fine regarding to the question, but the C is very fuzzy about the relation between %, modulo and remainder operators, and your statement was just a bit imprecise, so I just added a link to clarify this point. If any arithmetic operation between two char operands results in an integer beyond the range of char, the %c specifier displays blank. c shell script explain-1. 2); // double Console. Net standard where having a zero based index is universally accepted across the framework. The modulo operator is not mathematically correct, since it turns negative numbers into negative numbers. WriteLine(-5 % 2); // int Console. Jul 31, 2024 · Given four numbers A, B, C and M, where M is prime number. Gain a deep understanding of C and enhance your problem-solving abilities with practical coding challenges. Dec 6, 2024 · Modulo operator % in C is used to find the remainder of the division of one integer by another. You can, as Paul's answer mentions, convert the pointer to an integer (uintptr_t, defined in <stdint. For instance, 9 divided by 4 equals 2 but it remains 1. Aug 25, 2011 · class Test { public: float operator%(float); }; In C++ you need not to declare the operator as static, as opposed to C#. The following is the expression that is used to obtain the modulus of “a” divided by “b”: % Modulus Operator and remainder of after an integer division. Mar 13, 2024 · The Remainder Operator (%) serves as an alternative method for Modulus Operation in C, providing a distinct approach for calculations and addressing specific scenarios like Leap Year calculations. Jan 8, 2025 · 5. Example 1: Basic Use of Modulus Feb 2, 2024 · Use % Modulo Operator to Implement Leap Year Checking Function in C. Jan 17, 2014 · One use case I saw recently was when you need to reverse a number. Jun 28, 2023 · How does Modulus Operator work in C? The modulus operator works based on the value received by the end user. The code snippet: Examples. 2 % 2. For example: + is an operator to perform addition. The operator precedence table gives the detailed list of priorities for each and every operator; Operators are listed from higher priority to lower Jun 9, 2014 · How is the modulus operator defined? I know the outputs for negative numbers are implementation defined, i am asking about the working of the operator, i. For example: 5 % 2 = 1 13 % 5 = 3 Modulus is just the remainder in division before its used in a decimal quotient. Operators in C++ can be classified into 6 types: Arithmetic Operators Aug 8, 2014 · This is an example C program illustrating the behaviour of C's modulo/remainder operator (%) for negative numbers. Thus, the remainder is also always an integer number only. Example: Input : A = 2, B = 4, C = 3, M = 23Output : 643 = 64 so,2^64(mod 23) = 6 A Naive Approach is to calculate res = BC and then calculate Ares % M by modular expon In the example below, we use the + operator to add together two values: Example. Example of a noncommutative idempotent semigroup which is not self-distributive. However, the built-in % operator In this C programming example, you will learn to find the quotient and remainder when an integer is divided by another integer. For example, 3 << 2 =6, while 4>>1 = 2. The difference of 38 Feb 23, 2022 · Modulo or Remainder Operator returns the remainder of the two numbers after division. 2. Take a look at the following example − Jul 2, 2024 · Modulo Operator (%) in C/C++ with Examples Master C programming with our C Programming Course Online , which covers everything from the basics to advanced concepts like data structures. Example: The division of two numbers is often expressed as a decimal number (quotient). It returns the remainder of dividing the first operand by the second operand. What is a C Operator?An operator in C can be defined as the 6 days ago · In C or C++, the modulo operator (also known as the modulus operator), denoted by %, is an arithmetic operator. Modulus Operator gives the Remainder of the division of one number by another. If the second operand of / or % is zero the behavior is undefined; otherwise (a/b)*b + a%b is equal to a. @Carl, Just because it is a single instruction doesn't mean that it will be the fastest you can get. Sep 20, 2024 · Arithmetic Operators in C: Addition (+): Adds two operands. You're using long, but now you're using System. C++03 didn't have "if the quotient a/b is representable in the type of the result", which causes problems for INT_MIN / -1 (on two's complement implementations). See Khan Academy Article for more information. In your code, any even number entered will return a 0 as all even numbers are, by definition, divisible by 2 (meaning <any even number> % 2 == 0) Each operator can be used with integer and floating-point data types, but the behavior of division and modulus differs based on the type. If you are provided with two numbers, say A and B, A is the dividend and B is the divisor, A mod B is there a remainder of the division of A and B. Note : The question is specifically for implementation in C. Modulus % Arithmetic Operator In C. Example Of Modulo Operator In C / C++. But -21 divided by 4 with truncation towards 0 (as C's / operator) gives -5 with a remainder (C -21 % 4) of -1. Modulus (%): Returns the remainder of division of the first operand by the second. C Programming Language supports the modulus operator. tech/all-in-ones🐍 Python Course - https: Dec 6, 2016 · If we're only incrementing values by a quantity that is less than the modulo then this same trick can be used to wrap the result: val += inc; val -= modulo & ( static_cast< int32_t >( ( ( modulo - 1 ) - val ) ) >> 31 ); Alternatively, if you are decrementing by values less than the modulo then the relevant code is: Apr 21, 2018 · For example, 77 = 11×7, 32 ≡ -1 mod 11, and 8 ≡ 1 mod 7, so you could find the remainders divided by 11 and 7, which determine the remainder divided by 77. But the result of the division of say, 1/3 , can also be expressed in whole numbers as "0 with a remainder of 1". WriteLine(5 % 2); // int Console. In this tutorial, you will learn about different C operators such as arithmetic, increment, assignment, relational, logical, etc. 10 % 3 = 1. In this tutorial, we learn the syntax, and the list of allowed datatypes for modulus operator in C++, with example C++ programs. 12 mod 3 // 3 is the modulus. While the Mod command returns the remainder with the same sign as the dividend, the Remainder Operator always retains the sign of the dividend In the example below, we use the + operator to add together two values: Example int x = 100 + 50; Try it Yourself » Returns the division remainder: x % y: May 27, 2022 · The modulus operator, denoted as %, returns the remainder when one number (the dividend) is divided by another number (the divisor). The C++ modulus operator is the % symbol. For negative numbers sign of result is implementation defined). Note that C does not support operator overloading. DateTime. 16/5= 3 Remainder 1 i. For example, 8 % 3 would return 2. string and do the modulo operation algorithmically. For example, 7 / 4 = 1 remainder 3. 0); // double } } Dec 3, 2012 · There is a difference between modulus (Euclidean division) and remainder (C's % operator). if you want to do the modulo operation on large number you can check long long int(64bits) might this help you. With a remainder operator, the sign of the result is the same as the sign of the dividend (numerator) while with a modulo operator the sign of the result is the same as the divisor (denominator). If yes, then the condition becomes true. The modulus operator is not only limited to simply calculating the remainder of divisions, but we can also use that to do some more complex tasks. C++ Modulus Operator. Modulo Assignment Operator In C (%=) The modulo assignment operator (%=) is a combination of the modulo arithmetic operator and assignment operator. 1. For instance, 2 % 2 returns 0 as 2 / 2 is 1 with a remainder of 0. To easily understand the modulo operation, ideally the dividend > divisor. So that 123456 becomes 654321 for example. It is denoted by the percentage symbol (%). Ticks which on Mono (not sure about the MS platform) is returning 633909674610619350. For Example: Use of % Modulo Operator to Implement Leap Year Checking Function in C In the example below, we use the + operator to add together two values: Example. Dec 9, 2010 · Notice that -10 % 180 produces -10 in C and C++ since the % operator acts like a simple remainder, not a roll-over modulo, whereas mathematical_modulo(-10, 180) produces 170, since the underflow wraps back around to the max value of 180 in this case, and then down 10 steps again. Feb 25, 2024 · The C/C++ provides a built-in mechanism, the modulus operator ‘%’ (percentage sign), that computes the remainder of dividing the first operand by the second. still the range grater than 64 bits then in that case you need to store the data in . In your example: 5 divided by 7 gives 0 but it remains 5 (5 % 7 == 5). Modulo operator is an arithmetical operator which is denoted by %. Oct 11, 2024 · In C or C++, the modulo operator (also known as the modulus operator), denoted by %, is an arithmetic operator. In simpler words, it produces a remainder for the integer division. Or, solving for modulus: modulus = dividend - (quotient * divisor) Whenever the dividend is less than the divisor, the quotient is always zero which results in the modulus simply being equal to the dividend. Modulo and remainder operators differ with respect to negative values. In some cases, the remainder may be 0, it means the number is completely divisible by the Modulo Operator in C++. This is a hardware limitation on computers. ’ For example, ${\dfrac{14}{3}=4,remainder2}$ ⇒ 14 mod 3 = 2, which means if 14 is divided by 3, the remainder is 2. Used the modulus operator % to calculate the remainder; Added a print statement to display the remainder; Compile the updated program: gcc modulus_example. Modulus Operator in C/C++ with Tutorial, C language with programming examples for beginners and professionals covering concepts, c pointers, c structures, c union, c strings etc. The modulus operator, often referred to as the mod operator, is a mathematical operator that yields the remainder of a division operation. Jul 8, 2013 · The Modulus is the remainder of the euclidean division of one number by another. C Modulus Operator in C: A modulus operator divides the given numerator by the denominator to find a result. Most small prime numbers fall into one of the special cases previously discussed. In Computer science, Hash table uses Mod operator to store the element where A will be the values after hashing, B will be the table size and R is the number of slots or Mar 24, 2013 · In addition to being dependent upon hardware, "the speed of the modulo operator" is dependent upon the quality of the compiler building code for the hardware; A poor one might use the assembly equivalent of int foo = 54321; int bar = foo / 10000; foo -= bar * 10000; to obtain the modulo, while a good quality compiler might even optimise that code. To illustrate with OP's values: modulus of 3 and 7 = 3 - (0 May 7, 2023 · C program to find remainder without using modulo operator: In this tutorial, we will learn how to find the remainder without using the modulo operator, % in C programming language. But The total time required for individual modulo operations is tiny compared to other tasks such as disk reads or network accesses. Calculation. means in your case 1%10 is 1. Therefore, 7 % 4 = 3. The sign of the non-zero remainder is the same as the sign of the left-hand operand, as the Apr 7, 2009 · The modulus operator works only with numeric primitive types. Where a and b are integer expressions. Examples: In C, 3 % 2 r. Dec 18, 2022 · Some Methods of How to Use the Modulus Operator in C. The modulus operator, denoted by the percentage symbol (%), takes two operands and returns the remainder value after dividing the two values. , its complexity so that i can justify the better manual performance. (If the hash table size is a power of two, the modulus could be done with a bit-mask, but it's still a modulus operation. Pointers are not numbers. Division (/): Divides first operand by the second (returns quotient). Here, 9 / 4 = 2 and 9 % 4 = 1. anq hjwe pghxb pbuyiz teoz ukzja hapnt eait wburxf kxhh
{"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"}