Razor for loop json. Object[]" labels.
Razor for loop json.
Oct 15, 2014 · I have an ASP.
Razor for loop json 2) You are right, My mistake that I was amusing that whole output is one json object. Apr 26, 2012 · I'm iterating a List<T> in a razor foreach loop in my view which renders a partial. You may want to do this in the controller before sending the ViewData to the view to render. Results. Object[]. Apr 2, 2020 · Firstly the problem is that your code is confusing Razor. Company. JsonConvert. You do that by using @Html. Encode(Model. Aug 12, 2016 · I want to enumerate my json string field in MVC razor like: @foreach (var notification in Model. 5. Here's my View, 'FindATeacher. But right here, the For loop is already finished, before I click on an element. While loops typically add to, or subtract from, a variable used for counting. AccountSettings. Person. parse("@Html. If it still doesn't work, check the browser's console for troubleshooting. Change this to. Then iterate through the properties of each object with for (var p in obj) and check the value of p . With the returned JSON data we are building tag HTML markup and attaching this HTML markup to ‘District’ which is DOM control. Departments'. Provide details and share your research! But avoid …. Oct 28, 2013 · Quick rundown: I have a strongly-typed View with an Ajax form. Id}, Name: {task. Jan 5, 2015 · Create a string property and save the JSON as a string, then use JSON. The following walkthrough illustrates how to integrate Web API into a Razor Pages application to provide CRUD services. Ignore this instead gives a stackoverflow. In the partial I'm rendering a single record for which I want to have 4 in a row in my view. So, I am just adding things to appsetting. Crowder. indenting as above, camelcasing etc. Orders implements IEnumerable, you should use a for loop and numeric index for every iteration to generate different <select> element names: May 6, 2016 · I have this Model with a lot of properties public class Task { public string Key { get; set; } public string Title { get; set; } public string Description { get; set; } . keys to get an array of keys, and then you can continue like this: Object. which is right below. Id); }); Or am I missing something that prevents you from doing it this way? Nov 22, 2019 · I can't get the data to display on the razor view. FetchedNews and it should work fine. Syntax: html @foreach (var item in @collection) {<!-- HTML code to generate output for the current item Sep 3, 2014 · Ask questions, find answers and collaborate at work with Stack Overflow for Teams. In the future it could run into many MBs. Oct 2, 2012 · For sake of discussion, if I have longer logic that make a lot of Javascript function calls inside loops, I would much prefer to surround everything inside 1 script block. I'm trying to figure out how to convert my result set into a JSON array. IsFollowing (Sorry I don't know how to format the comment code properly) – Nov 2, 2016 · I'm trying to loop through some JSON data and print it to the screen. Mar 24, 2019 · Create a class for JSON response. Please don't post only code as an answer, but also provide an explanation what your code does and how it solves the problem of the question. tsn). @foreach (var variable in Request. forEach(element => { list. I am currently getting the data and filling my object in the DataAccessLayer. Department. SerializeObject(Model)); }(); To clarify, the @: forces Razor back into text mode, even though addMarker call looks a lot like C# code. Apr 8, 2020 · One solution to do that is have a class that holds the component properties and pass the properties to it <input @bind="_newTodo" /> <button @onclick="@AddTodoItem Convert the model to a javascript array first - var list = @Html. But every "name" input field id and name is "name" and every "age" input field id and name is "age" – Muhammad Ashikuzzaman Dec 16, 2010 · @foreach (string s in "1,2,3". nextTick(function(){<contents of loop>}), which will defer execution until the next tick, giving an opportunity for pending calls from other asynchronous functions to be processed. Test. Models. Jul 19, 2019 · I am trying to iterate through json files in a folder and append them all into one pandas dataframe. If you ever get a Razor error, adding { } tags is usually the first step – Mar 22, 2012 · On users. Sometimes we just have to give it a little hint regarding what should be treated as Razor/C#, and what shouldn't. net public class Department { [Key] public int DepartmentId { get Sep 4, 2018 · The foreach loop in your example generates same name attribute for <select> elements, which explains why Razor got confused (and it's also invalid HTML). MVC 3 -- inside a foreach loop, avoiding duplicate html. " if you want that, you can make an ajax request and retrieve your model as json object. I resolved the issue using the code below. Try Teams for free Explore Teams Dec 31, 2018 · Instead of using @Model from within JavaScript, turn your @Model into JSON, and pass that into your data property. This kind of loop is especially useful for counting up or counting down: Jan 4, 2024 · The foreach, for, and while loops are available in Razor page syntax in ASP. Encode(contact. Nov 29, 2016 · If response. Putting the for loop inside the List declaration creates errors everywhere, OnGetRead itself says not all code paths return a value: Jan 15, 2013 · Here is the jQuery code making JSON call to DDL named controller’s DistrictList method with a parameter (which is selected state name). Raw(Newtonsoft. Note))'))", then in the script, add console. Assumed that Model. Data. Raw(Json. net for loop syntax. You can use Newtonsoft for this: @Html. I searched around Stack Overflow and it seem that Razor syntax could go inside a script block but I don't know how that look like in my example. When i add the if i get Nov 14, 2012 · JavaScriptSerializer serializer = new JavaScriptSerializer(); string json = serializer. Try Teams for free Explore Teams I'm trying to have a razor component in a foreach loop. Encode(Model)); and then you can just call model. For example you have curly braces that are meant to be for a javascript object but Razor thinks they are part of your C# code. This app has a view with a block of javascript in the footer. Name}"); } Rather than process the json in the view, I would deserialize the json in the controller then pass the deserialized json (model) back to the view. Property syntax to say that it should directly output the contents of those properties. I can't seem to get to the content that is past the :. razor @foreach issue with lists. In the example below, the += operator adds 1 to the variable i, each time the loop runs. Feb 19, 2017 · var item = json. I think your best way forward would be to convert your data to JSON and send it to the view that way. RazorToString(this,"GetAll" ,), message = "submitted succesfully" }, JsonRequestBehavior. In ASP. 15008 of Newtonsoft. My initial thought was to loop through the json result and build a table using javascript/jquery and append it to the DOM. So in my case I used it as a JavaScript variable value: var myModelOptionsList = @Json. Please help! I figured it would be best to convert it on the view page but I'm not sure if that is the best solution Jun 17, 2013 · Thanks for contributing an answer to Stack Overflow! Please be sure to answer the question. Update 2. data)); But I don't know why I should have to use JSON. Commented May 9, 2017 at 13:24. A while loop begins with the while keyword, followed by parentheses, where you specify how long the loop continues, then a block to repeat. Note: The project used EntityFramework Core to store the model (and its Options Feb 3, 2017 · Is there a way to append single JSON objects to a JSON file while in a for loop in Python. Then make a computed property based on that. Raw(Model. 4. I am trying to iterate through a JSON object to import data, i. app_name); console. Serialize(@Model. FetchedNews> assumes an enumerable (thus an array in the response). title and link. Normally there's going to be more than one boolean being used in which case encoding the whole model makes things nice and easy to use thereafter. return Json(new { success = true, html = RazorViewToString. Nov 17, 2020 · explained with an example, how to perform looping through Model Items in ASP. Feb 9, 2022 · The data will be fetched from database using Entity Framework and then multiple Partial Views will be rendered inside For Loop using the Razor Partial tag in ASP. Follow How to prevent Razor from escaping an ampersand, such as in ? 2. Jan 21, 2013 · Looks like what you need is to output the user names to the client as JSON? Try this: var names = @Model. id); } Or like this (suggested from Eric) be careful with IE support. NET Core 3. You can convert it to a JSON object by manually using the parseJSON command or simply adding the dataType: 'json' property to your ajax call. tsn; console. I am trying to figure out within a Kendo UI template for a list view how to loop through a collection within each object to render the information on the page. razor I'm trying to add data from my model to a table with razor. Split(',')) { <text>s is equal to </text>@s<br/> } I think it is because you are parsing text outside of brackets so Razor is thinking it is code, try using the razor text tag above, this parses exactly the same as @: but (for me at least) is a bit more intuitive (it won't parse the tags) I want to loop through each item in my model in my razor view but I want to group all items together. Options); and now I have a list of JavaScript objects. 3. I'll also have number of select element generated by foreach loop. net and Razor Pages. json file to read the json and pass it to views like below, as per Microsoft's documentation. I need to be able to update the code block from the forms choices (filters). ajax(), you can set the dataType to json which tells jQuery parse the JSON for you. SerializeObject(Model, Newtonsoft. log(company);` you should see something like Object {NoteId : 1, Content : "Some text", CreatedBy: Object} (and you could expand CreatedBy to see the properties of Feb 13, 2021 · The button click event submits the value of i when the button is clicked, the loop has long completed. NET 4 we used to fix it globall Apr 9, 2009 · For anyone else stuck with this, it's probably not working because the ajax call is interpreting your returned data as text - i. Apr 7, 2011 · However, you should use a JSON serializer instead. Improve this answer. Net, instead of either the JavaScriptSerializer or DataContractJsonSerializer, to avoid the nightmare that is JSON Dates: var data = function { return @Html. And so michael's answer is perfect. Let's look at various examples and see what happens. Something like: May 27, 2017 · Also note that jQuery intelligently tries to parse the sent JSON, probably you don't need to parse the response. Use ForEach extension in Razor. Now when browser gets it is ready to be used immediately Assuming your json object from your GET request looks like the one you posted above simply do: let list: string[] = []; json. first team is array but second one is Jan 29, 2023 · Hello Everyone, I am using Visual Studio 2022 (x64) Community Version Entity Framework Core 6 C# Razor Pages (Not MVC) I am pulling data from the Google YouTube API, and want to display it on a . 1. However my May 23, 2015 · I'm looking to loop through a JSON array and display the key and value. For Loops. We currently have code that works just fine, but it is taking up to a minute to iterate 250 items in the received JSON object and this is unacceptable (not to mention baffling). log(item. NET it is throwing an exception because it is detecting a self referencing loop. Feb 4, 2015 · Razor View Server Side variable can be read to Client Side JavaScript using @ While and JavaScript client side variable can read to Razor View using @: Share Improve this answer Apr 27, 2016 · Use JSON. How to perform for each loop in Razor view? It is similar to the for loop except that it can be done only to those collection that has similar type of objects in it as it is in C#. My objects list gets filled and stored. EmailNotifications) { EmailNotifications is a json array of objects. body[0], so the second result should be there ;) – louiszawadzki Commented Nov 29, 2016 at 13:53 The while loop is a general purpose loop. But i can't quite figure it out. If I say import pandas as pd import numpy as np import json from pandas. There are a couple of things you can do to avoid this: Use a foreach loop instead of a for loop as that will give you the correct semantics Nov 14, 2017 · In the controller action he return the jSON like this. e. Here's what the JSON looks like: Using this code, I'm able to loop through the list of category names without any issues: dyn Sep 7, 2020 · Thanks for contributing an answer to Stack Overflow! Please be sure to answer the question. Within your page, you can loop through the list of articles with Nov 29, 2013 · I'm writing function for a new postgreSQL db and i'm trying to loop over a nested structure. I also saw the post Get name of key in key/value pair in JSON using jQuery?, but it also seemed like lots of code for a simple activity. GetData() function. ToList(); I'm not quite familiar with the Razor syntax, but I think you can still understand the code above. An example application. There are 25 checkboxes with 25 "System. NET MVC: Problem with loop in razor view - some code being output. Angular2 - *ngFor / loop through json object with array, this couldn't help you. stringify returns a String. Then get your jQuery to access this JSON and work with it. var json = @Html. – Sep 7, 2012 · I encountered this problem using version 4. You dont have any need of that, coz your code works fine , please check. cs and to show them in the html page. This makes it a convenient choice for displaying data from databases, APIs, or any other data sources in your web pages. Razor then picks up the @item. body is the json you provided, you should get exactly the json in my answer with response. Feb 14, 2015 · @nam means in razor view the loop is working and generating it's corresponding html elements. When using the i variable inside the for loop, the code in the event handler closes over the loop variable which is what is causing the issue. Imagine I have a table: ID GroupNo GroupName 1 1 Group1 2 1 Group2 3 1 Group3 4 2 Group1 5 2 Group2 6 3 Group56 You can loop over the Array like this: for(let i = 0; i < json. Jul 29, 2014 · I set up a @foreach loop in Razor to display a checkbox and label for each string, but when I debug, @part renders to System. It should be a simplified version of the following post, but I don't seem to have the syntax correct: jQuery 'each' loop with JSON array. @model IEnumerable<Newspage. This is code from . WORKING DEMO. json import Razor For Loop. Jun 1, 2021 · In a classic interation implementation, your loop specific code is confined to the loop - you know you can't reference List[i] outside the loop. Json. Text. Share. Fetch the JSON from Controller, feed it to the Model, and return the Model to the View. It is commonly used to display lists of data in a web page. The data will be fetched from database using Entity Framework and then multiple Partial Views will be rendered inside For Loop using the Razor Partial tag in ASP. net mvc razor vb. EmployeeStockAssignment[0]. forEach(function(obj) { console. underneath the form, I have a foreach loop that repeats a code block. cshtml. @foreach (var user in users) { <span> @user. I'm not sure how to do this. The interest of the Loop, is when i is egal to 9, I can't do nothing more. The Razor for loop is a control structure in Razor pages that allows you to iterate over a collection of data items and generate HTML output for each item. Apr 29, 2022 · Hello guys i am trying to create a table with all information i have taken from an api in . foreach loop within mvc model. Aug 11, 2013 · ASP. 1, was using only @Json. Tasks) { Console. log(obj. If Note is a property of contact and you use onclick="myFunction(JSON. CollegeInformationlist)); MVC 5/6. According to your requirement , you can create property binder like : public class CustomModelBinder : IModelBinder { public Task Cannot create a Razor loop, JavaScript is out of scope. It's worth noting that View code really isn't a good place to put JavaScript code. If I set ReferenceLoopHandling = ReferenceLoopHandling. JSON: [ { "title": "Baby (Feat. DeserializeObject<TodoItem>(json); foreach (var task in data. PotentialAttendees); </script> The problem is that in the output the JSON is encoded, and my browser doesn't like it. NET MVC MVC 简介 MVC 应用程序 MVC 文件夹 MVC 布局 MVC 控制器 MVC 视图 MVC 数据库 MVC 模型 MVC 安全 MVC HTML 帮助器 MVC 发布 MVC 参考手册 May 28, 2020 · This is a known limitation on the Razor compiler. Traverse the Model (not JSON) in your View. Oct 15, 2014 · I have an ASP. In your code i is 3 - the last version of i that stopped the for loop. Oct 7, 2020 · It using Razor pages for views and its static contents for now. J. If you are using $. TodoItem data = JsonConvert. forEach(function(key){ var item = json. parse('@Html. ServerVariables) . Commented Jun 29, 2012 at 12:15. I have already isolated the problem to the following loop; the JSON comes in lightening-fast so that is not the problem. NET. We can use them to generate pages and write HTML for each individual element in collections. Nov 7, 2014 · That should not be a problem. Sep 16, 2019 · I am trying to Loop through the Org collection to populate the treeview with the Orgs from the Database. My problem is that i want an if statement to decide what class the tagg should be and i can't get this to work. If you know how many times you want to loop, you can use a for loop. FirstName, s. json. Answers with an explanation are usually of higher quality, and are more like to attract upvotes. I then want to loop through each group. Jun 4, 2019 · I'm new to ASP. 7. e. Also while at the moment I'm restricting this to 255 bytes. Jun 22, 2011 · First iterate through the array of objects with an ordinary for loop. NET MVC 4 app. this razor component has a async method call in it's OnInitializedAsync override method. Select(s => new { s. mvc3 Razor foreach loop issues. Jun 29, 2012 · Logic is what razor is meant for! – Nicholas King. Json namespace. tsn[key]; console. Here is the project structure, Now, I am into progress of make this page's content to dynamic based on some JSON configuration. Dec 2, 2019 · You can use custom model binder . io. What is the best way to implement this in ASP. So, for example: var data = [ { id: 1, name: "bob" }, { id: 2, name: "john" }, { id: 3, name: "jake" }, ]; JSON. In Blazor components the actual values/references are crystalised and used long after the loop completes. Jan 19, 2011 · 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 Jun 18, 2019 · I am trying to convert a stored datetime object from database to Json object on the razor view page so as to manipulate it and compute time elapsed for a list of users in real time. explained with an example, how to load multiple Partial Views inside Loop using Model in ASP. g. length; i++) { let obj = json[i]; console. Nested for-loop in razor. I have a model: public class DbUserRole { public int UserRoleId { get; set; } public string UserRole { get; set; } } public class DbUserRoles { public List<DbUserRole Jun 26, 2016 · Rather than create your razor loop, serialize your array to json and print it var data = <% serialized_json_output %>. Yes, I know, that's not the problem. @foreach(var d in Model. Aug 7, 2024 · The foreach loop in C# Razor allows you to iterate over elements in a collection without having to worry about the underlying implementation details. cshtml page. Jul 30, 2021 · Your JSON returns a JSON object, not a JSON array. When I try to serialize this with JsonSerializer I get: Self referencing loop detected with type: Path 'employee. parse in your View to convert it to an object. Oct 4, 2017 · I have a database structure that has several referential loops. I tried all of the solutions offered here along with some others. BEGIN FOR i IN SELECT * FROM json_array_elements(omgjson) LOOP RAISE Feb 3, 2016 · 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 Nov 10, 2020 · Adding a new element to the list would add the element, but adding anything after the first one would set the first element to null, breaking any loops I had in my Razor syntax and crashing my Oct 25, 2013 · "I just need do get the value of i for model[i] inside js loop. Serialize(Model. Formatting. data) { jsArray = d; } I can get it to work with. Nov 23, 2010 · Ask questions, find answers and collaborate at work with Stack Overflow for Teams. cshtml', as it currently stands (after trying many different ideas): Apr 25, 2013 · here are some for loops : var json1 = a['division']['division'][1]['team'][0]; // this is for second team array, json2 = a['division']['division'][0]['team']; // this is for first team object, for (obj in json1){ return json[obj]; }; According to your json, first and second teams are not in same data type. var jsdata = @Html. 0. For example: Jul 3, 2012 · Thanks for contributing an answer to Stack Overflow! Please be sure to answer the question. Net MVC View using Razor, like so: <script type="text/javascript"> var potentialAttendees = @Json. cs Oct 17, 2014 · Try to enclose your for loop body between text tag. I have a css c May 27, 2017 · JSON. 99. Converting it to a JSON document will give you a string. Create a Model class that includes JSON class as a property, and all the other things required by your View. stringify(data) Dec 18, 2018 · I having entity class with parent-child relationship that having problem serializing to json using newtonsoft json. Object[]" labels. Net Core Razor Pages. Example: <script> var myObj = JSON. – T. You can't (usefully) loop through that. MVC Razor @foreach. cshtml page load, I want to get the list of users, build a table and display it. push(element. it's not yet a JSON object. Oct 5, 2023 · Web API controllers are available to a Razor Pages application without any additional configuration, and the default data format that they work with is JSON. – If you want to avoid blocking, which is only necessary for very large loops, then wrap the contents of your loop in a function called like this: process. log(item); }); Or even Object. Thanks for Pointing out. Jul 3, 2009 · You parse it, whereupon you don't have JSON anymore, and you loop through the resulting array. In the codes below, I'm trying to fill the District dropdownlist with values based on the State dropdownlist. LastName }). The class I've shown in my question was created using "paste json as classes" in VS using the structure from the JSON, I just need to figure how to get values from the inner list of objects within the rows array. keys(json. Oct 23, 2017 · 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 Jan 17, 2013 · foreach loop in mvc razor to iterate each element from the model and display. Actually this loop is which we are using in asp. occurrences); Alternatively, you can use Object. Here's what I've got so far: View: <script src ASP. Net MVC using Razor? I am pretty new to MVC3 and Razor. But it is actualy array of object. StudentSearchResult. Encode(Model)). <li>@variable</li> Feb 9, 2022 · In this article I will explain with an example, how to load multiple Partial Views inside Loop using Model in ASP. I'm using the RAZOR view engine. Serialize() of the System. - and m in style1[m] is 3 pointing to a none existent 4th member of style1. JsonString)"); </script> Much cleaner that way, and there really isn't any good reason to have your controller doing this since you aren't requesting the object via AJAX. NET Core Newsoft JSON. Asking for help, clarification, or responding to other answers. Index was out of range is quite correct, but quite as informative as it could be. With the while loop, we usually will need to set up an iteration variable. NET Razor Razor 简介 Razor 语法 Razor C# 变量 Razor C# 循环 Razor C# 逻辑 Razor VB 变量 Razor VB 循环 Razor VB 逻辑 ASP. WriteLine($"Id: {task. If you need to run the same statements repeatedly, you can program a loop. NET 4, MVC3, Razor, JsonFx. net MVC for displaying Enumerable objects. then iterate over your list and do what you want to do. I would prefer not store all my data in one giant JSON object and dump it all at once, as I am planning on Jul 5, 2021 · Trying the get each ForEach loop to be under the relevant columns but it is all displaying under the Name column Feb 11, 2012 · We are using C#, . DistrictList method will returns JSON data. I would like, when I click on an item of my list, i increment, and when I arrived to 9, the loop stops. I don't know dot Net syntax for this. Since converting it to JSON shows that it is an object, not an array, it is unlikely to have a length, so you'll need to use a method to loop over objects. listschools)); and then loop in a script – user3559349 Commented Apr 16, 2018 at 22:07 Sep 18, 2015 · What worked for me in . Here is an example of the json I am playing with: When I try to serialize some domain objects using ASP. AllowGet); The GetALL is the action method which he passed , which is returning the list of records. Eventually, I'm going to want to return any checked strings back to the model, but right now I just want to know how I can get Razor to render the actual . Serialize((object)yourDictionary); This will serialize your dictionary to json. The. Here is a sample of the data: { … Jun 14, 2017 · If you want to loop through data, then you need to loop through data. settings. asp. id); }); I'm trying to write an object as JSON to my Asp. eg: var model = @Html. 5. @model Newspage. Indented)) This gives you more control of the json formatting i. entries to get key/value pairs: @AbhijeetNagre - Razor is usually quite good at understanding where code starts and ends, but it's not perfect.
vbqrgpw kcpy drdps vyxdmo khflb xxqf xxybpxv zpjem iqxp skhq
{"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"}